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: docs/amyboard/online.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -240,6 +240,15 @@ You can search or see everyone's uploaded sketches. They contain both patches an
240
240
241
241
You can upload your own environments or patches here. Choose a memorable username and describe your work!
242
242
243
+
You can also fetch and run AMYboard World sketches straight from any Python REPL — on AMYboard, on Tulip CC / Tulip Desktop, and on both web ports:
244
+
245
+
```python
246
+
world.amyboard.ls() # list recent sketches
247
+
world.amyboard.download("eno_ambient", "dpwe") # download the sketch and start it
248
+
```
249
+
250
+
On Tulip, the sketch starts the same way it does on AMYboard (synths reset, saved knob state applied, `loop()` on the sequencer); CV in/out calls no-op, while I2C accessories like the OLED display and rotary encoders work.
world.amyboard.download(sketch_name) # e.g. world.amyboard.download("eno_ambient")
172
+
world.amyboard.download(sketch_name, username) # latest version by a specific user
173
+
world.amyboard.download(sketch_name, username, start=False) # just download, don't run
174
+
world.amyboard.ls() # lists most recent AMYboard World sketches
175
+
176
+
import amyboard
177
+
amyboard.stop_sketch() # stops a running sketch's loop()
165
178
```
166
179
167
180
Big note: Tulip World is hosted by a bot running on the [Tulip/AMY/Alles Discord](https://discord.gg/TzBFkUb8pG). If there's any abuse of the system, I'll revoke the key. I'd love more help making Tulip World a more stable and fun experience for everyone.
0 commit comments