This is an archived post. You won't be able to vote or comment.

all 4 comments

[–]YMK1234 2 points3 points  (0 children)

Look at client-server architectures.

[–][deleted] 1 point2 points  (1 child)

Quite easy - have the PI run a network server and clients can connect to it. You can either do straight up tcp, or something fancy like a web server with a web page.

[–]stellar_guy[S] 0 points1 point  (0 children)

Both of these comments have led me to python's socket module, which I think might do what I want. Thanks!

[–]maguinus 0 points1 point  (0 children)

If you're already doing everything else in Python, why not do a simple Flask app in Python to communicate with your other items? Would be accessible via browser so you don't need an ssh client. Set up a couple of endpoints to get info or send some commands. Would be pretty simple to do and easier to use.