File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ const String GMAIL_APP_PASSWORD = "xxxxxxxxxx";
70
70
const String TO_EMAIL_ADDRESS = " xxxxxxxxxx" ;
71
71
72
72
// a flag to indicate whether we've tried to send the email yet or not
73
- boolean attempted = false ;
73
+ bool attempted = false ;
74
74
75
75
void setup () {
76
76
Serial.begin (9600 );
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ const String TWILIO_NUMBER = "xxxxxxxxxx";
55
55
const String RECIPIENT_NUMBER = " xxxxxxxxxx" ;
56
56
57
57
// a flag to indicate whether we've attempted to send the SMS yet or not
58
- boolean attempted = false ;
58
+ bool attempted = false ;
59
59
60
60
void setup () {
61
61
Serial.begin (9600 );
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ const String DROPBOX_ACCESS_TOKEN = "xxxxxxxxxx";
53
53
const String DROPBOX_ACCESS_TOKEN_SECRET = " xxxxxxxxxx" ;
54
54
55
55
56
- boolean success = false ; // a flag to indicate whether we've uploaded the file yet
56
+ bool success = false ; // a flag to indicate whether we've uploaded the file yet
57
57
58
58
void setup () {
59
59
Serial.begin (9600 );
You can’t perform that action at this time.
0 commit comments