hybridgroup.gobot/drivers/i2c
Ron Evans 94207b4a2d Merge pull request #352 from schmidtw/dev
Add a driver for the sht3x chip.
2017-01-03 11:06:04 +01:00
..
LICENSE license: update license year to include 2017 2017-01-02 22:25:17 +01:00
README.md Merge pull request #352 from schmidtw/dev 2017-01-03 11:06:04 +01:00
adafruit_driver.go core: use canonical import domain of gobot.io for all code 2016-12-08 13:24:03 +01:00
adafruit_driver_test.go core: use canonical import domain of gobot.io for all code 2016-12-08 13:24:03 +01:00
blinkm_driver.go i2c: godocs and separation of testing concerns 2016-12-20 18:59:26 +01:00
blinkm_driver_test.go i2c: godocs and separation of testing concerns 2016-12-20 18:59:26 +01:00
bmp180_driver.go Remove the unused attributes 2016-12-30 11:31:08 -06:00
bmp180_driver_test.go Change the driver API 2016-12-30 11:17:49 -06:00
doc.go docs: correct I2C README link 2016-12-21 10:56:51 +01:00
grove_drivers.go i2c: godocs and separation of testing concerns 2016-12-20 18:59:26 +01:00
grove_drivers_test.go i2c: godocs and separation of testing concerns 2016-12-20 18:59:26 +01:00
helpers_test.go Undo unnecesary change 2016-12-29 15:44:48 -06:00
hmc6352_driver.go i2c: godocs and separation of testing concerns 2016-12-20 18:59:26 +01:00
hmc6352_driver_test.go i2c: godocs and separation of testing concerns 2016-12-20 18:59:26 +01:00
i2c.go core: use canonical import domain of gobot.io for all code 2016-12-08 13:24:03 +01:00
jhd1313m1_driver.go core: use canonical import domain of gobot.io for all code 2016-12-08 13:24:03 +01:00
l3gd20h_driver.go Use a default scale 2017-01-02 21:23:20 -06:00
l3gd20h_driver_test.go Use a default scale 2017-01-02 21:23:20 -06:00
lidarlite_driver.go i2c: godocs and separation of testing concerns 2016-12-20 18:59:26 +01:00
lidarlite_driver_test.go i2c: godocs and separation of testing concerns 2016-12-20 18:59:26 +01:00
mcp23017_driver.go core: use canonical import domain of gobot.io for all code 2016-12-08 13:24:03 +01:00
mcp23017_driver_test.go core: use canonical import domain of gobot.io for all code 2016-12-08 13:24:03 +01:00
mma7660_driver.go core: use canonical import domain of gobot.io for all code 2016-12-08 13:24:03 +01:00
mpl115a2_driver.go i2c: godocs and separation of testing concerns 2016-12-20 18:59:26 +01:00
mpl115a2_driver_test.go i2c: godocs and separation of testing concerns 2016-12-20 18:59:26 +01:00
mpu6050_driver.go i2c: godocs and separation of testing concerns 2016-12-20 18:59:26 +01:00
mpu6050_driver_test.go i2c: godocs and separation of testing concerns 2016-12-20 18:59:26 +01:00
sht3x_driver.go Add a driver for the sht3x chip. 2017-01-03 01:21:09 -08:00
sht3x_driver_test.go Fix the unit tests due to a changed function signature. 2017-01-03 01:49:34 -08:00
wiichuck_driver.go i2c: godocs and separation of testing concerns 2016-12-20 18:59:26 +01:00
wiichuck_driver_test.go i2c: godocs and separation of testing concerns 2016-12-20 18:59:26 +01:00

README.md

I2C

This package provides drivers for i2cdevices. It must be used along with an adaptor such as firmata that supports the needed interfaces for i2c devices.

Getting Started

Installing

go get -d -u gobot.io/x/gobot/... && go install gobot.io/x/gobot/platforms/i2c

Hardware Support

Gobot has a extensible system for connecting to hardware devices. The following i2c devices are currently supported:

  • Adafruit Motor Hat
  • BlinkM LED
  • BMP180 Barometric Pressure/Temperature/Altitude Sensor
  • Grove Digital Accelerometer
  • Grove RGB LCD
  • HMC6352 Compass
  • JHD1313M1 LCD Display w/RGB Backlight
  • LIDAR-Lite
  • L3GD20H 3-Axis Gyroscope
  • MCP23017 Port Expander
  • MMA7660 3-Axis Accelerometer
  • MPL115A2 Barometer
  • MPU6050 Accelerometer/Gyroscope
  • SHT3x-D Temperature/Humidity
  • Wii Nunchuck Controller

More drivers are coming soon...