working with the adafruit circuit playground express using the raspberry pi 4, part 2

Prerequisites

A Raspberry Pi 3B+ or 4 with Raspbian Buster installed and connected to an Adafruit Circuit Playground Express via a micro USB to USB cable and with CircuitPython installed on the Circuit Playground Express (see working with the adafruit circuit playground express using the raspberry pi 4).

Setting Up and Tearing Down the REPL

Attach the Circuit Playground Express (CPE) to the Raspberry Pi. The CIRCUITPY storage device icon will appear on the desktop and a dialog will appear simultaneously asking if you want to open removable media in a file manager. You can click OK if you wish, or Cancel to remove the dialog. If you cancel the dialog but wish to open the removable media portion you can double click on the desktop icon. If you open the file manager you’ll see the following:


It’s fairly empty at the moment. Now, open an LXTerminal and type ‘screen /dev/ttyACM0 115200‘ at the prompt.

Auto-reload is on. Simply save files over USB to run them or enter REPL to disable.Press any key to enter the REPL. Use CTRL-D to reload.

Don’t type anything. Instead, using the mouse, click the up arrow that has appeared on the upper right task bar. This is the media eject control. Clicking it will produce a menu with at least the CIRCUITPY as an entry (you may have more depending on what other removable media you have plugged in. Select the CIRCUITPY entry to remove accessibility to CIRCUITPY. Then physically disconnect the CPE. Your console will now display the following:

pi@raspberrypi:~ $ screen /dev/ttyACM0 115200[screen is terminating]pi@raspberrypi:~ $

I’ve just shown how to set up and tear down the serial port into the CPE. For writing code in an editor and saving it on the CPE as main.py, it will print out any syntax errors and other data as needed to the terminal.

Circuit Python Programming Example 1

In this example I’ll show you how syntax errors will appear on the terminal. If you’ve detached the CPE, plug it back in so that it’s seen as removable media. Restart the screen utility so that you see the intro text in the terminal. Now start a text editor (VIM, gedit, text editor, whatever). Type a single line into the editor, ‘import fubar‘. Then save what you just typed as main.py onto CIRCUITPY and then look at your terminal.

Auto-reload is on. Simply save files over USB to run them or enter REPL to disable.main.py output:Traceback (most recent call last):  File "main.py", line 1, in <module>ImportError: no module named 'fubar'Press any key to enter the REPL. Use CTRL-D to reload.

There obviously is no fubar module, and Circuit Python prints out that fact as an error message on the terminal.

Circuit Python Programming Example 2

Let’s print something on the terminal. Replace the import statement with ‘print('Hello terminal')‘ and save the file. Now the terminal will show:

Auto-reload is on. Simply save files over USB to run them or enter REPL to disable.main.py output:Hello terminalPress any key to enter the REPL. Use CTRL-D to reload.

The Circuit Python is waiting for changes to main.py. Every time you save it you change it (you change the file’s timestamp, the last time the file was modified), CPE will attempt to run it. Either it’ll run, or it will stop with errors. You can use print statements to debug a program as it runs and see those print statements on the terminal.

Circuit Python Programming Example 3

Now lets code something a bit more ambitious. Let’s copy the following code into your editor and then save it out as main.py again.

import board, neopixel, timepixels = neopixel.NeoPixel(board.NEOPIXEL, 10, brightness=.2)RED = (63, 0, 0)pixels.fill(RED)time.sleep(1)GREEN = (0, 63, 0)pixels.fill(GREEN)time.sleep(1)BLUE = (0, 0, 63)pixels.fill(BLUE)time.sleep(1)BLACK = (0, 0, 0)pixels.fill(BLACK)

If you’ll recall this is essentially the same code we typed in by hand at the end of the last post, except this time we’re going to write it into main.py and save it. When you do, you’ll see all the NeoPlixel LEDs light up in red, then green, then blue, then go dark. We’ve added three sleep commands for one second so that it doesn’t run through all the fill commands. Save this version of main.py and watch the NeoPixels light up.

What if you want to have the application repeat? You can save it again, or you can hit any key in the terminal to enter the REPL and then [Ctrl] D to exit, and the CPE will execute main.py all over again. This might be useful for simple programs, or you might want to get a bit more sophisticated for repetitive applications.

Circuit Python Programming Example 4

Let’s add to our existing application. Let’s add some looping and some print statements.

import board, neopixel, timepixels = neopixel.NeoPixel(board.NEOPIXEL, 10, brightness=.2)for letter in "ABCDE":print(" %c loop" % letter)RED = (63, 0, 0)pixels.fill(RED)time.sleep(0.5)GREEN = (0, 63, 0)pixels.fill(GREEN)time.sleep(0.5)BLUE = (0, 0, 63)pixels.fill(BLUE)time.sleep(0.5)BLACK = (0, 0, 0)pixels.fill(BLACK)

I’ve changed the sleep time, lowering it to 1/2 second so the loop will go faster than the single pass used in example 3. I’m using simple iteration of a string of characters. In every loop I print out the letter of each loop. Save the file and watch the NeoPixels cycle through red, green, and blue five times. Here’s what the terminal looks like.

Auto-reload is on. Simply save files over USB to run them or enter REPL to disable.main.py output: A loop B loop C loop D loop E loopPress any key to enter the REPL. Use CTRL-D to reload.

You’ve now got an application that manipulates some of the CPE’s devices (the NeoPixels) as well as printing out what loop it’s in on the terminal while it’s running.

The CPE is a powerful little board, with a lot more than just NeoPixels to manipulate. Perhaps next time I’ll dive in and add both CPE input and output, and find a way to feed some of the CPE’s inputs back to the Raspberry Pi.