implement internal display
This commit is contained in:
parent
efc3450995
commit
2dee25276c
4 changed files with 19 additions and 1 deletions
|
@ -99,3 +99,17 @@ void InternalDisplay::setPWMAdjustmentPin(uint8_t pin) {
|
|||
void InternalDisplay::setPWMAdjustmentButton(bool state) {
|
||||
// TODO: implementation
|
||||
}
|
||||
|
||||
void InternalDisplay::setOutputStateColor(uint8_t pin, bool state) {
|
||||
// TODO: implementation
|
||||
}
|
||||
|
||||
void InternalDisplay::setInputMarker(uint8_t pin, bool state) {
|
||||
// TODO: implementation
|
||||
}
|
||||
|
||||
InternalDisplay::InternalDisplay(HardwareSerial *displayAdapter) : ESPMegaDisplay(displayAdapter) {
|
||||
this->currentPage = INTERNAL_DISPLAY_DASHBOARD_PAGE;
|
||||
this->bindedInputCard = 0;
|
||||
this->bindedOutputCard = 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue