fix unintended error
This commit is contained in:
parent
c014b72532
commit
bda80d340b
|
@ -260,10 +260,10 @@ void update_lcd_row2() {
|
||||||
//also update the light1 and light2 buttons background to reflect the current state
|
//also update the light1 and light2 buttons background to reflect the current state
|
||||||
//row2_lv1.Set_background_image_pic(lt1_state?5:6);
|
//row2_lv1.Set_background_image_pic(lt1_state?5:6);
|
||||||
//row2_lv2.Set_background_image_pic(lt2_state?7:8);
|
//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.print(lt1_state?5:6);
|
||||||
elcd_send_stop_bit();
|
elcd_send_stop_bit();
|
||||||
elcd.print("row1_lv2.pic=");
|
elcd.print("row2_lv2.pic=");
|
||||||
elcd.print(lt2_state?7:8);
|
elcd.print(lt2_state?7:8);
|
||||||
elcd_send_stop_bit();
|
elcd_send_stop_bit();
|
||||||
|
|
||||||
|
@ -284,7 +284,7 @@ void update_lcd_row3() {
|
||||||
elcd.print("row3_lv1.pic=");
|
elcd.print("row3_lv1.pic=");
|
||||||
elcd.print(lt1_state?5:6);
|
elcd.print(lt1_state?5:6);
|
||||||
elcd_send_stop_bit();
|
elcd_send_stop_bit();
|
||||||
elcd.print("row1_lv2.pic=");
|
elcd.print("row3_lv2.pic=");
|
||||||
elcd.print(lt2_state?7:8);
|
elcd.print(lt2_state?7:8);
|
||||||
elcd_send_stop_bit();
|
elcd_send_stop_bit();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue