#include <GxEPD2_BW.h>
#include <Adafruit_GFX.h>

// Pin definitions
#define SCK  18
#define DIN  23
#define CS    5
#define RST   4
#define DC    2
#define BUSY  15

// Initialize the display
GxEPD2_BW<GxEPD2_213_B72, GxEPD2_213_B72::HEIGHT> display(GxEPD2_213_B72(CS, DC, RST, BUSY));

void setup() {
  // Start serial communication for debugging purposes
  Serial.begin(115200);
  Serial.println("Starting...");

  // Initialize the display
  display.init(115200);  // Add baud rate for SPI
  display.setRotation(1);  // Set rotation if needed, 0, 1, 2, 3

  // Clear the display buffer and print messages
  display.setFullWindow();
  display.firstPage();
  do {
    display.fillScreen(GxEPD_WHITE); // Clear display
    display.setCursor(20, 30);        // Set cursor position
    display.setTextColor(GxEPD_BLACK);// Set text color
    display.setTextSize(2);           // Set text size
    display.print("Hello!");          // Print text
  } while (display.nextPage());

  Serial.println("Done!");
}

void loop() {
  // Nothing to do here
}
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
epd1:BUSY
epd1:RST
epd1:DC
epd1:CS
epd1:CLK
epd1:DIN
epd1:VCC
epd1:GND