Page 1 of 1

How can I build a Pi network?

Posted: Sun Sep 25, 2016 1:59 pm
by Alphabet
Hello,

I'm looking for a little bit of advice, networking isn't my strong point but here's a basic idea of what I'm trying to achieve.

Assume the following is a floor plan:
Image
http://i.imgur.com/nKLZEGl.png

I want to have a 'Controller Pi' and then the other nodes will only be accessible via the scope of commands executed by the Controller Pi.

So, effectively the Nodes will only be accessible to the Controller Pi and I would connect the Controller Pi allowing me to then be able to execute commands on the other Nodes.

Code: Select all

Connect to 'Controller Pi' -> Execute blink.py as node-1
Node 1 blinks an LED.

Ideally this would also be wireless, but only via a local network not necessarily internet connected (if possible).

Thanks for any advice! :)

Re: How can I build a Pi network?

Posted: Sun Sep 25, 2016 3:22 pm
by topguy
There are SO many different ways of implementing what you ask.
- I can see it made with just a few shell scripts using ssh to remotely execute the commands on the nodes.
- Or you can use MQTT with node-red and control everything from a web-browser.
- Or use Python,,, or C++ or... or..

So what do you know ?