We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, the arduino SPI API has changed and these lines in all 3 examples no longer work
SPI.begin(); SPI.setBitOrder(MSBFIRST); //CPOL = 0, CPHA = 1 SPI.setDataMode(SPI_MODE1); // Selecting 1Mhz clock for SPI SPI.setClockDivider(SPI_CLOCK_DIV16);
They should be replaced with
SPI.beginTransaction(SPISettings(1000000,MSBFIRST,SPI_MODE1));
The text was updated successfully, but these errors were encountered:
joicetm
No branches or pull requests
Hi, the arduino SPI API has changed and these lines in all 3 examples no longer work
They should be replaced with
SPI.beginTransaction(SPISettings(1000000,MSBFIRST,SPI_MODE1));
The text was updated successfully, but these errors were encountered: