mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 17:27:45 +01:00
Add Tuya message for no datapoints (#804)
See also https://github.com/esphome/feature-requests/issues/352#issuecomment-546579206
This commit is contained in:
parent
1bf01a9081
commit
e0ad5a9009
1 changed files with 3 additions and 0 deletions
|
@ -36,6 +36,9 @@ void Tuya::dump_config() {
|
||||||
else
|
else
|
||||||
ESP_LOGCONFIG(TAG, " Datapoint %d: unknown", info.id);
|
ESP_LOGCONFIG(TAG, " Datapoint %d: unknown", info.id);
|
||||||
}
|
}
|
||||||
|
if (this->datapoints_.empty()) {
|
||||||
|
ESP_LOGCONFIG(TAG, " Received no datapoints! Please make sure this is a supported Tuya device.");
|
||||||
|
}
|
||||||
this->check_uart_settings(9600);
|
this->check_uart_settings(9600);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue