update spi, fix lcd error

This commit is contained in:
Erik Kettenburg
2016-02-12 19:09:37 -08:00
parent 2c40bcdd6f
commit 822a2e4f55
4 changed files with 6 additions and 8 deletions

View File

@@ -36,7 +36,7 @@ const int slaveSelectPin = 10;
void setup() {
// set the slaveSelectPin as an output:
pinMode (slaveSelectPin, OUTPUT);
pinMode(slaveSelectPin, OUTPUT);
// initialize SPI:
SPI.begin();
}