mirror of
https://github.com/kidoman/embd
synced 2024-12-22 12:50:19 +01:00
898041c4ce
-Fixed bugs with i2c commands used for data acquisition
30 lines
464 B
Go
30 lines
464 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
"time"
|
|
|
|
"github.com/kid0m4n/go-rpi/i2c"
|
|
"github.com/kid0m4n/go-rpi/sensor/bh1750Fvi"
|
|
)
|
|
|
|
func main() {
|
|
bus, err := i2c.NewBus(1)
|
|
if err != nil {
|
|
log.Panic(err)
|
|
}
|
|
|
|
lightingSensor := bh1750Fvi.New(bh1750Fvi.High, bus)
|
|
defer lightingSensor.Close()
|
|
|
|
for {
|
|
lighting, err := lightingSensor.Lighting()
|
|
if err != nil {
|
|
log.Panic(err)
|
|
}
|
|
log.Printf("Lighting is %v lx", lighting)
|
|
|
|
time.Sleep(500 * time.Millisecond)
|
|
}
|
|
}
|