mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
Add logging for some Nextion errors that didn't have any (#2957)
This commit is contained in:
parent
8ad06fb9ea
commit
f849d45bb6
1 changed files with 2 additions and 0 deletions
|
@ -329,6 +329,7 @@ void Nextion::process_nextion_commands_() {
|
||||||
|
|
||||||
break;
|
break;
|
||||||
case 0x02: // invalid Component ID or name was used
|
case 0x02: // invalid Component ID or name was used
|
||||||
|
ESP_LOGW(TAG, "Nextion reported component ID or name invalid!");
|
||||||
this->remove_from_q_();
|
this->remove_from_q_();
|
||||||
break;
|
break;
|
||||||
case 0x03: // invalid Page ID or name was used
|
case 0x03: // invalid Page ID or name was used
|
||||||
|
@ -387,6 +388,7 @@ void Nextion::process_nextion_commands_() {
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 0x1A: // variable name invalid
|
case 0x1A: // variable name invalid
|
||||||
|
ESP_LOGW(TAG, "Nextion reported variable name invalid!");
|
||||||
this->remove_from_q_();
|
this->remove_from_q_();
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue