hybridgroup.gobot/drivers/spi
deadprogram 41a04f76d0 spi: correct support for MCP3004/MCP3008 A/D converters
Signed-off-by: deadprogram <ron@hybridgroup.com>
2017-12-13 15:40:38 +01:00
..
README.MD spi: correct support for MCP3004/MCP3008 A/D converters 2017-12-13 15:40:38 +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
mcp3004.go spi: correct support for MCP3004/MCP3008 A/D converters 2017-12-13 15:40:38 +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: correct support for MCP3004/MCP3008 A/D converters 2017-12-13 15:40:38 +01:00
mcp3008_test.go spi: correct support for MCP3004/MCP3008 A/D converters 2017-12-13 15:40:38 +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
  • MCP3004 Analog/Digital Converter
  • MCP3008 Analog/Digital Converter
  • GoPiGo3 Robot

Drivers wanted! :)

The following spi Adaptors are currently supported:

  • Raspberry Pi

Adaptors wanted too!