Skip to content

fixing docs badge, adding link to guide, and removing redundant kwargs #6

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

Merged
merged 2 commits into from
Dec 6, 2018
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
7 changes: 4 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ This driver depends on:
* `Bus Device <https://github.com/adafruit/Adafruit_CircuitPython_BusDevice>`_

Please ensure all dependencies are available on the CircuitPython filesystem.
This is easily achieved by downloading
`the Adafruit library and driver bundle <https://github.com/adafruit/Adafruit_CircuitPython_Bundle>`_.
This is easily achieved by downloading `the Adafruit library and driver bundle <https://github.com/adafruit/Adafruit_CircuitPython_Bundle>`_.

Installing from PyPI
--------------------
Expand Down Expand Up @@ -54,7 +53,9 @@ To install in a virtual environment in your current project:
Usage Example
=============

Usage example is described in the learn guide for this library.
Usage is described in the `learn guide for this library <https://learn.adafruit.com/using-lorawan-and-the-things-network-with-circuitpython>`_.



Contributing
============
Expand Down
2 changes: 1 addition & 1 deletion examples/tinylora_simpletest.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
led = digitalio.DigitalInOut(board.D13)
led.direction = digitalio.Direction.OUTPUT

spi = busio.SPI(board.SCK, MISO=board.MISO, MOSI=board.MOSI)
spi = busio.SPI(board.SCK, board.MISO, board.MOSI)

# RFM9x Breakout Pinouts
cs = digitalio.DigitalInOut(board.D5)
Expand Down
2 changes: 1 addition & 1 deletion examples/tinylora_simpletest_si7021.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
sensor = adafruit_si7021.SI7021(i2c)

# Create library object using our bus SPI port for radio
spi = busio.SPI(board.SCK, MISO=board.MISO, MOSI=board.MOSI)
spi = busio.SPI(board.SCK, board.MISO, board.MOSI)

# RFM9x Breakout Pinouts
cs = digitalio.DigitalInOut(board.D5)
Expand Down