Roadrunner technical documentation Buy
This article explains how to install it on Raspbian distribution on RoadRunner
sudo apt update
sudo apt install python-pip
pip install mpio
import mpio
import time
gpio = mpio.GPIO(25, mpio.GPIO.OUT)
gpio.set(True)
time.sleep(1)
gpio.set(False)
import mpio
gpio = mpio.GPIO(25, mpio.GPIO.IN)
print gpio.get()
// 0 ~ 31 PA0 -> PA31
// 32 ~ 63 PB0 -> PB31
// 33 ~ 95 PC0 -> PC31
// 96 ~ 127 PD0 -> PD31
to convert the MCU pin name to Kernen GPIO id use this function:
def pin2id(pinname):
"""
Return the Kernel ID of any Pin using the MCU name
or the board name
"""
offset=None
if pinname[0:2]=="PA":
offset=0
if pinname[0:2]=="PB":
offset=32
if pinname[0:2]=="PC":
offset=64
if pinname[0:2]=="PD":
offset=96
if offset==None:
return None
else:
return offset+int(pinname[2:4])
example of use (add pin2id function in the following code):
import mpio
import time
gpio = mpio.GPIO(pin2id("PA25"), mpio.GPIO.OUT)
gpio.set(True)
time.sleep(1)
gpio.set(False)
import mpio
mpio.DevMem.write_reg(0xfc040018,0x300)
then to enter in Suspend To Ram for 5s:
sudo rtcwake -m mem -s 5