Skip to content

Commit

Permalink
Add undocumented radius field
Browse files Browse the repository at this point in the history
  • Loading branch information
puddly committed Apr 12, 2024
1 parent 77dda77 commit 95e83bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions bellows/types/struct.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ class EmberApsFrame(EzspStruct):
groupId: basic.uint16_t
# The sequence number.
sequence: basic.uint8_t
radius: basic.uint8_t = StructField(optional=True)


class EmberBindingTableEntry(EzspStruct):
Expand Down
1 change: 1 addition & 0 deletions bellows/zigbee/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -673,6 +673,7 @@ def _handle_frame(
data=zigpy.types.SerializableBytes(message),
lqi=lqi,
rssi=rssi,
radius=aps_frame.radius,
)
)

Expand Down

0 comments on commit 95e83bb

Please sign in to comment.