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 7a37317 commit cfde317Copy full SHA for cfde317
examples/si4713_simpletest.py
@@ -24,10 +24,10 @@
24
# If you hooked up the reset line you should specify that too. Make sure
25
# to pass in a DigitalInOut instance. You will need the reset pin with the
26
# Raspberry Pi, and probably other devices:
27
-reset = digitalio.DigitalInOut(board.D5)
+si_reset = digitalio.DigitalInOut(board.D5)
28
29
print('initializing si4713 instance')
30
-si4713 = adafruit_si4713.SI4713(i2c, reset=reset, timeout_s=0.5)
+si4713 = adafruit_si4713.SI4713(i2c, reset=si_reset, timeout_s=0.5)
31
print('done')
32
33
# Measure the noise level for the transmit frequency (this assumes automatic
0 commit comments