Info |
---|
This section refers to the following sample application(s):
|
Table of Contents
Serial Peripheral Interface Bus (SPI) is a digital communication bus commonly used for interconnecting chips on a printed circuit board.
...
- The master lowers the
CS
line, indicating a transaction is starting - The master starts outputting a clock signal (a "square wave") on the
CLK
line - At each rising edge of the
CLK
line:- The master samples the
MISO
line. If it's high, that's a1
, if it's low, a0
. - The slave samples the
MOSI
line. If it's high, that's a1
, if it's low, a0
.
- The master samples the
- The transaction goes on until the master stops sending a
CLK
signal, and raises theCS
line.
SPI on
Include Page | ||||
---|---|---|---|---|
|
The libraries provided with the
Include Page | ||||
---|---|---|---|---|
|
...