DIYmall Yellow and Blue 0.96" Inch I2C IIC Serial OLED LCD LED Display Module for Arduino 51 MSP420 STIM32 SCR
Note:This is OLED with round hole, you can not change its I2C address.
Description:
Size: 0.96 inch
Resolution: 128X64
Color: Yellow and Blue
Viewing angle: greater than 160 degrees
Supported platforms: for arduino, 51 series, MSP430 series, STIM32 / 2, SCR chips
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:
1 X IIC OLED Module
code:
#include <Adafruit_ssd1306syp.h>
#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();
}
white 128X64 OLED LCD 0.96" I2C IIC SPI Seria