shtc3: Sensirion SHTC3 Relative Humidity / Temperature i2c sensor

This commit is contained in:
Olivier Fauchon
2021-12-27 00:51:46 +01:00
committed by Ron Evans
parent 121e8147f7
commit 025a66655f
5 changed files with 124 additions and 1 deletions
+30
View File
@@ -0,0 +1,30 @@
package main
import (
"fmt"
"machine"
"time"
"tinygo.org/x/drivers/shtc3"
)
func main() {
machine.I2C0.Configure(machine.I2CConfig{})
sensor := shtc3.New(machine.I2C0)
for {
sensor.WakeUp()
temp, humidity, _ := sensor.ReadTemperatureHumidity()
t := fmt.Sprintf("%.2f", float32(temp)/1000)
h := fmt.Sprintf("%.2f", float32(humidity)/100)
println("Temperature:", t, "°C")
println("Humidity", h, "%")
sensor.Sleep()
time.Sleep(2 * time.Second)
}
}