Skip to content

Commit

Permalink
Add broadcast placeholder (#16)
Browse files Browse the repository at this point in the history
Add broadcast placeholder so that we do not throw an exception.
  • Loading branch information
damarco authored Feb 20, 2019
1 parent 06d90ad commit 071e5dd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions zigpy_deconz/zigbee/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,3 +193,7 @@ def handle_tx_confirm(self, sequence, status):
LOGGER.warning("Unexpected transmit confirm for request id %s, Status: 0x%02x, %s", sequence, status, exc)
except asyncio.futures.InvalidStateError as exc:
LOGGER.debug("Invalid state on future - probably duplicate response: %s", exc)

async def broadcast(self, profile, cluster, src_ep, dst_ep, grpid, radius,
sequence, data, broadcast_address):
LOGGER.debug("Broadcast not implemented.")

0 comments on commit 071e5dd

Please sign in to comment.