Swagbadge2021 UpdatingSoftware
Contents
- 1 Updating the software framework
- 1.1 Requirements
- 1.2 Setting up your Windows 10 system for connecting to badge hardware
- 1.3 Setting up your Mac OS system for connecting to #swagbadge hardware
- 1.4 Setting up your Linux system for connecting to #swagbadge hardware
- 1.5 Setting up your Windows 10 system for installing #swagbadge firmware
- 1.6 Download #swagbadge (Aiko Engine) firmware
- 1.7 Using mpfshell
- 1.8 Putting the Aiko framework onto the device
Updating the software framework
Swagbadge owners might want to update the software framework (Aiko). Dagbadge owners will need to put the framework onto their badge before they can use it.
Here's how to do that!
Requirements
- #swagbadge or #dagbadge or any ESP32 with an OLED screen
- Micro-USB cable
- Linux, Mac OS or Linux system running Python 3
- Command line tools: git
Setting up your Windows 10 system for connecting to badge hardware
How to find your serial COM port on Windows:
- Use the Device Manager.
- Under the "Ports" category, you'll see one or more entries. Hopefully one of which is your badge! It will tell you what Port it is on.
- If you can't see your badge, you might need to go up to the View menu and use "Show hidden devices" and see if that helps.
Windows 10 may automatically discover your #swagbadge USB hardware and automatically install the correct USB serial hardware driver, or if nothing still shows up, you might need to update your USB drivers for supporting the USB hardware CP210x on your #swagbadge, please follow these instructions:
- Download the CP210x drivers from Silicon Labs Windows Universal Driver
- Unpack the zip file
- Follow the Silicon Labs instructions for INF only install (Section 5 on page 9)
By this point, you have know the serial COM port that your #swagbadge is connected to, e.g COM4
Setting up your Mac OS system for connecting to #swagbadge hardware
[Link other instructions here]
Setting up your Linux system for connecting to #swagbadge hardware
[Link other instructions here]
Setting up your Windows 10 system for installing #swagbadge firmware
- Install Miniconda3 to create a specific Python development environment. (Note we are using Python3 not Python2)
- Create specific Python 3 environment for playing around with your #swagbadge
- Start an Anaconda Powershell Prompt (aka Windows Terminal)
-
conda create --yes -n swagbadge python=3
-
conda activate swagbadge
- Your command prompt should now look like:
(swagbadge) C:\Users\[Username]>
- Install some python tools to let us prepare and communicate with the badge
-
pip install esptool mpfshell
-
- To test that the required tools are installed, trying running the following commands
-
esptool
# Should show you help on running the esptool -
mpfshell
# Should show three lines of output-
exit
# To exit mpfshell
-
-
Download #swagbadge (Aiko Engine) firmware
Within your Anaconda Prompt session, change directory to where you’d like the #swagbadge software to be downloaded, for example:
-
cd $HOME/software
Download #swagbadge firmware:
-
git clone https://github.com/geekscape/aiko_engine_mp.git
# NOTE: this URL will change once we're live -
cd aiko_engine_mp
Install MicroPython
- Create a directory to hold the MicroPython firmware, such as aiko_engine_mp/firmware/
-
mkdir firmware
- Using your web browser, download: esp32-idf4-20200902-v1.13.bin (mouse right button click → [Save As …] saving the MicroPython firmware in the firmware directory you just made.
- The MicroPython download list has a link to a bunch of firmware drivers, we are using the one for the esp32 device, with the latest 1.4 generic
Erase #swagbadge LoLin-Lite ESP32 flash memory
-
esptool --chip esp32 --port COM3 erase_flash
# adjust the port to suit. - You’ll know it’s worked, if the output finishes with “Hard resetting via RTS pin…”
Install microPython on the badge
-
esptool --chip esp32 --port COM3 --baud 460800 write_flash -z 0x1000 firmware\esp32-idf4-20200902-v1.13.bin
#adjust port and firmware location if necessary - You’ll know it’s worked, if the output finishes with “Hard resetting via RTS pin…”
Test that the software is installed correctly by using mpfshell
-
mpfshell -o COM3
# Adjust port to suit - If it has made a connection to your badge, you will see it say
Connected to esp32 ** Micropython File Shell v0.9.1, sw@kaltpost.de ** -- Running on Python 3.8 using PySerial 3.4 -- mpfs [/]>
Using mpfshell
mpfshell has two functions: it lets you put files on/off the device, and it can give you a python shell to execute code on the device.
- Getting files on/off the device is a bit like commandline ftp
- ls - looks at the files on your micropython device
- lls - looks at the files on your local computer in the current directory
- put - puts a file to the device
- cat - shows you the contents of the file
- help() - gives you more information on the commands
- repl - opens up the python shell on the badge
Note: To get out of repl, use Ctrl-Q (on Windows) which drops you back into mpfshell
A little program to say hello world!
-
>>> print("hello world")
- Output:
hello world
A little program to turn the blue light on the board on and off (this is on the underside of the Swagbadge, visible through a circular cutout)
>>> import machine >>> pin22=machine.Pin(22, machine.Pin.OUT, machine.Pin.PULL_UP) >>> pin22.value(0) >>> pin22.value(1)
Putting the Aiko framework onto the device
-
mpfshell COM5 -s scripts\aiko.mpf
#run from within the aiko_framework_mp directory