From e2d330e9c95a6bd2370e82a2065a83668994ab45 Mon Sep 17 00:00:00 2001 From: John McCabe Date: Wed, 9 Nov 2022 00:23:04 +0000 Subject: [PATCH] Fix typo galactic_unicorn feature_test_with_audio.py Fixes a minor typo, SWITCH_BRIGHTNESS_DOWN text should be Lower not Power. --- .../examples/galactic_unicorn/feature_test_with_audio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/micropython/examples/galactic_unicorn/feature_test_with_audio.py b/micropython/examples/galactic_unicorn/feature_test_with_audio.py index 482ce5d5..55af285c 100644 --- a/micropython/examples/galactic_unicorn/feature_test_with_audio.py +++ b/micropython/examples/galactic_unicorn/feature_test_with_audio.py @@ -346,7 +346,7 @@ while True: text = "Raise B" if gu.is_pressed(GalacticUnicorn.SWITCH_BRIGHTNESS_DOWN): - text = "Power B" + text = "Lower B" if gu.is_pressed(GalacticUnicorn.SWITCH_SLEEP): text = "Stop"