We're no longer updating This wiki!!

Basics of 30pin Port

The ODROID-XU3 provides 30Pin GPIOs.

dn.odroid.com_homebackup_201310211158488480.jpg

You need to enter into super-user mode first to run below commands !!

 sudo su 




Easy to use GPIOs
First, you refer to below link.
You check Export number that you want to use GPIO.
Pin description

Create a GPIO file access.
You can access GPIOs using sysfs interface.

echo 29 > /sys/class/gpio/export

Configure the pin direction (in/out)

echo in > /sys/class/gpio/gpio29/direction

Read a value

cat /sys/class/gpio/gpio29/value

dn.odroid.com_homebackup_201310211155385344.jpg
Expansion Board

LED ON/OFF example
If you want to use LED ON/OFF, first you check the NET name in Expansion Board.
For example, The NET name of D1 is INT23.
According to below link, The Export GPIO number is #31.
Pin description

echo 31 > /sys/class/gpio/export
echo out > /sys/class/gpio/gpio31/direction

LED ON

echo 1 > /sys/class/gpio/gpio31/value

LED OFF

echo 0 > /sys/class/gpio/gpio31/value
en/xu3_enhancement_gpio30.txt · Last modified: 2015/08/28 11:20 by odroid
CC Attribution-Share Alike 3.0 Unported
Driven by DokuWiki Recent changes RSS feed Valid CSS Valid XHTML 1.0