Just a quick and nasty python library for configuring/reading/writing to the GPIO header on the Chumby Infocast. Probably can be adapted to be used on the Chumby Hackerboard quite easily.
Source code here :- http://code.google.com/p/madox/source/browse/trunk/chumby/chumby.py?r=5
Example usage :
chumby:/mnt/storage# python -i chumby.py
>>> import chumby
>>> gpio = chumby.GPIO()
>>> gpio.set_direction(0xFF)
>>> gpio.write_output(0xFF)
>>> gpio.clear_output(0xFF)
>>> gpio.set_output(0xFF)
>>> gpio.toggle_output(0x01)
>>> gpio.toggle_output(0x01)
>>> gpio.set_drive(0x55,0xAA)
Works quite well. Need to tidy it up and maybe add i2c support…