#include <avr/pgmspace.h> // memory
#include "SSD1306_minimal.h"
SSD1306_Mini oled; // Declare the OLED object
void setup() {
oled.init(0x3C); // Initialize display with address
oled.clear(); // Clears the display
hello();
}
void loop() {
}
void hello() {
oled.startScreen();
oled.clear();
oled.cursorTo(0, 0); // (0 - 7 rows)
oled.printString("Hello, World!");
for (int i = 1; i < 7; i++) {
oled.cursorTo(0, i); // (0 - 7 rows)
oled.printString(".");
}
oled.cursorTo(0, 7); // (0 - 7 rows)
oled.printString("01234567890123456");
}