From bda80d340b76749e3a96f7266093a0937ffaceae Mon Sep 17 00:00:00 2001 From: reaw55 <58457329+reaw55@users.noreply.github.com> Date: Wed, 27 Dec 2023 00:15:17 +0700 Subject: [PATCH] fix unintended error --- src/user_code.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/user_code.cpp b/src/user_code.cpp index 1aba714..ee2d0b4 100644 --- a/src/user_code.cpp +++ b/src/user_code.cpp @@ -260,10 +260,10 @@ void update_lcd_row2() { //also update the light1 and light2 buttons background to reflect the current state //row2_lv1.Set_background_image_pic(lt1_state?5:6); //row2_lv2.Set_background_image_pic(lt2_state?7:8); - elcd.print("row1_lv1.pic="); + elcd.print("row2_lv1.pic="); elcd.print(lt1_state?5:6); elcd_send_stop_bit(); - elcd.print("row1_lv2.pic="); + elcd.print("row2_lv2.pic="); elcd.print(lt2_state?7:8); elcd_send_stop_bit(); @@ -284,7 +284,7 @@ void update_lcd_row3() { elcd.print("row3_lv1.pic="); elcd.print(lt1_state?5:6); elcd_send_stop_bit(); - elcd.print("row1_lv2.pic="); + elcd.print("row3_lv2.pic="); elcd.print(lt2_state?7:8); elcd_send_stop_bit();