Skip to content

Commit

Permalink
Prevent wrongly showing deCONZ Upgrade firmware page for ConBee II
Browse files Browse the repository at this point in the history
  • Loading branch information
manup committed Apr 21, 2019
1 parent d2c33bd commit 6034bad
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion firmware_update.cpp
Expand Up @@ -412,7 +412,11 @@ void DeRestPluginPrivate::queryFirmwareVersion()
{
// if even after some time no firmware was detected
// ASSUME that a device is present and reachable but might not have firmware installed
if (getUptime() >= FW_WAIT_UPDATE_READY)
if (gwDeviceName == QLatin1String("ConBee II"))
{
// ignore
}
else if (getUptime() >= FW_WAIT_UPDATE_READY)
{
QString str;
str.sprintf("0x%08x", GW_MIN_AVR_FW_VERSION);
Expand Down

0 comments on commit 6034bad

Please sign in to comment.