Add alternative SPI pin names (#24)

This commit is contained in:
Otto Winter 2018-09-27 05:26:28 +09:00 committed by GitHub
parent 74a3cc6d18
commit dc6b043216
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -6,9 +6,9 @@ SPI Bus
SPI is a very common high-speed protocol for a lot of devices. The SPI bus usually consists of 4 wires:
- **CLK**: Is used to tell the receiving device when to read data. All devices on the bus can
share this line.
share this line. Sometimes also called ``SCK``.
- **CS** (chip select): Is used to tell the receiving device when it should listen for data. Each device has
an individual CS line.
an individual CS line. Sometimes also called ``SS``.
- **MOSI** (also DIN): Is used to send data from the master (the ESP) to the receiving device. All devices on the bus can
share this line.
- **MISO** (also DOUT): Is used to receive data. All devices on the bus can