minor text changes

This commit is contained in:
proddy
2020-06-26 13:04:22 +02:00
parent fdd3184590
commit f57f6b1095
2 changed files with 2 additions and 2 deletions

View File

@@ -868,7 +868,7 @@ void EMSESP::console_commands(Shell & shell, unsigned int context) {
uint8_t watch = emsesp::EMSESP::watch();
if (watch == WATCH_OFF) {
shell.printfln(F("Watch is off"));
shell.printfln(F("Watching telegrams is off"));
return;
}

View File

@@ -249,7 +249,7 @@ void TxService::loop() {
if ((uuid::get_uptime() - last_tx_check_) > TX_LOOP_WAIT) {
last_tx_check_ = uuid::get_uptime();
if (!tx_active() && (EMSbus::bus_connected())) {
LOG_ERROR(F("Tx is not active. Please check connection."));
LOG_ERROR(F("Tx is not active. Please check settings and the circuit connection."));
}
}
#endif