mirror of https://github.com/arendst/Tasmota.git
Merge branch 'zigbee_27_dev' of https://github.com/s-hadinger/Tasmota into zigbee_28_dev
This commit is contained in:
commit
da4e29a14b
|
@ -978,6 +978,7 @@ void CmndZbName(void) {
|
||||||
const char * friendlyName = zigbee_devices.getFriendlyName(shortaddr);
|
const char * friendlyName = zigbee_devices.getFriendlyName(shortaddr);
|
||||||
Response_P(PSTR("{\"0x%04X\":{\"" D_JSON_ZIGBEE_NAME "\":\"%s\"}}"), shortaddr, friendlyName ? friendlyName : "");
|
Response_P(PSTR("{\"0x%04X\":{\"" D_JSON_ZIGBEE_NAME "\":\"%s\"}}"), shortaddr, friendlyName ? friendlyName : "");
|
||||||
} else {
|
} else {
|
||||||
|
if (strlen(p) > 32) { p[32] = 0x00; } // truncate to 32 chars max
|
||||||
zigbee_devices.setFriendlyName(shortaddr, p);
|
zigbee_devices.setFriendlyName(shortaddr, p);
|
||||||
Response_P(PSTR("{\"0x%04X\":{\"" D_JSON_ZIGBEE_NAME "\":\"%s\"}}"), shortaddr, p);
|
Response_P(PSTR("{\"0x%04X\":{\"" D_JSON_ZIGBEE_NAME "\":\"%s\"}}"), shortaddr, p);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue