Fix Nuvo Grand Concerto Detection (#12613)

Signed-off-by: Brian OConnell <broconne@gmail.com>
This commit is contained in:
boc-tothefuture 2022-04-24 03:14:24 -04:00 committed by GitHub
parent dfd4beac82
commit 433ab4dcd4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -96,7 +96,7 @@ public class NuvoHandler extends BaseThingHandler implements NuvoMessageEventLis
private static final String SOURCE = "SOURCE";
private static final String CHANNEL_DELIMIT = "#";
private static final String UNDEF = "UNDEF";
private static final String GC_STR = "NV-IG8";
private static final String GC_STR = "NV-I8G";
private static final int MAX_ZONES = 20;
private static final int MAX_SRC = 6;
@ -471,8 +471,11 @@ public class NuvoHandler extends BaseThingHandler implements NuvoMessageEventLis
this.versionString = updateData;
// Determine if we are a Grand Concerto or not
if (this.versionString.contains(GC_STR)) {
logger.debug("Grand Concerto detected");
this.isGConcerto = true;
connector.setEssentia(false);
} else {
logger.debug("Grand Concerto not detected");
}
break;
case TYPE_PING: