mirror of
https://github.com/kidoman/embd
synced 2024-10-31 23:38:44 +01:00
30 lines
652 B
Go
30 lines
652 B
Go
/*
|
|
Package rpi provides modules which will help gophers deal with various sensors.
|
|
|
|
Use the default i2c bus to read/write data:
|
|
|
|
import "github.com/kidoman/embd/i2c"
|
|
...
|
|
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:
|
|
|
|
import "github.com/kidoman/embd/sensor/bmp085"
|
|
...
|
|
temp, err := bmp085.Temperature()
|
|
...
|
|
altitude, err := bmp085.Altitude()
|
|
|
|
Find out the heading from the LSM303 magnetometer:
|
|
|
|
import "github.com/kidoman/embd/sensor/lsm303"
|
|
...
|
|
heading, err := lsm303.Heading()
|
|
*/
|
|
package embd
|