added Learning Kit Circuit Sketch

This commit is contained in:
JP
2014-07-26 10:13:31 +10:00
parent b577e9e538
commit abacd6b7bc
14 changed files with 437 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#include <MicroView.h>
void setup() {
uView.begin(); // start MicroView
uView.clear(PAGE); // clear page
uView.print("HelloWorld"); // display HelloWorld
uView.display();
}
void loop () {}