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
Copy file name to clipboardExpand all lines: README.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,11 @@
1
1
# pico_test_synth
2
2
3
-
A simple [Raspberry Pi Pico RP2040](https://www.raspberrypi.com/documentation/microcontrollers/raspberry-pi-pico.html)-based
4
-
synth to experiment with [`synthio`](https://github.com/todbot/circuitpython-synthio-tricks).
3
+
A simple
4
+
[Raspberry Pi Pico RP2040](https://www.raspberrypi.com/documentation/microcontrollers/raspberry-pi-pico.html)-based
5
+
synth to experiment with [`synthio`](https://github.com/todbot/circuitpython-synthio-tricks) and [Mozzi](https://github.com/sensorium/Mozzi).
6
+
7
+
<ahref="https://www.tindie.com/stores/todbot/products/pico_test_synth?ref=offsite_badges&utm_source=sellers_todbot&utm_medium=badges&utm_campaign=badge_small"><imgsrc="https://d2ss6ovg47m0r5.cloudfront.net/badges/tindie-smalls.png"alt="I sell on Tindie"width="200"height="55"></a>
Copy file name to clipboardExpand all lines: arduino/hwtest/hwtest2_guitest/SynthUI.h
+15-49Lines changed: 15 additions & 49 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,8 @@
1
1
#ifndef SYNTHUI_H
2
2
#defineSYNTHUI_H
3
3
4
+
#include<stdio.h>
5
+
#include<stdarg.h>
4
6
#include<Adafruit_GFX.h>
5
7
6
8
#defineKEY_NONE0// No key presses are detected
@@ -11,62 +13,17 @@
11
13
#defineKEY_CANCEL5// Cancel key is pressed (navigate to the previous (parent) menu page, exit edit mode without saving the variable, exit context loop if allowed within context's settings)
12
14
#defineKEY_OK6// Ok/Apply key is pressed (toggle bool menu item, enter edit mode of the associated non-bool variable, exit edit mode with saving the variable, execute code associated with button)
0 commit comments