Skip to content

Commit bc98be7

Browse files
Merge pull request #11 from jposada202020/master
adding_references
2 parents 4190290 + 57dc0c8 commit bc98be7

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

adafruit_shtc3.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,20 @@
1616
1717
**Hardware:**
1818
19-
* Adafruit's SHTC3 Temperature & Humidity Sensor: https://www.adafruit.com/product/4636
19+
* `Adafruit SHTC3 Temperature & Humidity Sensor
20+
<https://www.adafruit.com/product/4636>`_ (Product ID: 4636)
2021
2122
**Software and Dependencies:**
2223
2324
* Adafruit CircuitPython firmware for the supported boards:
2425
https://circuitpython.org/downloads
2526
27+
* Adafruit's Bus Device library:
28+
https://github.com/adafruit/Adafruit_CircuitPython_BusDevice
2629
30+
* Adafruit's Register library:
31+
https://github.com/adafruit/Adafruit_CircuitPython_Register
2732
28-
* Adafruit's Bus Device library: https://github.com/adafruit/Adafruit_CircuitPython_BusDevice
29-
* Adafruit's Register library: https://github.com/adafruit/Adafruit_CircuitPython_Register
3033
"""
3134

3235
# imports

examples/shtc3_simpletest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import board
66
import adafruit_shtc3
77

8-
i2c = board.I2C()
8+
i2c = board.I2C() # uses board.SCL and board.SDA
99
sht = adafruit_shtc3.SHTC3(i2c)
1010

1111
while True:

0 commit comments

Comments
 (0)