1

I want to control my Raspberry Pi GPIO pins over internet, but as I searched for answers I found Webiopi. I don't like Webiopi, so I am searching for any other way to control the pins with Python. Thank you!

M.Simel
  • 23
  • 1
  • 4

2 Answers2

3

pigpio has a Python module which can control the GPIO of a networked Pi from a Windows, Mac, or Linux PC.

joan
  • 71,852
  • 5
  • 76
  • 108
2

The recent GPIO Zero release (1.4) includes several new chapters on remote GPIO:

I should add that this is achieved via Joan's excellent pigpio package, mentioned in the other answer (GPIO Zero is just configured to use pigpio as its pin driver instead of the current default of RPi.GPIO).

Dave Jones
  • 3,988
  • 16
  • 22