better examples in doc

This commit is contained in:
Karan Misra 2013-12-09 03:21:05 +05:30
parent b42cec847f
commit f51069beb0
1 changed files with 6 additions and 0 deletions

6
doc.go
View File

@ -3,6 +3,8 @@ Package rpi provides modules which will help gophers deal with various sensors.
Use the default i2c bus to read/write data:
import "github.com/kid0m4n/go-rpi/i2c"
...
value, err := i2c.ReadInt(0x1E, 0x03)
...
value := make([]byte, 6)
@ -12,12 +14,16 @@ Use the default i2c bus to read/write data:
Read data from the BMP085 sensor:
import "github.com/kid0m4n/go-rpi/sensor/bmp085"
...
temp, err := bmp085.Temperature()
...
altitude, err := bmp085.Altitude()
Find out the heading from the LSM303 magnetometer:
import "github.com/kid0m4n/go-rpi/sensor/lsm303"
...
heading, err := lsm303.Heading()
*/
package rpi