hybridgroup.gobot/drivers/spi
Ron Evans e9529e4c72 spi: remove unneeded type and cleanup GoDocs
Signed-off-by: Ron Evans <ron@hybridgroup.com>
2018-04-16 13:29:35 +02:00
..
README.md spi: remove unneeded code as suggested by @maruel 2018-04-16 09:56:17 +02:00
apa102.go spi: add optional params such as bus/chip to all current drivers 2018-04-12 12:25:39 +02: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 spi: switch to using periph.io for SPI interfaces 2018-04-12 12:25:39 +02:00
mcp3002.go spi: add optional params such as bus/chip to all current drivers 2018-04-12 12:25:39 +02:00
mcp3002_test.go spi: add MCP3002 A/D converter 2017-12-13 16:40:44 +01:00
mcp3004.go spi: add optional params such as bus/chip to all current drivers 2018-04-12 12:25:39 +02: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 optional params such as bus/chip to all current drivers 2018-04-12 12:25:39 +02: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 optional params such as bus/chip to all current drivers 2018-04-12 12:25:39 +02:00
mcp3202_test.go spi: Add MCP3202, MCP3204, MCP3208, and MCP3304 drivers 2017-12-13 20:08:31 +01:00
mcp3204.go spi: add optional params such as bus/chip to all current drivers 2018-04-12 12:25:39 +02:00
mcp3204_test.go spi: Add MCP3202, MCP3204, MCP3208, and MCP3304 drivers 2017-12-13 20:08:31 +01:00
mcp3208.go spi: add optional params such as bus/chip to all current drivers 2018-04-12 12:25:39 +02:00
mcp3208_test.go spi: Add MCP3202, MCP3204, MCP3208, and MCP3304 drivers 2017-12-13 20:08:31 +01:00
mcp3304.go spi: add optional params such as bus/chip to all current drivers 2018-04-12 12:25:39 +02:00
mcp3304_test.go spi: Add MCP3202, MCP3204, MCP3208, and MCP3304 drivers 2017-12-13 20:08:31 +01:00
spi.go spi: remove unneeded type and cleanup GoDocs 2018-04-16 13:29:35 +02:00
spi_config.go spi: add optional params such as bus/chip to all current drivers 2018-04-12 12:25:39 +02:00
spi_test.go spi: remove unneeded type and cleanup GoDocs 2018-04-16 13:29:35 +02:00
ssd1306_driver.go spi: remove unneeded type and cleanup GoDocs 2018-04-16 13:29:35 +02:00
ssd1306_driver_test.go added spi ssd1306 2018-04-12 12:25:39 +02:00

README.md

SPI

This package provides drivers for spi devices.

It currently must be used along with platforms such as the Raspberry Pi and Beaglebone Black that have adaptors that implement the needed SPI interface.

The SPI implementation uses the awesome periph.io which currently 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!