software engineer for over a decade. » For the past two years I've focusing on Python at Microsoft as a Cloud Developer Advocate » where my goal is to make azure and vs code easier @nnja - nnjaio - nina.to/lcc-leds
Kit w/ wireless and bluetooth connectivity » BBC micro:bit » computing device aimed at learning » Adafruit - m0 and m4 line of devices » & lots more... @nnja - nnjaio - nina.to/lcc-leds
maintained the philosophy of "batteries included" -- having a rich and versatile standard library which is immediately available, without making the user download separate packages. This gives the Python language a head start in many projects.” PEP 206 @nnja - nnjaio - nina.to/lcc-leds
3 designed to run of microcontrollers. » Runs within just 256k of code space and 16k of RAM. » CircuitPython is an education friendly Adafruit fork of MicroPython » Both are open source! @nnja - nnjaio - nina.to/lcc-leds
lib folder » Download from: git.io/circuitpythonlib » ! We're interested in adafruit_circuitplayground.express, so we can interact with the board. @nnja - nnjaio - nina.to/lcc-leds
- red, green, and blue. By combining the amount and intensity of these colors (255 * 255 * 255) you can produce over 16 million color variations! image source: randomnerdtutorials.com/electronics-basics-how-do-rgb-leds-work/
is pressed from adafruit_circuitplayground.express import cpx import time RED = (255, 0, 0) # 255 Red, 0 Green, 0 Blue GREEN = (0, 255, 0) # 0 Red, 255 Green, 0 Blue BLUE = (0, 0, 255) # 0 Red, 0 Green, 255 Blue cpx.pixels.brightness = 0.1 my_colors = [RED, GREEN, BLUE] color_pos = 0 while True: # Keep looping forever... cpx.pixels.fill(my_colors[color_pos]) if cpx.button_a or cpx.button_b: # Button A or B was pressed color_pos = (color_pos + 1) % len(my_colors) time.sleep(0.2) # Sleep, to make the button less sensitive
data + charge USB cable » See a CircuitPython drive? » on Mac OS in /Volumes/CIRCUITPY » Otherwise, install CircuitPython » Next, edit & save the code.py (or main.py) file. Your code runs instantly! ! @nnja - nnjaio - nina.to/lcc-leds
("Blue", BLUE)] color_pos = 0 while True: # Keep looping forever... name, color = my_colors[color_pos] cpx.pixels.fill(color) if cpx.button_a or cpx.button_b: # Button A or B was pressed color_pos = (color_pos + 1) % len(my_colors) next_name, _ = my_colors[color_pos] print("Changing color from %s to %s" % (name, next_name)) time.sleep(0.2) # Sleep, to make the button less sensitive @nnja - nnjaio - nina.to/lcc-leds
To see print() statements or errors, you need to receive output from the Circuit Play Ground Express by opening a connection to the serial console. » ! You won't see any output without it. @nnja - nnjaio - nina.to/lcc-leds
the terminal and screen program to connect to the serial console on the Circuit Playground Express. $ ls /dev/tty.* # Select the usbmodem $ screen /dev/tty.board_name 115200 # `115200` is the baud rate. To quit screen, press ctrl+a followed by k. Or, learn how to connect via the terminal in other OSes
power & programming) » from a computer, portable phone charger, or wall » battery packs (JST connector) » need minimum 3.5V DC. Power with 3 household AAA batteries + enclosure with correct connector.
warning: only for advanced users » small, lightweight, energy dense, fragile » needs special care! » cannot be heated, punctured, or bent » ! for kids w/o supervision » requires additional charger
Initial directory: bit.ly/initial_cpe_dir » Demo covers a majority of the features, prints out sensor readings, etc. » There's even a flag you can set to turn the Circuit Playground Express into a little piano using the capacitive touch pads! @nnja - nnjaio - nina.to/lcc-leds
choice or use the VS Code simulator extension or MakeCode emulator » Pick your editor (Visual Studio Code, Mu, etc..) » Write your own code » Use a library » Or start with a shared project ... start with Python on hardware in no time! @nnja - nnjaio - nina.to/lcc-leds