From 88ec54a4da77bed8a1bc6ff596fa5fd3ff60a299 Mon Sep 17 00:00:00 2001 From: Paul van Tilburg Date: Mon, 9 Jan 2012 23:41:13 +0100 Subject: [PATCH] Reverted the output of the I-commands change, they fall under G --- wordclock/wordclock.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wordclock/wordclock.ino b/wordclock/wordclock.ino index 70c67de..a202054 100644 --- a/wordclock/wordclock.ino +++ b/wordclock/wordclock.ino @@ -730,13 +730,13 @@ static int uart_thread(struct pt *pt) { case 'c': // get current value - Serial.print("I: c: "); + Serial.print("G: Ic: "); Serial.println(lightlevel_sample, DEC); break; case 'a': // get average - Serial.print("I: a: "); + Serial.print("G: Ia: "); Serial.println(lightlevel_avg, DEC); break;