4

I'm looking for alternatives to WebIOPi. I need to be able to control PI's GPIO through a UI displayed in the browser (with a Customizable UI ofcourse)

Any suggestions?

TIA.

goldilocks
  • 60,325
  • 17
  • 117
  • 234
Krish
  • 237
  • 1
  • 3
  • 8

3 Answers3

2

Try BerryIO. It's an outstanding piece of software.

http://frozenmist.co.uk/downloads/berryio/

recantha
  • 4,489
  • 21
  • 26
1

Try WebGPIO at Github and still active in this 2018 :

https://github.com/ThisIsQasim/WebGPIO

The WebGPIO is Flask based. So you need to have Flask installed. Also install the pyyaml for the yaml framework to run WebGPIO.

pip install flask pyyaml

Beside Flask, you can als try to use Bottle. Both Flask and Bottle can be used to run Python script via web browser (HTML).

Sidhi Ciang
  • 147
  • 1
  • 2
  • 12
0

WebIOPi provides a REST interface for GPIO control. You can write any UI you want on top of that.

https://code.google.com/p/webiopi/wiki/RESTAPI

Greg
  • 134
  • 4