Skip to content

Commit

Permalink
Merge pull request #23 from tomtastic/patch-1
Browse files Browse the repository at this point in the history
Extend registers retrieved to include High Power PA settings
  • Loading branch information
jgillula committed Nov 13, 2022
2 parents a132b90 + 41e8bdd commit 4956cb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RFM69/radio.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ def read_registers(self):
list: Register values
"""
results = []
for address in range(1, 0x50):
for address in range(1, 0x5D):
results.append([str(hex(address)), str(bin(self._readReg(address)))])
return results

Expand Down

0 comments on commit 4956cb2

Please sign in to comment.