Skip to main content

Hello GPIO

We are flooded with GPIO information from RaspberryPi. Then we learned that OrangePi GPIO pin layout is compatible with RaspberryPi, but with some subtle difference in naming convention. If you are RaspberryPi fans, you will find it more difficult to use OrangePi GPIO, not only the naming is different, but you have to use another set of library calls. Also, the pin layout is upside down.

This is how I setup GPIO in Python 3.

First, prepare the Python environment,

$ sudo apt-get install python3-setuptools
$ sudo apt-get install python3-dev

Then, install the pyA20 library,

$ sudo pip3 install pyA20

Now install the library to manage the Orange Pi GPIO.

$ cd
$ git clone https://github.com/duxingkei33/orangepi_PC-gpio_pyH3
$ cd orangepi_PC_gpio_pyH3
$ sudo python3 setup.py install

Here is the test program to turn LED ON/OFF every second,

#!/usr/bin/env python3

# Turn LED On/Off with PA
# Kevin Lee 31 Dec 2019

# Connect LED to OpiZ pin 25 (GND) & 26 (PA10)

from pyA20.gpio import gpio
from pyA20.gpio import port
from time import sleep

gpio.init()
gpio.setcfg(port.PA10, gpio.OUTPUT)
while True:
    gpio.output(port.PA10, gpio.HIGH)
    print('ON')
    sleep(1)
    gpio.output(port.PA10, gpio.LOW)
    print('OFF')
    sleep(1)



This is the pinout of Orange Zero Pi,


Lee Sir,
31 December 2019
Hong Kong.



Reference:

Orange Pi One/Lite (Tutorial): use the GPIO in Python, pinouts, 15 January 2017, https://diyprojects.io/orange-pi-onelite-tutorial-use-gpio-python-pinouts/#.XgsDjvwRXIV


Update 28 March 2020:

Sad to say this library only works for 32bit sunxi processors, 64 bits SoCs like OrangePi Lite 2, are not supported.

Comments

Popular posts from this blog

Install/Setup Xfce and TightVNC to Armbian OrangePi

Following https://www.instructables.com/id/The-OrangePi-Lite/ , the next instruction after network started is usually VNC server setup. Many Internet resources suggested TightVNC, an open source software for this purpose. However, Armbian distribution for OrangePi does not include any X window desktop, therefore install TightVNC itself is just half of the journey. This is how I complete the work. 1. Make sure Armbian is updated: sudo apt-get update sudo apt-get upgrade 2. Install XFont used by TightVNC server sudo apt-get install xfonts-base 3. Install TightVNC server sudo apt-get install tightvncserver 4. Create a user dedicate for this service. I use user ID 'vnc' sudo adduser vnc gpasswd -a vnc sudo 5. Setup this user for VNC server, vncserver :1 We need to assign a password. No need to specify a view-only password. Use the command to confirm the server is running and the default options applied ps -ef | grep Xtightvnc 6. VNC Client can now conn...

Configure OrangePi Lite WiFi

There are many websites and Youtube videos show you how to install Armbian to OrangePi with a SD-card. There are many ways to connect to the initial console of the device. Most of them tell you to utilize the LAN interface. This is a quick and easy method, however, my OrangePi Lite simply lacks a LAN interface. We need to setup Wifi before we can use it for console connection. But without the console how can we setup Wifi connection? Finally I used a USB to TTL device. With only 3 wires I connected the device to OrangePi: Rx-Tx, Tx-Rx, and GND-GND. Then I can use PuTTY to bring up the console thru SSH. Up to this point basically I am following this website: https://www.instructables.com/id/The-OrangePi-Lite/ . I continued with the instructions and successfully connect to WiFi, but puzzle why I have do that with so many manual editings. Especially when I edit the /etc/network/interface file, it has a remark say "# Network is managed by Network manage". My question is can N...

When armbian-config works

I wrote several messages about the basic setup of Armbian on OrangePi. All of them were using line commands. Along the self-learning path, someday I found that there is armbian-config command that starts up a menu utility, roughly corresponds to raspi-config utility. However, before this Armbian version (20.02.1, Armbian Stretch for OrangePi Lite 2), I have a tough time dealing with this utility. Until today, I can say armbian-config works now. Therefore, many things can now be done in a menu-driven approach. Because I never lay down any can-opener style startup notes, this is the guide: Download an Armbian software from Armbian website. You will get a 7z zipped file in your downloads directory. Unzip the file. I just use 7zip Unzip Here feature. Use an SD card writer program (like Win32DiskImager) to write the unzipped file into the SD card. Connect OrangePi debug port to TTL-USB device. Connect USB to the computer, and startup PuTTY, open the connected USB COM port, with sp...