Skip to content

Commit 016e47c

Browse files
committed
Changed logging interval to 15 in all examples
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
1 parent 8300395 commit 016e47c

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

examples/DRWI_2G/DRWI_2G.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ const char* sketchName = "DRWI_CitSci.ino";
5454
// Logger ID, also becomes the prefix for the name of the data file on SD card
5555
const char* LoggerID = "XXXXX";
5656
// How frequently (in minutes) to log data
57-
const uint8_t loggingInterval = 5;
57+
const uint8_t loggingInterval = 15;
5858
// Your logger's timezone.
5959
const int8_t timeZone = -5; // Eastern Standard Time
6060
// NOTE: Daylight savings time will not be applied! Please use standard time!

examples/DRWI_DigiLTE/DRWI_DigiLTE.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ const char* sketchName = "DRWI_DigiLTE.ino";
5454
// Logger ID, also becomes the prefix for the name of the data file on SD card
5555
const char* LoggerID = "XXXXX";
5656
// How frequently (in minutes) to log data
57-
const uint8_t loggingInterval = 5;
57+
const uint8_t loggingInterval = 15;
5858
// Your logger's timezone.
5959
const int8_t timeZone = -5; // Eastern Standard Time
6060
// NOTE: Daylight savings time will not be applied! Please use standard time!

examples/DRWI_Mayfly1/DRWI_Mayfly1.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const char* sketchName = "DRWI_Mayfly1.ino";
6060
// Logger ID, also becomes the prefix for the name of the data file on SD card
6161
const char* LoggerID = "XXXXX";
6262
// How frequently (in minutes) to log data
63-
const uint8_t loggingInterval = 5;
63+
const uint8_t loggingInterval = 15;
6464
// Your logger's timezone.
6565
const int8_t timeZone = -5; // Eastern Standard Time
6666
// NOTE: Daylight savings time will not be applied! Please use standard time!

examples/DRWI_Mayfly1_WiFi/DRWI_Mayfly1_WiFi.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const char* sketchName = "DRWI_Mayfly1_WiFi.ino";
6060
// Logger ID, also becomes the prefix for the name of the data file on SD card
6161
const char* LoggerID = "XXXXX";
6262
// How frequently (in minutes) to log data
63-
const uint8_t loggingInterval = 5;
63+
const uint8_t loggingInterval = 15;
6464
// Your logger's timezone.
6565
const int8_t timeZone = -5; // Eastern Standard Time
6666
// NOTE: Daylight savings time will not be applied! Please use standard time!

examples/DRWI_NoCellular/DRWI_NoCellular.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const char* sketchName = "DRWI_NoCellular.ino";
3939
// Logger ID, also becomes the prefix for the name of the data file on SD card
4040
const char* LoggerID = "XXXXX";
4141
// How frequently (in minutes) to log data
42-
const uint8_t loggingInterval = 5;
42+
const uint8_t loggingInterval = 15;
4343
// Your logger's timezone.
4444
const int8_t timeZone = -5; // Eastern Standard Time
4545
// NOTE: Daylight savings time will not be applied! Please use standard time!

examples/DRWI_SIM7080LTE/DRWI_SIM7080LTE.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ const char* sketchName = "DRWI_SIM7080LTE.ino";
6161
// Logger ID, also becomes the prefix for the name of the data file on SD card
6262
const char* LoggerID = "XXXXX";
6363
// How frequently (in minutes) to log data
64-
const uint8_t loggingInterval = 5;
64+
const uint8_t loggingInterval = 15;
6565
// Your logger's timezone.
6666
const int8_t timeZone = -5; // Eastern Standard Time
6767
// NOTE: Daylight savings time will not be applied! Please use standard time!

examples/baro_rho_correction/baro_rho_correction.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ const char* sketchName = "baro_rho_correction.ino";
5555
// Logger ID, also becomes the prefix for the name of the data file on SD card
5656
const char* LoggerID = "XXXXX";
5757
// How frequently (in minutes) to log data
58-
const uint8_t loggingInterval = 1;
58+
const uint8_t loggingInterval = 15;
5959
// Your logger's timezone.
6060
const int8_t timeZone = -5; // Eastern Standard Time
6161
// NOTE: Daylight savings time will not be applied! Please use standard time!

examples/data_saving/data_saving.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ const char* sketchName = "data_saving.ino";
101101
// Logger ID, also becomes the prefix for the name of the data file on SD card
102102
const char* LoggerID = "XXXXX";
103103
// How frequently (in minutes) to log data
104-
const uint8_t loggingInterval = 5;
104+
const uint8_t loggingInterval = 15;
105105
// Your logger's timezone.
106106
const int8_t timeZone = -5; // Eastern Standard Time
107107
// NOTE: Daylight savings time will not be applied! Please use standard time!

examples/logging_to_MMW/logging_to_MMW.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ const char* sketchName = "logging_to MMW.ino";
5454
// Logger ID, also becomes the prefix for the name of the data file on SD card
5555
const char* LoggerID = "XXXXX";
5656
// How frequently (in minutes) to log data
57-
const uint8_t loggingInterval = 5;
57+
const uint8_t loggingInterval = 15;
5858
// Your logger's timezone.
5959
const int8_t timeZone = -5; // Eastern Standard Time
6060
// NOTE: Daylight savings time will not be applied! Please use standard time!

examples/logging_to_ThingSpeak/logging_to_ThingSpeak.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const char* sketchName = "logging_to_ThingSpeak.ino";
5757
// Logger ID, also becomes the prefix for the name of the data file on SD card
5858
const char* LoggerID = "XXXXX";
5959
// How frequently (in minutes) to log data
60-
const uint8_t loggingInterval = 5;
60+
const uint8_t loggingInterval = 15;
6161
// Your logger's timezone.
6262
const int8_t timeZone = -5; // Eastern Standard Time
6363
// NOTE: Daylight savings time will not be applied! Please use standard time!

examples/menu_a_la_carte/menu_a_la_carte.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ const char* sketchName = "menu_a_la_carte.ino";
246246
// Logger ID, also becomes the prefix for the name of the data file on SD card
247247
const char* LoggerID = "XXXXX";
248248
// How frequently (in minutes) to log data
249-
const uint8_t loggingInterval = 5;
249+
const uint8_t loggingInterval = 15;
250250
// Your logger's timezone.
251251
const int8_t timeZone = -5; // Eastern Standard Time
252252
// NOTE: Daylight savings time will not be applied! Please use standard time!

examples/simple_logging/simple_logging.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const char* sketchName = "simple_logging.ino";
3939
// Logger ID, also becomes the prefix for the name of the data file on SD card
4040
const char* LoggerID = "XXXXX";
4141
// How frequently (in minutes) to log data
42-
const uint8_t loggingInterval = 5;
42+
const uint8_t loggingInterval = 15;
4343
// Your logger's timezone.
4444
const int8_t timeZone = -5; // Eastern Standard Time
4545
// NOTE: Daylight savings time will not be applied! Please use standard time!

examples/simple_logging_LearnEnviroDIY/simple_logging_LearnEnviroDIY.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const char* sketchName = "simple_logging.ino";
3939
// Logger ID, also becomes the prefix for the name of the data file on SD card
4040
const char* LoggerID = "XXXXX";
4141
// How frequently (in minutes) to log data
42-
const uint8_t loggingInterval = 5;
42+
const uint8_t loggingInterval = 15;
4343
// Your logger's timezone.
4444
const int8_t timeZone = -5; // Eastern Standard Time
4545
// NOTE: Daylight savings time will not be applied! Please use standard time!

0 commit comments

Comments
 (0)