Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix spelling/style #54

Merged
merged 2 commits into from
May 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading