gobot.io/x/gobot@v1.16.0/drivers/spi/README.md (about)

     1  # SPI
     2  
     3  This package provides drivers for [spi](https://en.wikipedia.org/wiki/Serial_Peripheral_Interface_Bus) devices. 
     4  
     5  It currently must be used along with platforms such as the [Raspberry Pi](https://gobot.io/documentation/platforms/raspi) and [Beaglebone Black](https://gobot.io/documentation/platforms/beaglebone) that have adaptors that implement the needed SPI interface. 
     6  
     7  The SPI implementation uses the awesome [periph.io](https://periph.io/) which currently only works on Linux systems.
     8  
     9  ## Getting Started
    10  
    11  ## Installing
    12  ```
    13  go get -d -u gobot.io/x/gobot/...
    14  ```
    15  
    16  ## Hardware Support
    17  Gobot has a extensible system for connecting to hardware devices. 
    18  
    19  The following spi Devices are currently supported:
    20  
    21  - APA102 Programmable LEDs
    22  - MCP3002 Analog/Digital Converter
    23  - MCP3004 Analog/Digital Converter
    24  - MCP3008 Analog/Digital Converter
    25  - MCP3202 Analog/Digital Converter
    26  - MCP3204 Analog/Digital Converter
    27  - MCP3208 Analog/Digital Converter
    28  - MCP3304 Analog/Digital Converter
    29  - GoPiGo3 Robot
    30  
    31  Drivers wanted! :)
    32  
    33  The following spi Adaptors are currently supported:
    34  
    35  - Raspberry Pi
    36  
    37  Adaptors wanted too!