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 1f1be7d commit 1467c12Copy full SHA for 1467c12
bellows/ezsp/v14/__init__.py
@@ -115,7 +115,7 @@ async def send_multicast(
115
status, sequence = await self.sendMulticast(
116
aps_frame=aps_frame,
117
hops=non_member_radius,
118
- broadcast_addr=aps_frame.groupId,
+ broadcast_addr=t.BroadcastAddress.ALL_ROUTERS_AND_COORDINATOR,
119
alias=0x0000,
120
sequence=aps_frame.sequence,
121
message_tag=message_tag,
bellows/ezsp/v14/commands.py
@@ -133,7 +133,7 @@ class GetTokenDataRsp(Struct):
133
{
134
"aps_frame": t.EmberApsFrame,
135
"hops": t.uint8_t,
136
- "broadcast_addr": t.NWK,
+ "broadcast_addr": t.BroadcastAddress,
137
"alias": t.uint16_t,
138
"sequence": t.uint8_t,
139
"message_tag": t.uint8_t,
0 commit comments