Skip to content

Commit 910f50c

Browse files
authored
Merge pull request #6 from brentru/readme-modification
fixing docs badge, adding link to guide, and removing redundant kwargs
2 parents 1bc6cae + 0662098 commit 910f50c

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

README.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ This driver depends on:
2323
* `Bus Device <https://github.com/adafruit/Adafruit_CircuitPython_BusDevice>`_
2424

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

2928
Installing from PyPI
3029
--------------------
@@ -54,7 +53,9 @@ To install in a virtual environment in your current project:
5453
Usage Example
5554
=============
5655

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

5960
Contributing
6061
============

examples/tinylora_simpletest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
led = digitalio.DigitalInOut(board.D13)
99
led.direction = digitalio.Direction.OUTPUT
1010

11-
spi = busio.SPI(board.SCK, MISO=board.MISO, MOSI=board.MOSI)
11+
spi = busio.SPI(board.SCK, board.MISO, board.MOSI)
1212

1313
# RFM9x Breakout Pinouts
1414
cs = digitalio.DigitalInOut(board.D5)

examples/tinylora_simpletest_si7021.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
sensor = adafruit_si7021.SI7021(i2c)
1717

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

2121
# RFM9x Breakout Pinouts
2222
cs = digitalio.DigitalInOut(board.D5)

0 commit comments

Comments
 (0)