Ameba MicroPython: Getting Started with AMB23 (RTL8722DM MINI)

Introduction

Ameba is an easy-to-program platform for developing all kind of IoT applications. AMB23 is equipped with various peripheral interfaces, including WiFi, GPIO INT, I2C, UART, SPI, PWM, ADC. Through these interfaces, AMB23 can connect with electronic components such as LED, switches, manometer, hygrometer, PM2.5 dust sensors, …etc.

The collected data can be uploaded via WiFi and be utilized by applications on smart devices to realize IoT implementation.

get-start-1

AMB23 uses Micro USB to supply power, which is common in many smart devices.
Please refer to the following figure and table for the pin diagram and function.

Note: Not all sets of peripherals shown on the picture/table above are available on MicroPython.

get-start-1

 GPIO pinGPIO INTADCPWMUARTSPII2CLEDButton
0PB0    I2C_SDA (a)  
1PB1A4 SERIAL2_TX (a)    
2PB2A5 SERIAL2_RX (a)    
3PB3A6      
4PB4A0 SPI_MOSI (b)*   
5PB5A1 SPI_MISO (b)*I2C_SCL (b)*  
6PB6A2  SPI_SCLK (b)*I2C_SDA (b)*  
7PB7A3 SPI_SS (b)*   
8PA2       
9PA12 SERIAL2_TX (b)*SPI_MOSI (a)   
10PA13 SERIAL2_RX (b)*SPI_MISO (a)   
11PA14   SPI_SCLK (a)   
12PA15   SPI_SS (a)   
13PA16       
14PA28      
15PA18  SERIAL1_TX (b)*    
16PA19  SERIAL1_RX (b)*    
17PA30      
18PA21  SERIAL1_TX (a)    
19PA22  SERIAL1_RX (a)    
20PA23   I2C1_SCL*  
21PA24   I2C1_SDA*  
22PA31    I2C_SCL (a)  
SWDPA27       
        LED_B 
        LED_G 
         PUSH_BTN

*: Those functions are not available on MicroPython

Introduction to AMB23 MicroPython Port

Background Information

MicroPython, by definition, is a lean and efficient Python3 compiler and runtime specially designed for microcontrollers.

MicroPython distinguishes itself from other compilation-based platforms with its powerful method of real-time interaction to Microcontroller through a built-in feature — REPL.

REPL stands for Read-Evaluation-Print-Loop, it is an interactive prompt that you can use to access and control your microcontroller.

REPL has been equipped with other powerful features such as tab completion, line editing, auto-indentation, input history and more. It basically functions like the classic Python IDLE but running on microcontroller.

To use REPL, simply open any serial terminal software (most common ones are teraterm, putty etc.) on your PC and connect to your microcontroller’s serial port, then set baud rate to 115200 before manually reset the board, then you will see >>> MicroPython prompt appear on the terminal. Now you may type in any Python script on REPL as long as it’s support by MicroPython and your microcontroller’s MicroPython port.

Most importantly, try to abuse “help()” function as much as possible to gain more information. For example, upon microcontroller power up and REPL shown, just type

help()
You will see a help page giving you more details about this port; also if you type

help(modules)
it will list out all available built-in modules that are at your disposal

Furthermore, if you want to learn more about a module, such as its API and CONSTANT available, simply type the following code and details of that module will be returned to you,

help(the module of your interest)

Let’s take Pin module (GPIO) as an example:

>>> help(Pin)
object <class 'Pin'> is of type type
  id -- 
  init -- 
  value -- 
  off -- 
  on -- 
  low -- 
  high -- 
  toggle -- 
  irq -- 
  board -- <class 'board'>
  IN -- 0
  OUT -- 1
  PULL_NONE -- 0
  PULL_UP -- 1
  PULL_DOWN -- 2
  IRQ_RISING -- 1
  IRQ_FALLING – 2

REPL Hotkeys

• Ctrl + d :
Soft reboot MicroPython will perform software reboot, this is useful when your microcontroller is behaving abnormally. This will also run scripts in ‘boot.py’ once again. Note that this will only reset the MicroPython interpreter not the hardware, all your previously configured hardware will stay the way it is until you manually hard reset the board.

• Ctrl + e :
Paste mode allow you to perform pasting a large trunk of code into REPL at once without executing code line by line. This is useful when you have found a MicroPython library and wish to test it out immediately by copy and paste.

• Ctrl + b :
Normal mode This hotkey will set REPL back to normal mode. This is useful if you are stuck in certain mode and can not get out.

• Ctrl + c :
Quick cancel This hotkey help you to cancel any input and return a new line.

Setting up Development Environment

Step 1. OS environment

AMB23 (RTL8722DM MINI) board currently supports Windows OS 32-bits or 64-bits, Linux OS (Ubuntu) and macOS. To have the best experiences, please use the latest version of OS.

Step 2. Installing the Driver

First, connect AMB23 to the computer via Micro USB:

get-start-1

If this is the first time connects AMB23 to computer, the USB driver for AMB23 will be automatically installed.
If you have driver issue of connect board to computer please go to https://ftdichip.com/drivers/ for USB driver.
Check the COM port number in Device Manager of computer:

get-start-1

Step 3. Installing the necessary tools

On Windows

For windows users, please install a serial terminal software to interact with MicroPython. The most common serial terminals are Tera Term and Putty, here we recommend using Tera Term, which can be downloaded from internet.

For advanced developer who wish to compile MicroPython firmware from scratch, then please be sure to install WSL and Ubuntu. Please take note to only install Version 1 of WSL. For tutorial on how to install WSL. Refer to this website: https://learn.microsoft.com/en-us/windows/wsl/install.

Also, Python3 is required during firmware compilation, so be sure to download the latest Python3 from its official website and have it added as environment variable when asked during installation.

On Linux

For Linux user, please install a serial terminal software of your choice using apt-get install command. Here we recommend using picocom for its lightweight.

For advanced developer interested in developing MicroPython module in C, please make sure the GNU make of at least version 3.82 or newer and Python3 are installed and can be found using terminal.

Upload Firmware into Ameba

Step 1. Navigate to “Firmware_and_DownloadTool.zip” folder

Go to https://github.com/ambiot/micropython and in the Releases tab you will be able to find the folder as shown in the image below.

get-start-1

Unzip the folder and depending on the OS that is used, locate a file named “Double-Click-Me-to-Upload or “Run_Me_in_Terminal.sh”.

Step 2. Enter UART Download mode

To enter upload mode, first press and hold the UART_DOWNLOAD button, then press and release the RESET button, lastly release the UART_DOWNLOAD button.

get-start-1

Step 3. Uploading the firmware

Follow the instruction printed on the screen or in the “Readme.md” so that the uploading can be carried out successfully. There is a 5-seconds count down set as a reminder to enter the upload mode. Once the uploading is successful, you will see a line of printed on the screen – “All images are sent successfully”.

get-start-1

Try the First Example

Step 1. Open REPL

REPL stands for Read, Evaluate, Print and Loop, it is the MicroPython’s terminal for user to control the microcontroller. REPL is running on LOG UART, thus we need to open our serial terminal software, in this case, Tera Term to see REPL.

Once Tera Term is opened, select “Serial” like in the picture above and choose your ameba’s serial port using the dropdown list, after that, hit “OK”. If your serial terminal is not configured to 115200 baud rate, now is the time to change it to 115200 and leave the rest of settings as default.

Now that the serial port is connected, press the RESET button once on your ameba and you should see the MicroPython’s welcome page as shown below.

get-start-1

What happened here was that your Ameba first check its calibration data and then boot into MicroPython’s firmware, MicroPython then run the “_boot.py” python script and imported built-in libraries.

Now, you can simply type help() to see more information, and type help(modules) to check all readily available libraries.

Step 2. Run WiFi Scan example

As most of peripherals’ examples requires additional hardware to show the example is working, we will just use WiFi Scan example as our first example and to see how easy it is to control WiFi using MicroPython.

Now, please follow along by copy+paste the following code or manually typing them out into Tera Term and hit “Enter”.

from wireless import WLAN
wifi = WLAN(mode = WLAN.STA)
wifi.scan()

You should be able to see the returned result with all the discovered wireless network in your surroundings.

get-start-1

With this, we can be sure that the MicroPython firmware is correctly compiled and installed.

Please confirm that QQ communication software is installed