#include <EPD.h>
// Define the pins used for the e-paper display
#define EPD_CS 10
#define EPD_DC 9
#define EPD_RST 8
#define EPD_BUSY 7
// Create an instance of the e-paper display object
EPD epd(EPD_CS, EPD_DC, EPD_RST, EPD_BUSY);
void setup() {
// Initialize the e-paper display
epd.begin();
}
void loop() {
// Clear the e-paper display
epd.clear();
// Draw the text "Arvind Patil 7020336035" at the center of the screen
epd.setTextColor(EPD_BLACK);
epd.setTextSize(2);
epd.setCursor((epd.width() - 16 * 14) / 2, (epd.height() - 16 * 2) / 2);
epd.print("Arvind Patil");
epd.setCursor((epd.width() - 16 * 10) / 2, (epd.height() - 16 * 2) / 2 + 20);
epd.print("7020336035");
// Update the e-paper display
epd.display();
// Wait for 10 seconds before clearing the display again
delay(10000);
}