3/5/10pcs 0.96" 128X64 IIC Serial OLED LCD Display Module SSD1306 Blue for Arduino ESP32

3/5/10PCS 0.96 inch 128X64 I2C IIC SPI Serial OLED LCD Display Module SSD1306 LCD Screen Board for Arduino 51 MSP420 STIM32 SCR Blue

Description:
Size: 0.96
Resolution: 128X64
Color: Blue
Viewing angle: greater than 160 degrees
Supported platforms: for Arduino Raspberry Pi ESP32
Low power consumption: 0.04W during normal operation
Support wide voltage: 3.3V-5V DC
Working temperature: -30-80 degrees
Volume: 27MM * 27MM * 4.1MM
Driver IC: SSD1306
Communication: IIC, only two I / O ports
No font: The software takes word modulo
Backlight: OLED self light, no backlight

Interface:
VCC: 3.3-5V
GND: Ground
SCL: Serial Clock
SDA: Serial Data


Package Included:
3 X 0.96" OLED Display (Blue)
or
5 X 0.96" OLED Display (Blue)
or
10 X 0.96" OLED Display (Blue)

See more in the flyfuntech2022

See other LCD Display

Code:
#include
#define SDA_PIN 4
#define SCL_PIN 5
Adafruit_ssd1306syp display(SDA_PIN,SCL_PIN);
void setup()
{
delay(1000);
display.initialize();
}
void loop()
{
display.drawLine(0, 0, 127, 63,WHITE);
display.update();
delay(1000);
display.clear();
display.setTextSize(1);
display.setTextColor(WHITE);
display.setCursor(0,0);
display.println("Hello, world!");
display.setTextColor(BLACK, WHITE); // 'inverted' text
display.println(3.141592);
display.setTextSize(2);
display.setTextColor(WHITE);
display.print("0x"); display.println(0xDEADBEEF, HEX);
display.update();
delay(2000);
display.clear();
}

 

FAQ
Q:Does this need a pull-up resistor on the i2c lines from an arduino uno?
A: No need

 

Q: How to work with Nodemcu?
A: Here is the tutorial for you https://randomnerdtutorials.com/esp8266-0-96-inch-oled-display-with-arduino-ide/ Please remeber to change these 2 links as below:
#define OLED_RESET  -1 // Reset pin # (or -1 if sharing Arduino reset pin)
if(!display.begin(SSD1306_SWITCHCAPVCC, 0x3C)) { // Address 0x3D for 128x64

PushAuction