Arduino SPI slave mode library
  • C++ 100%
Find a file
2014-02-07 19:23:34 +01:00
SPI Examples have been added 2014-02-07 19:23:34 +01:00
README.md Update README.md 2014-02-07 01:33:46 +01:00

SPI-Slave

Arduino SPI slave mode library

  • Change the Arduino/libraries/SPI folder by the folder in this repository.

Function changes:

  1. SPI.begin(mode) --> mode: SPI_MASTER or SPI_SLAVE
  2. SPI.attachInterrupt(function) --> function is the SPI ISR. When a interrupt occurs it will be called. This function must take no parameters and return nothing.

Other functions act as the standard library.