OLED SPI .. nothing happens
Posted: Thu Mar 29, 2018 8:17 am
Hi everyone
Just starting out with the NodeMCU board, and trying to use the 1.3" OLED display, but I'm, having trouble with getting it to work.
I've downloaded the esp8266-oled-ssd1306 library (for Arduino) and try to use the examples with no luck. I use the following connections and initialize the display using the SSD1306Spi function:
// D5 -> CLK
// D7 -> MOSI (DOUT)
// D0 -> RES
// D2 -> DC
// D8 -> CS
SSD1306Spi display(D0, D2, D8);
.. but nothing happens on the display. The loop in the code runs as it should, as I've added a LED routine to make sure that the code actually gets running.
A hint on what to do would be great.
Just starting out with the NodeMCU board, and trying to use the 1.3" OLED display, but I'm, having trouble with getting it to work.
I've downloaded the esp8266-oled-ssd1306 library (for Arduino) and try to use the examples with no luck. I use the following connections and initialize the display using the SSD1306Spi function:
// D5 -> CLK
// D7 -> MOSI (DOUT)
// D0 -> RES
// D2 -> DC
// D8 -> CS
SSD1306Spi display(D0, D2, D8);
.. but nothing happens on the display. The loop in the code runs as it should, as I've added a LED routine to make sure that the code actually gets running.
A hint on what to do would be great.