This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: 2017 Scott Shawcroft, written for Adafruit Industries | |
# SPDX-FileCopyrightText: Copyright (c) 2023 Tod Kurt | |
# | |
# SPDX-License-Identifier: Unlicense | |
"""Demonstrate MicroOSC library in CircuitPython, assumes native `wifi` support""" | |
import time | |
import os |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: Copyright (c) 2023 john park for Adafruit Industries | |
# | |
# SPDX-License-Identifier: MIT | |
# simple point-and-shoot camera example | |
# No bells! Zero whistles! | |
import time | |
import adafruit_pycamera | |
pycam = adafruit_pycamera.PyCamera() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: Copyright (c) 2023 john park for Adafruit Industries | |
# | |
# SPDX-License-Identifier: MIT | |
''' Faderwave Synthesizer | |
use 16 faders to create the single cycle waveform | |
rotary encoder adjusts other synth parameters | |
audio output: line level over 3.5mm TRS | |
CV output via DAC ''' | |
import board |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Faderwave v0.2 PCB | |
# john park 2023 | |
import time | |
import board | |
import busio | |
import ulab.numpy as np | |
import rotaryio | |
import neopixel | |
from digitalio import DigitalInOut, Pull |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# testing Wave Shape Fader v0.1 PCB | |
# john park 2023 | |
import time | |
import board | |
import busio | |
import ulab.numpy as np | |
import rotaryio | |
import neopixel | |
from digitalio import DigitalInOut, Pull |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: 2023 Liz Clark for Adafruit Industries | |
# SPDX-License-Identifier: MIT | |
""" | |
This test will initialize the display using displayio and display | |
a bitmap image. The image advances when the touch screen is touched. | |
Pinouts are for the 2.8" TFT Shield | |
""" | |
import os |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: 2023 Liz Clark for Adafruit Industries | |
# SPDX-License-Identifier: MIT | |
"""Simple demo of writing a sine wave to the AD569x DAC.""" | |
import math | |
import board | |
import busio | |
from adafruit_seesaw import seesaw, rotaryio, digitalio | |
import adafruit_ad569x |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# fireworks_sprites.py - show a bunch of fireworks | |
# 4 Jul 2022 - @todbot / Tod Kurt | |
import time, random | |
import board | |
import busio | |
import displayio | |
import rainbowio | |
import adafruit_imageload | |
import adafruit_ili9341 | |
import adafruit_tsc2007 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: 2023 John Park for Adafruit Industries | |
# SPDX-License-Identifier: MIT | |
# PowerWash Simulator controller | |
# to do: | |
# - | |
# interactions: | |
# bno heading/roll is mouse x/y | |
# bno tap is next nozzle | |
# wii c while level is nozzle rotate | |
# wii c while up is re-center nozzle offsets |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: 2023 John Park for Adafruit Industries | |
# SPDX-License-Identifier: MIT | |
# PowerWash Simulator controller | |
# to do: | |
# - tame the taps | |
# interactions: | |
# bno heading/roll is mouse x/y | |
# bno double tap is next nozzle | |
# wii c while level is nozzle rotate | |
# wii c while up is re-center nozzle offsets |