1
0
mirror of https://github.com/kidoman/embd synced 2024-06-02 00:58:06 +02:00
embd/samples/bh1750fvi.go
2014-03-03 00:51:23 +05:30

34 lines
488 B
Go

// +build ignore
package main
import (
"log"
"time"
"github.com/kidoman/embd"
"github.com/kidoman/embd/sensor/bh1750fvi"
)
func main() {
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)
}
log.Printf("Lighting is %v lx", lighting)
time.Sleep(500 * time.Millisecond)
}
}