Total Pageviews

Showing posts with label oled. Show all posts
Showing posts with label oled. Show all posts

Sunday, September 23, 2018

NTP clock using OLED Wemos Lolin ESP32

   I buy an interesting ESP32 development board module because it has built-in OLED display drived with SSD1306 chip (is classc 0.96" OLED display).
  I combine 2 sketches to use NTP clock data (see https://en.wikipedia.org/wiki/Network_Time_Protocol for more info). This sketch is ESP32_OLED_SSD1306_NTP_0.ino who use ESP32-OLED0.96-ssd1306 and NTPtimeESP libraries.
   You can see how is clock displayed on OLED display while whatching NTP clock using OLED Wemis Lolin ESP32 movie.

Saturday, August 18, 2018

128x128 1.5" OLED display with SSD1327 controlled by ESP32

original article

   I received an interesting display for test (OLED technology, 128x128 resolutios, SSD1327 driver) for made to work with ESP32 development board.

   Default, connexion is for SPI, but you can change to i2c connexion, see in schematic from here.
   I search info and after few tests, I used with good results u8g2 library  and my config is
U8G2_SSD1327_MIDAS_128X128_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 12, /* cs=*/ 14, /* dc=*/ 27, /* reset=*/ 26);
   You can see 1.5” OLED display with ESP32 movie