You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Patch files (.patch wire-command dumps) are no longer used. Removes:
- amyboard.py: load_patch_file(), save_patch_file() (the last caller of
amy.get_synth_commands() in tulipcc), and the PatchSelector encoder app
- spss.js: dead num_oscs_from_patch_file_content() and
write_channel_dirty_patch_file() helpers, stale comments referencing
restore_patch_state_from_files
- server: patch_selector/PatchSelector from the display/encoder
hardware-tag regexes and the matching test_hardware_tags check
- docs: patch_selector() mention and example in accessories.md
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
[**Adafruit I2C QT Quad Rotary Encoder Breakout**](https://www.adafruit.com/product/5752) -- Four rotary encoders with built-in push buttons and one RGB NeoPixel per encoder on a single I2C breakout, running seesaw firmware. AMYboard has built-in support via `read_encoder()`, `init_buttons()`, `read_buttons()`, and `init_neopixels()`/`set_neopixel()`/`show_neopixels()`. With a display connected, you can use `patch_selector()` to scroll through your `.patch` files with one encoder and load them with a click.
123
+
[**Adafruit I2C QT Quad Rotary Encoder Breakout**](https://www.adafruit.com/product/5752) -- Four rotary encoders with built-in push buttons and one RGB NeoPixel per encoder on a single I2C breakout, running seesaw firmware. AMYboard has built-in support via `read_encoder()`, `init_buttons()`, `read_buttons()`, and `init_neopixels()`/`set_neopixel()`/`show_neopixels()`.
124
124
125
125
```python
126
126
import amyboard
@@ -141,11 +141,6 @@ amyboard.set_neopixel(1, 0, 64, 0) # encoder 1 -> dim green
141
141
amyboard.set_neopixel(2, 0, 0, 64) # encoder 2 -> dim blue
142
142
amyboard.set_neopixel(3, 32, 32, 0) # encoder 3 -> dim yellow
143
143
amyboard.show_neopixels() # latch staged colors to the LEDs
144
-
145
-
# Patch selector: scroll through patches and load on click
0 commit comments