//LIBRERIAS
//lcd
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>
#include <SPI.h>
#include <Wire.h>
//-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
//Define las dimenciones del lcd
#define SCREEN_WIDTH 128 // OLED display width, in pixels
#define SCREEN_HEIGHT 64 // OLED display height, in pixels
//Define comportamientos del lcd
#define OLED_RESET-1 // Reset pin # (or -1 if sharing Arduino reset pin)
#define SCREEN_ADDRESS 0x3C ///< See datasheet for Address; 0x3D for 128x64, 0x3C for 128x64
//Constantes del lcd
const uint8_t ancho = 128;
const uint8_t alto = 64;
const uint8_t direccion = 0X3C;
const int8_t oled_reset = -1;
Adafruit_SSD1306 oled(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, OLED_RESET);
//-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
void setup() {
Serial.begin(115000);
//Iniciar LCD
Wire.begin();
oled.begin(SSD1306_SWITCHCAPVCC, direccion); //Genera internamente el voltaje de 3.3v
oled.clearDisplay();
oled.setTextColor(WHITE);
//Limpiar el buffer
oled.clearDisplay();
oled.display();
}
//-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
void loop() {
oled.setCursor(1,1);
oled. setTextSize(1);
oled.print("HOLA MUNDO !!!");
oled.display();
delay(1000);
oled.clearDisplay();
delay(2000);
}
esp:0
esp:2
esp:4
esp:5
esp:12
esp:13
esp:14
esp:15
esp:16
esp:17
esp:18
esp:19
esp:21
esp:22
esp:23
esp:25
esp:26
esp:27
esp:32
esp:33
esp:34
esp:35
esp:3V3
esp:EN
esp:VP
esp:VN
esp:GND.1
esp:D2
esp:D3
esp:CMD
esp:5V
esp:GND.2
esp:TX
esp:RX
esp:GND.3
esp:D1
esp:D0
esp:CLK
oled1:GND
oled1:VCC
oled1:SCL
oled1:SDA