-
Notifications
You must be signed in to change notification settings - Fork 81
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add a ArduinoIoTCloudClass::end() function for a regulated shutdown #73
Comments
hi @generationmake |
Hi @generationmake |
Hi @ubidefeo and @lxrobotics. |
Hi! What is the status of this feature? |
hi @podhrmic |
Thanks for the quick reply! |
my pleasure, @podhrmic |
hi @ubidefeo This is my simple sketch: #include <Arduino_MKRENV.h>
#include <ArduinoLowPower.h>
#include "thingProperties.h"
GSM_SMS sms;
unsigned long tempo;
void setup() {
// Initialize serial and wait for port to open:
Serial.begin(9600);
// This delay gives the chance to wait for a Serial Monitor without blocking if none is found
delay(1000*30);
// Defined in thingProperties.h
initProperties();
// Imposto Callback per invio SMS informativo alla prima connessione
ArduinoIoTPreferredConnection.addConnectCallback(onNetworkConnect);
// Connect to Arduino IoT Cloud
ArduinoCloud.begin(ArduinoIoTPreferredConnection);
/*
The following function allows you to obtain more information
related to the state of network and IoT Cloud connection and errors
the higher number the more granular information you’ll get.
The default is 0 (only errors).
Maximum is 4
*/
setDebugMessageLevel(4);
ArduinoCloud.printDebugInfo();
// Inizializzo MKRENV
if (!ENV.begin()) {
Serial.println("Failed to initialize MKR ENV shield!");
while (1);
}
// Imposto funzione da richiamare al risveglio
LowPower.attachInterruptWakeup(RTC_ALARM_WAKEUP, onWakeUp, CHANGE);
tempo = millis();
}
void loop() {
ArduinoCloud.update();
// Your code here
// read sensor values
temperatura = ENV.readTemperature();
umidita = ENV.readHumidity();
pressione = ENV.readPressure();
if (millis() - tempo > 90000) {
// Triggers a 300 seconds sleep (the device will be woken up only by the registered wakeup sources and by internal RTC)
// The power consumption of the chip will drop consistently
LowPower.deepSleep(900000);
delay(10000);
tempo = millis();
}
}
void onNetworkConnect(void *_arg) {
static int SMSConnessione = 0;
if (SMSConnessione == 0) {
// Invio SMS di conferma inizializzazione scheda
sendSMS("xxxxxxxxxx", "Scheda Inizializzata");
SMSConnessione = 1;
}
}
void sendSMS(char numero[], char testoSMS[]){
sms.beginSMS(numero);
sms.print(testoSMS);
sms.endSMS();
}
void onWakeUp() {
// This function will be called once on device wakeup
// You can do some little operations here (like changing variables which will be used in the loop)
// Remember to avoid calling delay() and long running functions since this functions executes in interrupt context
//ArduinoIoTPreferredConnection.connect();
//tempo = millis();
} Thanks |
Just FYI I had a similar problem - I have Arduino MKR GSM shield with a number of I2C sensors, and it all works nicely until Arduino goes to sleep. After spending some time trying to debug what is going on, I used Arduino Uno to turn Arduino MKR GSM on and off (and Uno sleeps in between) and that works as expected. |
I suggest to add a ArduinoIoTCloudClass::end() function for a regulated shutdown and restart of the whole cloud function. This would allow arduinos to shut down the cloud functions for power reasons (for example sleep mode) and enable them later again.
For example:
and add to the ConnectionManager a public end function. For the MKR WIFI 1010 for example WiFi.end();
Thank you
The text was updated successfully, but these errors were encountered: