A13-OLinuXino demo code updated on Github

Started by olimex, January 25, 2013, 02:51:08 PM

Previous topic - Next topic

olimex

GitHub update A13-OLinuXino demo for:

MOD-BT
MOD-GSM
MOD-IO
MOD-LCD1x9
MOD-MAG
MOD-RFID125
MOD-RS485-ISO
MOD-TC-MK2
MOD-ZIGBEE

https://github.com/OLIMEX/OLINUXINO/tree/master/SOFTWARE/A13

olimex




olimex


olimex


olimex

A13-OLinuXino now have GPIO Python libraries, so you can easily make your embedded projects http://olimex.wordpress.com/2013/03/08/a13-olinuxino-gpio-python-libraries/

working with GPIOs now is as simple as:

# sudo python

>>> import A13_GPIO as GPIO
>>> GPIO.init()                           #init GPIOs
>>> GPIO.getcfg(GPIO.PIN37)               #config PIN37 as GPIO
>>> GPIO.setcfg(GPIO.PIN37, GPIO.OUTPUT)  #config PIN37 as output
>>> GPIO.output(GPIO.PIN37, GPIO.HIGH)    #set PIN37 high
>>> GPIO.output(GPIO.PIN37, GPIO.LOW)     #set PIN37 low
>>> GPIO.setcfg(GPIO.PIN37, GPIO.INPUT)   #config PIN37 as input
>>> GPIO.input(GPIO.PIN37)                #read PIN37


olimex


olimex

Yay! A13-OLinuXino-WIFI running MAME4Droid :) Terabytes of retro game roms are waiting, just need to find some time http://olimex.wordpress.com/2013/03/13/mame4droid-is-running-on-a13-olinuxino/ ...

olimex



olimex


olimex

A13-OLinuXino project with OpenCV - Security Door Logger - now you will know when and who exactly entered your room http://olimex.wordpress.com/2013/03/28/make-door-security-logger-with-a13-olinuxino-wifi-opencv/ ...