Skip to content Skip to sidebar Skip to footer

How To Use Windows As Raspberry Pi And Connect The Windows With Another Raspberry Pi

I'm using Python 3,ı want to send input from first raspi and change the output from second raspi.For example ı have a button,when ı press the button,ı want one message to be se

Solution 1:

You can't "use windows as a raspberry pi".

What your boss probably meant was to run the same code on your own computer and have the Pi communicate with it...

You would need to look into using the socket module or a library like SocketIO or ZMQ, where your Windows machine would "listen" for incoming requests on some port, and the raspberry pi would have to connect explicitly to that port on the remote machine

If by "screen" you mean a web browser, then you would just use Javascript to update the display, and the backing API server (of any language) would store your change

Post a Comment for "How To Use Windows As Raspberry Pi And Connect The Windows With Another Raspberry Pi"