1
0
mirror of https://github.com/kidoman/embd synced 2024-12-22 21:00:05 +01:00
embd/doc.go

30 lines
657 B
Go
Raw Normal View History

2013-12-09 02:49:39 +05:30
/*
Package rpi provides modules which will help gophers deal with various sensors.
Use the default i2c bus to read/write data:
2013-12-09 03:21:05 +05:30
import "github.com/kid0m4n/go-rpi/i2c"
...
2013-12-09 02:49:39 +05:30
value, err := i2c.ReadInt(0x1E, 0x03)
...
value := make([]byte, 6)
err := i2c.ReadFromReg(0x77, 0xF6, value)
...
err := i2c.WriteToReg(0x1E, 0x02, 0x00)
Read data from the BMP085 sensor:
2013-12-09 03:21:05 +05:30
import "github.com/kid0m4n/go-rpi/sensor/bmp085"
...
2013-12-09 02:49:39 +05:30
temp, err := bmp085.Temperature()
...
altitude, err := bmp085.Altitude()
Find out the heading from the LSM303 magnetometer:
2013-12-09 03:21:05 +05:30
import "github.com/kid0m4n/go-rpi/sensor/lsm303"
...
2013-12-09 02:49:39 +05:30
heading, err := lsm303.Heading()
*/
2013-12-07 23:11:06 +05:30
package rpi