podcastparser icon indicating copy to clipboard operation
podcastparser copied to clipboard

Siemens M55 Display doesn't work properly

Open facc357 opened this issue 8 years ago • 0 comments

This is because the SPI clock (4 MHz default at Arduino Uno) is too fast. I have to set SPI clock speed to 1 MHz to get it working on M55 display. My solution: void setup() { SPI.setClockDivider(SPI_CLOCK_DIV16); lcd.init(); } This works for Arduino IDE 1.0.5. Maybe there is a better solution for new Arduino IDE versions.

facc357 avatar Jan 28 '17 12:01 facc357