Skip to content

Commit

Permalink
Merge 7a5d030 into a4125c6
Browse files Browse the repository at this point in the history
  • Loading branch information
schiermi committed Jan 17, 2021
2 parents a4125c6 + 7a5d030 commit cea7446
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zigpy_xbee/zigbee/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ async def startup(self, auto_form=False):
dev = zigpy.device.Device(self, self.ieee, self.nwk)
dev.status = zigpy.device.Status.ENDPOINTS_INIT
dev.add_endpoint(XBEE_ENDPOINT_ID)
self.listener_event("raw_device_initialized", dev)
xbee_dev = XBeeCoordinator(self, self.ieee, self.nwk, dev)
self.listener_event("raw_device_initialized", xbee_dev)
self.devices[dev.ieee] = xbee_dev

async def force_remove(self, dev):
Expand Down Expand Up @@ -381,7 +381,7 @@ class XBeeGroupResponse(zigpy.quirks.CustomCluster, Groups):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.node_desc = NodeDescriptor(
0x01, 0x40, 0x8E, 0x101E, 0x52, 0x00FF, 0x2C00, 0x00FF, 0x00
0x00, 0x40, 0x8E, 0x101E, 0x52, 0x00FF, 0x2C00, 0x00FF, 0x00
)

replacement = {
Expand Down

0 comments on commit cea7446

Please sign in to comment.