hybridgroup.gobot/examples/firmata_bme280.go

49 lines
810 B
Go

//go:build example
// +build example
//
// Do not build by default.
package main
import (
"fmt"
"os"
"time"
"gobot.io/x/gobot/v2"
"gobot.io/x/gobot/v2/drivers/i2c"
"gobot.io/x/gobot/v2/platforms/firmata"
)
func main() {
firmataAdaptor := firmata.NewAdaptor(os.Args[1])
bme280 := i2c.NewBME280Driver(firmataAdaptor)
work := func() {
gobot.Every(1*time.Second, func() {
t, _ := bme280.Temperature()
fmt.Println("Temperature", t)
p, _ := bme280.Pressure()
fmt.Println("Pressure", p)
a, _ := bme280.Altitude()
fmt.Println("Altitude", a)
h, _ := bme280.Humidity()
fmt.Println("Humidity", h)
})
}
robot := gobot.NewRobot("bme280bot",
[]gobot.Connection{firmataAdaptor},
[]gobot.Device{bme280},
work,
)
if err := robot.Start(); err != nil {
panic(err)
}
}