ESP ArduinoEXP 보드에는 I2C 인터페이스의 SSD1306 OLED 모듈을 연결하여 디스플레이 할 수 있다.
SSD1306 OLED를 제어 하기위한 라이브러리로 Adafruit_SSD1306, Adafruit_GFX 를 많이 사용한다.
용량은 좀 크지만 간한히 사용할 수 있으니 일단 설치 해 보자
설치 후 예제를 적당히 수정하면 간단히 OLED에 텍스트를 표시 할 수 있다.
#include <SPI.h>
#include <Wire.h>
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>
#define SCREEN_WIDTH 128 // OLED display width, in pixels
#define SCREEN_HEIGHT 64 // OLED display height, in pixels
// Declaration for an SSD1306 display connected to I2C (SDA, SCL pins)
#define OLED_RESET -1 // Reset pin # (or -1 if sharing Arduino reset pin)
Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, OLED_RESET);
#define NUMFLAKES 10 // Number of snowflakes in the animation example
void setup()
{
Serial.begin(115200);
Serial.println(F("SSD1306 test"));
// SSD1306_SWITCHCAPVCC = generate display voltage from 3.3V internally
if(!display.begin(SSD1306_SWITCHCAPVCC, 0x3C))
{
Serial.println(F("SSD1306 allocation failed"));
for(;;); // Don't proceed, loop forever
}
// Clear the buffer
display.clearDisplay();
// Draw a single pixel in white
display.drawPixel(10, 10, WHITE);
display.clearDisplay();
display.setTextSize(1);
display.setTextColor(WHITE);
display.setCursor(0,0);
display.println("nexp.tistopry.com");
display.println(" ");
display.setTextColor(INVERSE);
display.setTextSize(2);
display.println("ESP8266");
display.println(" ");
display.println("SSD1306");
display.display();
}
void loop()
{
}
반응형