Project #6: MicroView – Mk01
DonLuc1804Mk03b.ino
// ***** Don Luc ***** // Software Version Information // 1.01 // DonLuc1804Mk03 1.01 // MicroView #include <MicroView.h> void loop() { uView.setFontType(0); uView.setCursor(0,20); uView.print(" Don Luc "); uView.display(); delay(5000); uView.clear(PAGE); uView.setFontType(1); uView.setCursor(0,20); uView.print("Don Luc"); uView.display(); delay(5000); uView.clear(PAGE); }
setup.ino
void setup() { uView.begin(); // begin of MicroView uView.clear(ALL); // erase hardware memory inside the OLED controller uView.display(); // display the content in the buffer memory, by default it is the MicroView logo delay(1000); uView.clear(PAGE); // erase the memory buffer, when next uView.display() is called, the OLED will be cleared. }
MicroView
Project #6 – Mk01
Don Luc
Leave a Reply