diff --git a/code/espurna/relay.ino b/code/espurna/relay.ino index c894e6d1..b9f845d7 100644 --- a/code/espurna/relay.ino +++ b/code/espurna/relay.ino @@ -802,7 +802,7 @@ void _relayInitCommands() { relayStatus(id, value == 1); } } - DEBUG_MSG_P(PSTR("Status: %s\n"), relayStatus(id) ? "true" : "false"); + DEBUG_MSG_P(PSTR("Status: %s\n"), _relays[id].target_status ? "true" : "false"); DEBUG_MSG_P(PSTR("+OK\n")); });