We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7971ca commit 78d4bb3Copy full SHA for 78d4bb3
libraries/Zigbee/src/ZigbeeEP.h
@@ -105,6 +105,11 @@ class ZigbeeEP {
105
106
virtual void zbIASZoneStatusChangeNotification(const esp_zb_zcl_ias_zone_status_change_notification_message_t *message) {};
107
108
+ virtual void addBoundDevice(zb_device_params_t *device) {
109
+ _bound_devices.push_back(device);
110
+ _is_bound = true;
111
+ }
112
+
113
void onIdentify(void (*callback)(uint16_t)) {
114
_on_identify = callback;
115
}
@@ -125,10 +130,6 @@ class ZigbeeEP {
125
130
SemaphoreHandle_t lock;
126
131
zb_power_source_t _power_source;
127
132
128
- void addBoundDevice(zb_device_params_t *device) {
129
- _bound_devices.push_back(device);
- _is_bound = true;
- }
133
friend class ZigbeeCore;
134
};
135
0 commit comments