User Manual
For the remote, we soldered four wires
Black ground wire to the battery spring (negative)
terminal
Red +5V wire to the battery flat (positive) terminal
White and Purple go to the 'switched' part of each
switch, which, when connected to 5V activates
that switch
CircuitPython Code
import time
import audioio
from digitalio import DigitalInOut, Pull, Direction
from adafruit_seesaw.seesaw import Seesaw
from adafruit_seesaw.pwmout import PWMOut
from adafruit_motor import servo
from busio import I2C
import neopixel
import board
# Create seesaw object
i2c = I2C(board.SCL, board.SDA)
seesaw = Seesaw(i2c)
led = DigitalInOut(board.D13)
© Adafruit Industries
https://learn.adafruit.com/adafruit-crickit-creative-robotic-interactive-
construction-kit
Page 163 of 201










