Update nano_c_mk1.ino

This commit is contained in:
Eric Yu 2023-01-31 01:22:55 -08:00 committed by GitHub
parent 6394e2c073
commit 426e54507a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#include <Adafruit_ADS1X15.h> #include <Adafruit_ADS1X15.h> // https://github.com/adafruit/Adafruit_ADS1X15
#define WAIT_TIME 1000UL // default wait time each value read #define WAIT_TIME 1000UL // default wait time each value read
#define ADS_MAX 4 // # of analog input pins of an ADS1115 #define ADS_MAX 4 // # of analog input pins of an ADS1115
@ -29,4 +29,4 @@ void loop() {
Serial.println("]"); Serial.println("]");
currTime = millis(); currTime = millis();
} }
} }