File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 55import board
66import adafruit_shtc3
77
8- i2c = board .I2C ()
8+ i2c = board .I2C () # uses board.SCL and board.SDA
99sht = adafruit_shtc3 .SHTC3 (i2c )
1010
1111while True :
You can’t perform that action at this time.
0 commit comments