This commit is contained in:
Adrian Scillato 2019-12-16 14:37:18 -03:00 committed by GitHub
parent aae86a6718
commit c1bb875abd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -366,7 +366,7 @@ void HueLightStatus1(uint8_t device, String *response)
bool HueActive(uint8_t device) { bool HueActive(uint8_t device) {
if (device > MAX_FRIENDLYNAMES) { device = MAX_FRIENDLYNAMES; } if (device > MAX_FRIENDLYNAMES) { device = MAX_FRIENDLYNAMES; }
// return '$' != Settings.friendlyname[device-1][0]; // return '$' != Settings.friendlyname[device-1][0];
return '$' != *SettingsText(SET_FRIENDLYNAME1 +device -1]; return '$' != *SettingsText(SET_FRIENDLYNAME1 +device -1);
} }
void HueLightStatus2(uint8_t device, String *response) void HueLightStatus2(uint8_t device, String *response)