#include <Adafruit_SSD1306.h>
Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire);
void setup() {
display.begin(SSD1306_SWITCHCAPVCC, LCD_ADDRESS);
display.clearDisplay();
display.setTextSize(1); // Set text size to 1 (small font)
display.setTextColor(SSD1306_WHITE); // Set text color to white
display.setCursor(0, 0);
display.println("Water Tank");
display.display();
}
void loop() {
// put your main code here, to run repeatedly:
}