aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonald Delmar Davis <don@suspectdevices.com>2012-08-29 13:20:52 -0700
committerDonald Delmar Davis <don@suspectdevices.com>2012-08-29 13:20:52 -0700
commitb4c81bc00c3dc18fab5633dd2d491dae80734e71 (patch)
treea46113d03638a54eca21ee8fa398b97f1cf56235
parent1bc1c2f122b3ec2570c4dcc7991a313ff4be8a17 (diff)
minor docs.
-rw-r--r--sketches/trackdisplay1/trackdisplay1.pde12
1 files changed, 8 insertions, 4 deletions
diff --git a/sketches/trackdisplay1/trackdisplay1.pde b/sketches/trackdisplay1/trackdisplay1.pde
index 5e6fc57..0579733 100644
--- a/sketches/trackdisplay1/trackdisplay1.pde
+++ b/sketches/trackdisplay1/trackdisplay1.pde
@@ -1,6 +1,10 @@
-/*
-
-*/
+/*------------------------------------------------KitchenTrackDisplay
+ * this is a quick one. All it does is clear the screen on the
+ * serial lcd and then send all characters recieved by the usb port
+ * to the display. (currently a sparkfun serial lcd)
+ *
+ * (c) 2012 don@suspectdevices.com
+ ------------------------------------------------------------------*/
void setup() {
// Set up the built-in LED pin as an output:
@@ -17,4 +21,4 @@ void loop() {
ch=SerialUSB.read();
Serial3.print(ch);
}
-}
+} \ No newline at end of file