diff --git a/ReadAnalog/src/main.cpp b/ReadAnalog/src/main.cpp index e53c47c..6430b18 100644 --- a/ReadAnalog/src/main.cpp +++ b/ReadAnalog/src/main.cpp @@ -7,13 +7,12 @@ int i, j; unsigned long currTime; // non-blocking timer void setup() { - Serial.begin(9600); + Serial.begin(19200); currTime = millis(); } void loop() { if (millis() - currTime >= WAIT_TIME) { // non-blocking time delay - // Serial.println(); Serial.print("["); for (i = 0; i < sizeof(pins)/2; i++) { Serial.print(analogRead(pins[i])); @@ -24,5 +23,4 @@ void loop() { Serial.println("]"); currTime = millis(); } - -} \ No newline at end of file +}