1
vote
1answer
28 views

Python Synth with Raspberry

I'm trying to create a synth using python with raspberry pi. I've written the code for manipulate the gpio input (i've modified the electronic of an old pianola and connected it to raspberry with the ...
2
votes
1answer
66 views

Is there a software block diagram that describes how a python call (e.g. GPIO) gets to the hardware?

Is there a software block diagram that describes how a python call (e.g. GPIO) gets to the hardware? I would assume there is a user/kernel interface. Maybe a kernel module that implements support ...
3
votes
2answers
2k views

How do I wait for interrupts in different languages?

I have a IR photo gate sensor that I have attached to my Raspberry Pi, and it is working nicely as I test with WebIOPi and a C program using the wiringPi library. I would like to use some other ...
13
votes
1answer
5k views

Recommended GUI toolkit for Python development on the Raspberry Pi

I am teaching my daughter Python (and myself to some degree) using the Pi, and we have had a great time so far - but the CLI can only take us so far. I have started looking at other toolkits, ...
18
votes
1answer
3k views

How to program a USB device with Debian/Python

The Raspi is being promoted as an educational device that primarily uses Python. Inline with this, there are already some great examples online of people accessing the GPIO from Python. However, most ...