Skip to content

Commit 1ae2fea

Browse files
committed
Corrected RMS voltage value for Develco EMIZB-132
1 parent d7fbebc commit 1ae2fea

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

de_web_plugin.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7130,8 +7130,9 @@ void DeRestPluginPrivate::updateSensorNode(const deCONZ::NodeEvent &event)
71307130
{
71317131
voltage += 50; voltage /= 100; // 0.01V -> V
71327132
}
7133-
else if (i->modelId() == QLatin1String("RICI01") || // LifeControl Smart Plug
7134-
i->modelId() == QLatin1String("outletv4")) // Samsung SmartThings IM6001-OTP
7133+
else if (i->modelId() == QLatin1String("RICI01") || // LifeControl Smart Plug
7134+
i->modelId() == QLatin1String("outletv4") || // Samsung SmartThings IM6001-OTP
7135+
i->modelId() == QLatin1String("EMIZB-13")) // Develco EMI
71357136
{
71367137
voltage /= 10; // 0.1V -> V
71377138
}

0 commit comments

Comments
 (0)