Skip to content

Instantly share code, notes, and snippets.

@islandjoe
Created November 23, 2018 12:50
Show Gist options
  • Save islandjoe/5c971213887ac59baf27282eeec52db2 to your computer and use it in GitHub Desktop.
Save islandjoe/5c971213887ac59baf27282eeec52db2 to your computer and use it in GitHub Desktop.
Print "Hello world" in MicroView.
#include <MicroView.h>

void setup() {
	uView.begin();
	uView.clear(PAGE);
	
	uView.print("Hello world");
	
	uView..display()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment