Skip to content
This repository has been archived by the owner on Jan 27, 2025. It is now read-only.

Commit

Permalink
Fixed syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
rei-vilo committed Nov 14, 2024
1 parent 3b54b9f commit e3f3eda
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Screen_EPD_EXT3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -386,12 +386,12 @@ void Screen_EPD_EXT3_Fast::COG_MediumK_powerOff()

// b_waitBusy(HIGH); // added
/*
hV_HAL_GPIO_write(b_pin.panelDC, LOW);
hV_HAL_GPIO_write(b_pin.panelCS, LOW);
hV_HAL_GPIO_write(b_pin.panelReset, LOW);
// hV_HAL_GPIO_write(panelON_PIN, LOW); // PANEL_OFF# = 0
digitalWrite(b_pin.panelDC, LOW);
digitalWrite(b_pin.panelCS, LOW);
digitalWrite(b_pin.panelReset, LOW);
// digitalWrite(panelON_PIN, LOW); // PANEL_OFF# = 0
*/
// hV_HAL_GPIO_write(b_pin.panelCS, HIGH); // CS# = 1
// digitalWrite(b_pin.panelCS, HIGH); // CS# = 1
}
//
// --- End of Medium screens with K film
Expand Down

0 comments on commit e3f3eda

Please sign in to comment.