From a97f0349d89b75a6f5336e4aa583c516ea684237 Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Mon, 27 Feb 2023 09:28:28 +0100 Subject: [PATCH] Add I2CDriver output to status 4 --- tasmota/tasmota_support/support_command.ino | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tasmota/tasmota_support/support_command.ino b/tasmota/tasmota_support/support_command.ino index 9bdf91b37..2186f9311 100644 --- a/tasmota/tasmota_support/support_command.ino +++ b/tasmota/tasmota_support/support_command.ino @@ -794,6 +794,8 @@ void CmndStatus(void) XsnsDriverState(); ResponseAppend_P(PSTR(",\"Sensors\":")); XsnsSensorState(0); + ResponseAppend_P(PSTR(",\"" D_CMND_I2CDRIVER "\":")); + I2cDriverState(); ResponseJsonEndEnd(); CmndStatusResponse(4); }