File tree 2 files changed +7
-4
lines changed
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 16
16
17
17
**Hardware:**
18
18
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)
20
21
21
22
**Software and Dependencies:**
22
23
23
24
* Adafruit CircuitPython firmware for the supported boards:
24
25
https://circuitpython.org/downloads
25
26
27
+ * Adafruit's Bus Device library:
28
+ https://github.com/adafruit/Adafruit_CircuitPython_BusDevice
26
29
30
+ * Adafruit's Register library:
31
+ https://github.com/adafruit/Adafruit_CircuitPython_Register
27
32
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
30
33
"""
31
34
32
35
# imports
Original file line number Diff line number Diff line change 5
5
import board
6
6
import adafruit_shtc3
7
7
8
- i2c = board .I2C ()
8
+ i2c = board .I2C () # uses board.SCL and board.SDA
9
9
sht = adafruit_shtc3 .SHTC3 (i2c )
10
10
11
11
while True :
You can’t perform that action at this time.
0 commit comments