1

I am very inexperienced with Python. I have two Raspberry Pi computers and want to use them in a robot design. I want a program that creates a WiFi network and broadcasts variables taken from the GPIO pins on that WiFi network. I want the other one to read those broadcast variables and output them to the GPIO pins. This would basically be a TX/RX program that uses WiFi. Bluetooth would also be an option as both of the PIs in the design are going to be Bluetooth ready.

asked Sep 9, 2017 at 18:47
3

1 Answer 1

1

pidpgiod is a utility which launches the pigpio library as a daemon.

Once launched the pigpio library runs in the background accepting commands from the pipe and socket interfaces.

In other words it allows control of the GPIO on multiple networked Pis by running the pigpio daemon on each of them. Utilizing sockets (Layer 4: Transport Layer) that should be rather independent of the underlying network architecture, be that ethernet or Bluetooth.

answered Sep 10, 2017 at 10:09

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.