Skip to content

Commit

Permalink
Merge pull request #54 from vladak/spelling_1
Browse files Browse the repository at this point in the history
fix spelling/style
  • Loading branch information
dhalbert authored May 8, 2024
2 parents cb78e6d + 3187852 commit 5e050c4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ To set it to 1000000 use :
.. code-block:: python
# Initialze RFM radio
rfm9x = adafruit_rfm9x.RFM9x(spi, CS, RESET, RADIO_FREQ_MHZ,baudrate=1000000)
rfm9x = adafruit_rfm9x.RFM9x(spi, CS, RESET, RADIO_FREQ_MHZ, baudrate=1000000)
Documentation
Expand Down
4 changes: 2 additions & 2 deletions adafruit_rfm69.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ class RFM69:
function to see an example of this--advanced users only! Advanced RadioHead features like
address/node specific packets or "reliable datagram" delivery are supported however due to the
limitations noted, "reliable datagram" is still subject to missed packets but with it, the
sender is notified if a packe has potentially been missed.
sender is notified if a packet has potentially been missed.
"""

# Global buffer for SPI commands.
Expand Down Expand Up @@ -702,7 +702,7 @@ def tx_power(self, val: float):
@property
def rssi(self) -> float:
"""The received strength indicator (in dBm).
May be inaccuate if not read immediatey. last_rssi contains the value read immediately
May be inaccurate if not read immediately. last_rssi contains the value read immediately
receipt of the last packet.
"""
# Read RSSI register and convert to value using formula in datasheet.
Expand Down

0 comments on commit 5e050c4

Please sign in to comment.