Skip to content

Commit 0763c2a

Browse files
authored
feat(zigbee_ep): reverting back read data type
1 parent b6cb584 commit 0763c2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libraries/Zigbee/src/ZigbeeEP.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,8 @@ class ZigbeeEP {
142142
}
143143

144144
private:
145-
char _read_manufacturer[ZB_MAX_NAME_LENGTH + 1]; // + 1 for the extra '\0'
146-
char _read_model[ZB_MAX_NAME_LENGTH + 1]; // + 1 for the extra '\0'
145+
char *_read_manufacturer;
146+
char *_read_model;
147147
void (*_on_identify)(uint16_t time);
148148
time_t _read_time;
149149
int32_t _read_timezone;

0 commit comments

Comments
 (0)