+ 4
How to run python in web from one computer to another so i can control my robo which i made{raspberry pi modelb}
3 ответов
+ 3
maybe you could use a python web framework like django, flask or pyramid and run a web server on the pi. you will also need to make a page with the controls you want
+ 4
a web interface may be too slow in some cases (for example if you want real time control of a robot).
in such cases you can have a look at UDP sockets
https://wiki.python.org/moin/UdpCommunication
or TCP sockets
https://wiki.python.org/moin/TcpCommunication
0
Thank u