Skip to content

Commit cfde317

Browse files
author
Brennen Bearnes
committed
simple test: reset -> si_reset
1 parent 7a37317 commit cfde317

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/si4713_simpletest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424
# If you hooked up the reset line you should specify that too. Make sure
2525
# to pass in a DigitalInOut instance. You will need the reset pin with the
2626
# Raspberry Pi, and probably other devices:
27-
reset = digitalio.DigitalInOut(board.D5)
27+
si_reset = digitalio.DigitalInOut(board.D5)
2828

2929
print('initializing si4713 instance')
30-
si4713 = adafruit_si4713.SI4713(i2c, reset=reset, timeout_s=0.5)
30+
si4713 = adafruit_si4713.SI4713(i2c, reset=si_reset, timeout_s=0.5)
3131
print('done')
3232

3333
# Measure the noise level for the transmit frequency (this assumes automatic

0 commit comments

Comments
 (0)