#include <Wire.h>
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>
#define ANCHO_PANTALLA 128 // Ancho de la pantalla OLED
#define ALTO_PANTALLA 64 // Alto de la pantalla OLED
#define OLED_RESET -1 // Pin reset incluido en algunos modelos de pantallas (-1 si no disponemos de pulsador).
#define DIRECCION_PANTALLA 0x3C //Dirección de comunicacion: 0x3D para 128x64, 0x3C para 128x32
Adafruit_SSD1306 display(ANCHO_PANTALLA, ALTO_PANTALLA, &Wire, OLED_RESET);
#define LOGO_WIDTH 84
#define LOGO_HEIGHT 52
const unsigned char PROGMEM logo[] = {
0x00, 0x03, 0x80, 0x00, 0x07, 0xe0, 0x78, 0x0f, 0xc1, 0xff, 0xf0, 0x00, 0x3f, 0xf8, 0x00, 0x0f,
0xe0, 0x7c, 0x3f, 0xe3, 0xff, 0xf0, 0x00, 0xf0, 0x1f, 0x00, 0x0f, 0xf0, 0x7c, 0x7f, 0xf3, 0xff,
0xf0, 0x03, 0x80, 0x03, 0x80, 0x0f, 0xf0, 0x7c, 0x7f, 0xfb, 0xff, 0xf0, 0x07, 0x01, 0xc0, 0xc0,
0x0f, 0xf0, 0x7c, 0xfc, 0xf8, 0x3f, 0x00, 0x0e, 0x01, 0xf0, 0x60, 0x0f, 0xf0, 0x7c, 0xf8, 0xf8,
0x1f, 0x00, 0x18, 0x01, 0xfc, 0x30, 0x0f, 0xf0, 0x7c, 0xf8, 0x78, 0x1f, 0x00, 0x18, 0x00, 0x3e,
0x18, 0x1f, 0xf0, 0x7c, 0xf8, 0x78, 0x1f, 0x00, 0x30, 0x00, 0x0f, 0x18, 0x1f, 0xf0, 0x7c, 0xf8,
0x78, 0x1f, 0x00, 0x20, 0x03, 0x87, 0x8c, 0x1e, 0xf8, 0x7c, 0xf8, 0x78, 0x1f, 0x00, 0x60, 0x03,
0xe3, 0x84, 0x1e, 0xf8, 0x7c, 0xf8, 0x78, 0x1f, 0x00, 0x63, 0xe3, 0xf1, 0xc6, 0x1e, 0xf8, 0x7c,
0xf8, 0x78, 0x1f, 0x00, 0x43, 0xf8, 0xf9, 0xc6, 0x1e, 0xf8, 0x7c, 0xf8, 0x78, 0x1f, 0x00, 0xc7,
0xfe, 0x3c, 0xe2, 0x3e, 0x78, 0x7c, 0xf8, 0x78, 0x1f, 0x00, 0xc7, 0xff, 0x1c, 0xe2, 0x3e, 0x78,
0x7c, 0xf8, 0x78, 0x1f, 0x00, 0xc7, 0xff, 0x9c, 0xe3, 0x3c, 0x78, 0x7c, 0xf8, 0x78, 0x1f, 0x00,
0xc7, 0xff, 0x9c, 0xe3, 0x3c, 0x7c, 0x7c, 0xf8, 0x78, 0x1f, 0x00, 0xc7, 0xff, 0xdc, 0xe3, 0x3c,
0x7c, 0x7c, 0xf8, 0x78, 0x1f, 0x00, 0xc3, 0xf7, 0xdc, 0xe3, 0x3c, 0x7c, 0x7c, 0xf8, 0x78, 0x1f,
0x00, 0xc3, 0xfb, 0xcc, 0xe2, 0x3f, 0xfc, 0x7c, 0xf8, 0x78, 0x1f, 0x00, 0xc3, 0xf9, 0xe0, 0xc2,
0x7f, 0xfc, 0x7c, 0xf8, 0x78, 0x1f, 0x00, 0x41, 0xfd, 0xe0, 0x06, 0x7f, 0xfc, 0x7c, 0xf8, 0x78,
0x1f, 0x00, 0x61, 0xfc, 0xe0, 0x06, 0x7f, 0xfc, 0x7c, 0xf8, 0x78, 0x1f, 0x00, 0x60, 0xfe, 0x60,
0x04, 0x7f, 0xfe, 0x7c, 0xf8, 0xf8, 0x1f, 0x00, 0x20, 0x7e, 0x40, 0x0c, 0x78, 0x3e, 0x7c, 0xfc,
0xf8, 0x1f, 0x00, 0x30, 0x3f, 0x00, 0x18, 0x78, 0x3e, 0x7c, 0x7f, 0xf8, 0x1f, 0x00, 0x18, 0x0f,
0x00, 0x18, 0x78, 0x3e, 0x7c, 0x7f, 0xf0, 0x1f, 0x00, 0x18, 0x00, 0x00, 0x30, 0xf8, 0x1e, 0x7c,
0x3f, 0xe0, 0x1f, 0x00, 0x0e, 0x7e, 0x00, 0x00, 0xf0, 0x1e, 0x78, 0x1f, 0xc0, 0x1e, 0x00, 0x07,
0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xff, 0xc2, 0x00, 0x00, 0x00,
0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, 0xff, 0xc6, 0x00, 0x04, 0x24, 0x00, 0x01, 0x80, 0x00, 0x00,
0x00, 0xfe, 0x04, 0xf9, 0xbe, 0x25, 0xbe, 0x61, 0x19, 0x9f, 0x90, 0x00, 0x7e, 0x06, 0xfc, 0xe4,
0x3e, 0x6d, 0xf1, 0xb7, 0x75, 0xf0, 0x00, 0x3f, 0x83, 0x87, 0xe4, 0x26, 0x69, 0xe1, 0x37, 0xe7,
0x60, 0x00, 0x0f, 0x87, 0x87, 0xe4, 0x27, 0xe9, 0xe1, 0xf7, 0x87, 0x60, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
};
void setup() {
Serial.begin(9600);
if(!display.begin(SSD1306_SWITCHCAPVCC, DIRECCION_PANTALLA)) {
Serial.println(F("Fallo en la asignacion de SSD1306"));
}
display.clearDisplay();
display.setTextSize(1);
display.setTextColor(WHITE);
display.setCursor(0,0);
display.println("09/06/2024 4:44 p.m.");
display.println(" ");
display.display();
display.drawLine(0, 10, 110, 10, WHITE);
display.display();
display.drawBitmap( (display.width() - LOGO_WIDTH ) / 2,((display.height()- LOGO_HEIGHT) / 2 )+7, logo, LOGO_WIDTH, LOGO_HEIGHT, WHITE);
display.display();
}
void loop() {
}