Its written in gambas
https://github.com/CWRoos/GPIO
The executable is GPIO.gambas
https://github.com/CWRoos/GPIO/blob/master/GPIO.gambas
Click on Raw to download.
Needs to be run as root ;
Code: Select all
sudo ./GPIO.gambas
Code: Select all
sudo ./GPIO.gambas
Gambas actually was the first one I found and got working, even I'm actually a C++ programmer.DeeJay wrote: And as a side-effect it is an introduction to another GUI development tool for the RPi - I hadn't heard of Gambas before.
Yes it seems it does need gambas runtime (gbr3)joan wrote:I get /usr/bin/env: gbr3: No such file or directory on soft float jessie and hard float raspbian (wheezy).
Good work CWRoos!CWRoos wrote:Wrote a GUI to control the GPIO (and I2C , SPI ) for testing.
Its written in gambas
https://github.com/CWRoos/GPIO...
Code: Select all
Title=GPIO
Startup=FMain
Version=0.0.1
VersionFile=1
Component=gb.image
Component=gb.gui
Component=gb.form
Packager=1
Code: Select all
gksu gambas3
This is seriously coolCWRoos wrote:Wrote a GUI to control the GPIO ....