Once, twice in month we will send You info about new products, products on sale and news from Arduino and DIY world.
Universal OLED display with sharp and bright pixels. SPI interface
On stock: 396
How many | Discount |
Price per piece
with VAT, in PLN |
---|---|---|
1 | 17,00 | |
5+ | 8,00 % | 15,63 |
10+ | 12,00 % | 14,96 |
25+ | 16,00 % | 14,28 |
100+ | 20,00 % | 13,60 |
Quantity discounts does not sum with other discounts |
This is easy to use OLED display, 0.96” screen size, 128x64 resolution and SSD1306 driver. You can connect to it via SPI. Easy programming on Arduino. You can use Adafruit’s SSD1306 library. To make it easy example project can be downloaded from GitHub. It is PlatformIO project, that mean, it should be easy to compile.
SSD1306 is not 5V tolerant. When connecting to classic Arduino boards use logic level converter between OLED module and microcontroller. When connecting to ESP8266/32 converter is not needed.
ESP8266 connection example
ESP8266 | SSD1306 OLED |
---|---|
3V3 | Vcc |
GND | GND |
D7 | D1 |
D5 | D0 |
D1 | DC |
D8 | CS |
D3 | RES |
If You use standard Adafruit SSD1306 library display
object definition should be:
#define OLED_MOSI D7 //Connect to D1 on OLED
#define OLED_CLK D5 //Connect to D0 on OLED
#define OLED_DC D1 //Connect to DC on OLED
#define OLED_CS D8 //Connect to CS on OLED
#define OLED_RESET D3 //Connect to RES on OLED
Adafruit_SSD1306 display(128, 64, OLED_MOSI, OLED_CLK, OLED_DC, OLED_RESET, OLED_CS);
Once, twice in month we will send You info about new products, products on sale and news from Arduino and DIY world.