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
// Polar basics demo for the | |
// FastLED Podcast #2 | |
// https://www.youtube.com/watch?v=KKjFRZFBUrQ | |
// | |
// VO.1 preview version | |
// by Stefan Petrick 2023 | |
// This code is licenced under a | |
// Creative Commons Attribution | |
// License CC BY-NC 3.0 |
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
# fake_vectorscope2_lissajous.py -- a little fakey vectorscope in CircuitPython for 2023HackadaySupercon | |
# 21 Oct 2023 - @todbot / Tod Kurt# | |
# video demo: https://mastodon.social/@todbot/111279891762130663 | |
import time, math, random | |
import board, busio | |
import displayio, vectorio | |
import gc9a01 | |
displayio.release_displays() |
OlderNewer