fix unintended error

This commit is contained in:
reaw55 2023-12-27 00:15:17 +07:00
parent c014b72532
commit bda80d340b
1 changed files with 3 additions and 3 deletions

View File

@ -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();