From 95bdebca7ce4f8d118220b40f648a941d853978a Mon Sep 17 00:00:00 2001 From: rorist <rorist@0xcafe.ch> Date: Mon, 21 Aug 2023 20:55:19 +0200 Subject: [PATCH] Update description for the store --- __init__.py | 3 +++ flow3r.toml | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/__init__.py b/__init__.py index ed4c074..26884f3 100755 --- a/__init__.py +++ b/__init__.py @@ -2,6 +2,7 @@ import bl00mbox import captouch import leds import time +from random import randrange from st3m.application import Application, ApplicationContext from st3m.input import InputState @@ -189,6 +190,7 @@ class EndlessSequencer(Application): print(" light leds {}".format(leds_range)) # Turn on leds + #colour = (randrange(200), randrange(200), randrange(200)) for led in leds_range: # Action boutons if i in [0, 9]: @@ -197,6 +199,7 @@ class EndlessSequencer(Application): leds.set_rgb(led, 0, 0, 200) else: leds.set_rgb(led, 0, 200, 0) + #leds.set_rgb(led, colour[0], colour[1], colour[2]) leds.update() diff --git a/flow3r.toml b/flow3r.toml index 466d2ca..69fff6b 100644 --- a/flow3r.toml +++ b/flow3r.toml @@ -9,5 +9,5 @@ class = "EndlessSequencer" author = "Rorist" license = "MIT" url = "https://git.flow3r.garden/rorist/endless-sequencer" -description = "Little endless sequencer with the default samples, hold REC to add a sample to the sequence, hold RESET to restart." -version = 9 +description = "Sequencer mimicic the OP-1, hold REC to add a step to the sequence, press NXT to add a silence and press RST to reset the sequence." +version = 10 -- GitLab