From 935bde32656039c84448ca7b8f85f0dfdf0862b3 Mon Sep 17 00:00:00 2001 From: talksik Date: Thu, 27 Apr 2023 15:13:25 -0700 Subject: [PATCH] fixing argument overflow --- simple_recorder/push_to_record_and_play.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simple_recorder/push_to_record_and_play.py b/simple_recorder/push_to_record_and_play.py index a0917a5..084d445 100644 --- a/simple_recorder/push_to_record_and_play.py +++ b/simple_recorder/push_to_record_and_play.py @@ -31,7 +31,7 @@ def turnOffLED(): def turnOnLED(): for i in range(PIXELS_N): - led.set_pixel_rgb(i, 0, 0, 255) + led.set_pixel(i, 255, 192, 203) led.show()