Browse Source

Fix power report for domoticz (#236)

fastled
Xose Pérez 7 years ago
parent
commit
e8d77efdc4
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      code/espurna/power.ino

+ 2
- 2
code/espurna/power.ino View File

@ -214,12 +214,12 @@ void _powerReport() {
#if DOMOTICZ_SUPPORT #if DOMOTICZ_SUPPORT
if (domoticzEnabled()) { if (domoticzEnabled()) {
char buffer[20]; char buffer[20];
snprintf_P(buffer, sizeof(buffer), PSTR("%d;%s"), power, buf_energy);
snprintf_P(buffer, sizeof(buffer), PSTR("%d;%s"), (int) power, buf_energy);
domoticzSend("dczPowIdx", 0, buffer); domoticzSend("dczPowIdx", 0, buffer);
domoticzSend("dczCurrentIdx", 0, buf_current); domoticzSend("dczCurrentIdx", 0, buf_current);
domoticzSend("dczEnergyIdx", 0, buf_energy); domoticzSend("dczEnergyIdx", 0, buf_energy);
#if POWER_HAS_ACTIVE #if POWER_HAS_ACTIVE
snprintf_P(buffer, sizeof(buffer), PSTR("%d"), _power_voltage);
snprintf_P(buffer, sizeof(buffer), PSTR("%d"), (int) _power_voltage);
domoticzSend("dczVoltIdx", 0, buffer); domoticzSend("dczVoltIdx", 0, buffer);
#endif #endif


Loading…
Cancel
Save