16

I have seen a lot of projects which claim to control the GPIO pins, but I want something a bit different, for example, to be able to blink an LED.

Is there a system out there where, via a web interface, I can click and execute a python script, for example "blink.py" on my raspberry.

Ghanima
  • 15,855
  • 15
  • 61
  • 119
J.Zil
  • 271
  • 1
  • 2
  • 4

3 Answers3

12

You could make this happen in any number of ways using CGI or other server side script. One problem will be permissions to accessing GPIO pins. There doesn't seem to be a clean solution. Currently it might be easiest to chown the gpio files to the user that runs the web server, call a (suid) program that can access the pins or have a separate daemon with access to the pins that you can send messages to (signal, pipe/socket, other ipc...).

For "executing a python script via a web interface", you might want to look at web.py. It's a very neat little module that lets you write a single file standalone "web service" that could do anything. Very handy for this kind of thing IME. Requires effectively no configuration or special software (apart from common python install and web.py itself). Just write handlers for urls in python, optionally with html templates and run. Point a client (browser, other script, wget..) at the right port and it just works. :)

Edit: A new project spotted, serpint seems to allow wiggling gpio from a socket or possibly fake char device interface.

XTL
  • 1,389
  • 9
  • 22
  • 4
    flask seems similar to web.py. There is also Django which seems to have more features - probably overkill for this project. – Frepa Nov 06 '12 at 17:17
  • erm, for GPIO access just add the user to the gpio group. Or start the server as root, which most people do for port 80 anyway. Flask examples can call scripts or use time to add sleep between toggles. The main feature is {{ }} in the templates which I suspect the OP did not need. – mckenzm Jun 26 '19 at 05:30
  • Thanks for the update. For the "erm", though, this answer is from 2012 when GPIOs were notoriously root only. I see there's a gpio group now, which is fantastic progress and a more correct way of accessing hardware. – XTL Jul 16 '19 at 10:34
2

If you are just starting with webdevelopment, have a look at Bottle. Bottle is simpler than flask in the sense that it is a complete web-framework within a single file. In contrast, Flask aims to reuse sound code from different libraries and might therefore be more solid, but also more complex.

Here is the Hello World with Bottle:

from bottle import route, run, template

@route('/hello/:name')
def index(name='World'):
    return template('<b>Hello {{name}}</b>!', name=name)

run(host='localhost', port=8080)

Run it with:

python HelloBottle.py

And open in a browser: http://localhost:8080/hello/world


To make your website available from other computers, set host to 0.0.0.0 in the run method. The last line of the above Hello World should then read:

run(host='0.0.0.0', port=8080)

You should now be able to access your website via the Pi's IP address, like this: http://192.168.0.123:8080/hello/world

See the bottle documentation on deployment for further details.

Bengt
  • 2,427
  • 3
  • 21
  • 26
0

Here is a tutorial how this can be achieved: https://roderickvella.wordpress.com/2017/01/04/control-a-separate-running-script-from-a-web-server-python-rpi/

joe
  • 1
  • 1
    Kindly summarize the tutorial in your answer, in case the link disappears someday or the contrent changes. – tlhIngan Jan 07 '17 at 23:49
  • We're trying a new policy with regard to informationless link-only answers here. If this post is not edited to contain information that can stand as an answer, however minimal, in 48 hours it will be converted to Community Wiki to simplify having it corrected by the community. – Steve Robillard Jan 08 '17 at 00:21