All examples have 6s delay before start

Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
This commit is contained in:
Sara Damiano
2020-04-16 00:16:25 -04:00
parent 8c5850ef7b
commit 4aadaf04ec
14 changed files with 15 additions and 17 deletions

View File

@@ -82,7 +82,7 @@ void setup()
// Set GSM module baud rate // Set GSM module baud rate
SerialAT.begin(115200); SerialAT.begin(115200);
delay(3000); delay(6000);
// Restart takes quite some time // Restart takes quite some time
// To skip it, call init() instead of restart() // To skip it, call init() instead of restart()

View File

@@ -127,7 +127,7 @@ void setup() {
// Set GSM module baud rate // Set GSM module baud rate
SerialAT.begin(115200); SerialAT.begin(115200);
delay(3000); delay(6000);
// Restart takes quite some time // Restart takes quite some time
// To skip it, call init() instead of restart() // To skip it, call init() instead of restart()

View File

@@ -135,7 +135,7 @@ void setup() {
// Set GSM module baud rate // Set GSM module baud rate
// TinyGsmAutoBaud(SerialAT,GSM_AUTOBAUD_MIN,GSM_AUTOBAUD_MAX); // TinyGsmAutoBaud(SerialAT,GSM_AUTOBAUD_MIN,GSM_AUTOBAUD_MAX);
SerialAT.begin(9600); SerialAT.begin(9600);
delay(3000); delay(6000);
// Restart takes quite some time // Restart takes quite some time
// To skip it, call init() instead of restart() // To skip it, call init() instead of restart()

View File

@@ -127,7 +127,7 @@ void setup() {
// Set GSM module baud rate // Set GSM module baud rate
// TinyGsmAutoBaud(SerialAT,GSM_AUTOBAUD_MIN,GSM_AUTOBAUD_MAX); // TinyGsmAutoBaud(SerialAT,GSM_AUTOBAUD_MIN,GSM_AUTOBAUD_MAX);
SerialAT.begin(9600); SerialAT.begin(9600);
delay(3000); delay(6000);
// Restart takes quite some time // Restart takes quite some time
// To skip it, call init() instead of restart() // To skip it, call init() instead of restart()

View File

@@ -179,7 +179,7 @@ void setup() {
// Set GSM module baud rate // Set GSM module baud rate
// TinyGsmAutoBaud(SerialAT,GSM_AUTOBAUD_MIN,GSM_AUTOBAUD_MAX); // TinyGsmAutoBaud(SerialAT,GSM_AUTOBAUD_MIN,GSM_AUTOBAUD_MAX);
SerialAT.begin(9600); SerialAT.begin(9600);
delay(3000); delay(6000);
// Restart takes quite some time // Restart takes quite some time
// To skip it, call init() instead of restart() // To skip it, call init() instead of restart()

View File

@@ -130,7 +130,7 @@ void setup() {
// Set GSM module baud rate // Set GSM module baud rate
// TinyGsmAutoBaud(SerialAT,GSM_AUTOBAUD_MIN,GSM_AUTOBAUD_MAX); // TinyGsmAutoBaud(SerialAT,GSM_AUTOBAUD_MIN,GSM_AUTOBAUD_MAX);
SerialAT.begin(9600); SerialAT.begin(9600);
delay(3000); delay(6000);
// Restart takes quite some time // Restart takes quite some time
// To skip it, call init() instead of restart() // To skip it, call init() instead of restart()

View File

@@ -63,7 +63,7 @@ void setup() {
// Set up Passthrough // Set up Passthrough
HologramCloud.enterPassthrough(); HologramCloud.enterPassthrough();
delay(3000); delay(6000);
// Restart takes quite some time // Restart takes quite some time
// To skip it, call init() instead of restart() // To skip it, call init() instead of restart()

View File

@@ -76,7 +76,7 @@ void setup() {
// Set GSM module baud rate // Set GSM module baud rate
SerialAT.begin(115200); SerialAT.begin(115200);
delay(3000); delay(6000);
// Restart takes quite some time // Restart takes quite some time
// To skip it, call init() instead of restart() // To skip it, call init() instead of restart()

View File

@@ -46,7 +46,7 @@ void setup() {
// Set GSM module baud rate // Set GSM module baud rate
SerialAT.begin(115200); SerialAT.begin(115200);
delay(3000); delay(6000);
SerialMon.println(F("Initializing modem...")); SerialMon.println(F("Initializing modem..."));
modem.init(); modem.init();
@@ -94,4 +94,3 @@ void loop() {
} }
delay(0); delay(0);
} }

View File

@@ -45,7 +45,7 @@ uint32_t rate = 0; // Set to 0 for Auto-Detect
void setup() { void setup() {
// Set console baud rate // Set console baud rate
SerialMon.begin(115200); SerialMon.begin(115200);
delay(3000); delay(6000);
} }
void loop() { void loop() {

View File

@@ -32,7 +32,7 @@ void setup() {
MODEM_TX.begin(BAUD_RATE); MODEM_TX.begin(BAUD_RATE);
BOARD_TX.begin(BAUD_RATE); BOARD_TX.begin(BAUD_RATE);
delay(1000); delay(6000);
} }
void loop() void loop()
@@ -44,4 +44,3 @@ void loop()
SPY.write(BOARD_TX.read()); SPY.write(BOARD_TX.read());
} }
} }

View File

@@ -130,7 +130,7 @@ void setup() {
// Set GSM module baud rate // Set GSM module baud rate
// TinyGsmAutoBaud(SerialAT,GSM_AUTOBAUD_MIN,GSM_AUTOBAUD_MAX); // TinyGsmAutoBaud(SerialAT,GSM_AUTOBAUD_MIN,GSM_AUTOBAUD_MAX);
SerialAT.begin(9600); SerialAT.begin(9600);
delay(3000); delay(6000);
} }
void loop() { void loop() {

View File

@@ -49,7 +49,7 @@ void setup() {
// Set GSM module baud rate // Set GSM module baud rate
SerialAT.begin(9600); SerialAT.begin(9600);
delay(3000); delay(6000);
if (!modem.init()) { if (!modem.init()) {
SerialMon.println(F("***********************************************************")); SerialMon.println(F("***********************************************************"));

View File

@@ -10,7 +10,7 @@ TinyGsm modem(Serial);
void setup() { void setup() {
Serial.begin(115200); Serial.begin(115200);
delay(3000); delay(6000);
} }
void loop() { void loop() {