We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21b58d8 commit 0cd3113Copy full SHA for 0cd3113
examples/simpletest.py
@@ -13,9 +13,12 @@
13
RADIO_FREQ_MHZ = 915.0 # Frequency of the radio in Mhz. Must match your
14
# module! Can be a value like 915.0, 433.0, etc.
15
16
-# Define pins connected to the chip.
+# Define pins connected to the chip, use these if wiring up the breakout according to the guide:
17
CS = digitalio.DigitalInOut(board.D5)
18
RESET = digitalio.DigitalInOut(board.D6)
19
+# Or uncomment and instead use these if using a Feather M0 RFM69 board and the appropriate CircuitPython build:
20
+#CS = digitalio.DigitalInOut(board.RFM69_CS)
21
+#RESET = digitalio.DigitalInOut(board.RFM69_RESET)
22
23
# Initialize SPI bus.
24
spi = busio.SPI(board.SCK, MOSI=board.MOSI, MISO=board.MISO)
0 commit comments