hybridgroup.gobot/drivers/spi
deadprogram c10828baf9 spi: Add MCP3202, MCP3204, MCP3208, and MCP3304 drivers to README
Signed-off-by: deadprogram <ron@hybridgroup.com>
2017-12-13 20:10:22 +01:00
..
README.MD spi: Add MCP3202, MCP3204, MCP3208, and MCP3304 drivers to README 2017-12-13 20:10:22 +01:00
apa102.go apa102: adding initial support for APA102 LEDs, thanks to code sample from @rakyll 2017-12-13 14:12:30 +01:00
apa102_test.go apa102: adding initial support for APA102 LEDs, thanks to code sample from @rakyll 2017-12-13 14:12:30 +01:00
doc.go First cut of the GoPiGo3 driver, lacking grove peripherals. 2017-08-24 23:38:26 -06:00
mcp3002.go spi: Add MCP3202, MCP3204, MCP3208, and MCP3304 drivers 2017-12-13 20:08:31 +01:00
mcp3002_test.go spi: add MCP3002 A/D converter 2017-12-13 16:40:44 +01:00
mcp3004.go spi: Add MCP3202, MCP3204, MCP3208, and MCP3304 drivers 2017-12-13 20:08:31 +01:00
mcp3004_test.go spi: correct support for MCP3004/MCP3008 A/D converters 2017-12-13 15:40:38 +01:00
mcp3008.go spi: Add MCP3202, MCP3204, MCP3208, and MCP3304 drivers 2017-12-13 20:08:31 +01:00
mcp3008_test.go spi: correct support for MCP3004/MCP3008 A/D converters 2017-12-13 15:40:38 +01:00
mcp3202.go spi: Add MCP3202, MCP3204, MCP3208, and MCP3304 drivers 2017-12-13 20:08:31 +01:00
mcp3202_test.go spi: Add MCP3202, MCP3204, MCP3208, and MCP3304 drivers 2017-12-13 20:08:31 +01:00
mcp3204.go spi: Add MCP3202, MCP3204, MCP3208, and MCP3304 drivers 2017-12-13 20:08:31 +01:00
mcp3204_test.go spi: Add MCP3202, MCP3204, MCP3208, and MCP3304 drivers 2017-12-13 20:08:31 +01:00
mcp3208.go spi: Add MCP3202, MCP3204, MCP3208, and MCP3304 drivers 2017-12-13 20:08:31 +01:00
mcp3208_test.go spi: Add MCP3202, MCP3204, MCP3208, and MCP3304 drivers 2017-12-13 20:08:31 +01:00
mcp3304.go spi: Add MCP3202, MCP3204, MCP3208, and MCP3304 drivers 2017-12-13 20:08:31 +01:00
mcp3304_test.go spi: Add MCP3202, MCP3204, MCP3208, and MCP3304 drivers 2017-12-13 20:08:31 +01:00
spi.go up2: extract shared SPI init code into spi package 2017-12-13 13:16:50 +01:00
spi_config.go Remove address from spi code 2017-09-12 00:51:01 -06:00
spi_test.go apa102: adding initial support for APA102 LEDs, thanks to code sample from @rakyll 2017-12-13 14:12:30 +01:00

README.MD

SPI

This package provides drivers for spi devices. It currently must be used along with the raspberry pi adaptor that supports the needed interfaces for spi devices. This uses the experimental spi package which only works on linux systems.

Getting Started

Installing

go get -d -u gobot.io/x/gobot/...

Hardware Support

Gobot has a extensible system for connecting to hardware devices.

The following spi Devices are currently supported:

  • APA102 Programmable LEDs
  • MCP3002 Analog/Digital Converter
  • MCP3004 Analog/Digital Converter
  • MCP3008 Analog/Digital Converter
  • MCP3202 Analog/Digital Converter
  • MCP3204 Analog/Digital Converter
  • MCP3208 Analog/Digital Converter
  • MCP3304 Analog/Digital Converter
  • GoPiGo3 Robot

Drivers wanted! :)

The following spi Adaptors are currently supported:

  • Raspberry Pi

Adaptors wanted too!