1
0
mirror of https://github.com/kidoman/embd synced 2024-06-01 08:38:05 +02:00
embd/samples/bh1750fvi.go
2016-02-05 22:16:51 -08:00

39 lines
552 B
Go

// +build ignore
package main
import (
"flag"
"fmt"
"time"
"github.com/zlowred/embd"
"github.com/zlowred/embd/sensor/bh1750fvi"
_ "github.com/zlowred/embd/host/all"
)
func main() {
flag.Parse()
if err := embd.InitI2C(); err != nil {
panic(err)
}
defer embd.CloseI2C()
bus := embd.NewI2CBus(1)
sensor := bh1750fvi.New(bh1750fvi.High, bus)
defer sensor.Close()
for {
lighting, err := sensor.Lighting()
if err != nil {
panic(err)
}
fmt.Printf("Lighting is %v lx\n", lighting)
time.Sleep(500 * time.Millisecond)
}
}