Skip to content

Commit

Permalink
Moved the example program to the right location so the IDE can find it.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Rose authored and Mark Rose committed Oct 18, 2014
1 parent 4cb4d9f commit 23efdb3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 52 deletions.
4 changes: 2 additions & 2 deletions examples/AnalogReadAll/AnalogReadAll.ino
Expand Up @@ -26,7 +26,7 @@ const int SCAN_COUNT = sizeof(scanOrder) / sizeof(scanOrder[0]);
// Sets the scan order to A0 through A5, in turn, and begins reading
// analog values.
void setup() {
Serial.begin(9600);
Serial.begin(38400);
scanner.setScanOrder(SCAN_COUNT, scanOrder);
scanner.beginScanning();
}
Expand All @@ -38,7 +38,7 @@ void loop() {
if (i > 0) {
Serial.print(" ");
}
Serial.print("v");
Serial.print("A");
Serial.print(i);
Serial.print("=");
Serial.print(scanner.getValue(scanOrder[i]));
Expand Down
50 changes: 0 additions & 50 deletions examples/analog_read_all.ino

This file was deleted.

0 comments on commit 23efdb3

Please sign in to comment.