Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ void setup()
Serial.println("OpenSegment Example Code");

SPI.begin(); //Start the SPI hardware
SPI.setClockDivider(SPI_CLOCK_DIV64); //Slow down the master a bit
SPI.beginTransaction(SPISettings(250000, MSBFIRST, SPI_MODE0)); // S7S max speed is 250kHz

//Send the reset command to the display - this forces the cursor to return to the beginning of the display
digitalWrite(csPin, LOW); //Drive the CS pin low to select OpenSegment
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ void setup()
Serial.println("OpenSegment Example Code");

SPI.begin(); //Start the SPI hardware
SPI.setClockDivider(SPI_CLOCK_DIV16); //Slow down the master a bit
SPI.beginTransaction(SPISettings(250000, MSBFIRST, SPI_MODE0)); // S7S max speed is 250kHz

//Send the reset command to the display - this forces the cursor to return to the beginning of the display
digitalWrite(csPin, LOW); //Drive the CS pin low to select OpenSegment
Expand Down