1
0
mirror of https://github.com/kidoman/embd synced 2024-12-22 12:50:19 +01:00
embd/samples/bh1750fvi.go

39 lines
552 B
Go
Raw Normal View History

2014-03-02 12:36:34 +05:30
// +build ignore
2013-12-17 20:37:58 +05:30
package main
import (
"flag"
"fmt"
2013-12-17 20:37:58 +05:30
"time"
2014-03-03 00:51:23 +05:30
"github.com/kidoman/embd"
2014-02-10 05:05:41 +05:30
"github.com/kidoman/embd/sensor/bh1750fvi"
_ "github.com/kidoman/embd/host/all"
2013-12-17 20:37:58 +05:30
)
func main() {
flag.Parse()
2014-03-03 00:51:23 +05:30
if err := embd.InitI2C(); err != nil {
panic(err)
}
2014-03-03 00:51:23 +05:30
defer embd.CloseI2C()
2014-03-03 00:51:23 +05:30
bus := embd.NewI2CBus(1)
2013-12-17 20:37:58 +05:30
sensor := bh1750fvi.New(bh1750fvi.High, bus)
defer sensor.Close()
2013-12-17 20:37:58 +05:30
for {
lighting, err := sensor.Lighting()
2013-12-17 20:37:58 +05:30
if err != nil {
2014-03-03 00:51:23 +05:30
panic(err)
2013-12-17 20:37:58 +05:30
}
fmt.Printf("Lighting is %v lx\n", lighting)
2013-12-17 20:37:58 +05:30
time.Sleep(500 * time.Millisecond)
}
}