GEMMA M0 boards can run CircuitPython — a different approach to programming compared to Arduino sketches. In fact, CircuitPython comes factory pre-loaded on GEMMA M0. If you’ve overwritten it with an Arduino sketch, or just want to learn the basics of setting up and using CircuitPython, this is explained in the Adafruit GEMMA M0 guide.
Below is CircuitPython code that works similarly to the Arduino sketch shown on a prior page. To use this, plug the GEMMA M0 into USB…it should show up on your computer as a small flash drive…then edit the file “code.py” with your text editor of choice. Select and copy the code below and paste it into that file, entirely replacing its contents (don’t mix it in with lingering bits of old code). When you save the file, the code should start running almost immediately (if not, see notes at the bottom of this page).
If GEMMA M0 doesn’t show up as a drive, follow the GEMMA M0 guide link above to prepare the board for CircuitPython.
# SPDX-FileCopyrightText: 2017 Phillip Burgess for Adafruit Industries
#
# SPDX-License-Identifier: MIT
import board
import neopixel
try:
import urandom as random # for v1.0 API support
except ImportError:
import random
num_pix = 17 # Number of NeoPixels
pix_pin = board.D1 # Pin where NeoPixels are connected
strip = neopixel.NeoPixel(pix_pin, num_pix)
min_alpha = 0.1 # Minimum brightness
max_alpha = 0.4 # Maximum brightness
alpha = (min_alpha + max_alpha) / 2 # Start in middle
alpha_delta = 0.01 # Amount to change brightness each time through loop
alpha_up = True # If True, brightness increasing, else decreasing
strip.fill([0, 0, 255]) # Fill blue, or change to R,G,B of your liking
while True: # Loop forever...
if random.randint(1, 5) == 5: # 1-in-5 random chance
alpha_up = not alpha_up # of reversing direction
if alpha_up: # Increasing brightness?
alpha += alpha_delta # Add some amount
if alpha >= max_alpha: # At or above max?
alpha = max_alpha # Limit to max
alpha_up = False # and switch direction
else: # Else decreasing brightness
alpha -= alpha_delta # Subtract some amount
if alpha <= min_alpha: # At or below min?
alpha = min_alpha # Limit to min
alpha_up = True # and switch direction
strip.brightness = alpha # Set brightness to 0.0 to 1.0
strip.write() # and issue data to LED strip
This code requires the neopixel.py library. A factory-fresh board will have this already installed. If you’ve just reloaded the board with CircuitPython, create the “lib” directory and then download neopixel.py from Github.
Page last edited January 20, 2025
Text editor powered by tinymce.