Created
September 19, 2016 20:46
-
-
Save meshulam/fa36c44b5be077f0f937cff914978f5e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int numSends; // counter to count number of sends to Cloud | |
void setup() { | |
// put your setup code here, to run once: | |
SerialCloud.begin(115200); | |
SerialUSB.begin(9600); | |
SerialUSB.println("Hello Cloud example has started..."); | |
numSends = 0; // count number of sends | |
} | |
void loop() { | |
// put your main code here, to run repeatedly: | |
// every 60 seconds, send a message to the Cloud | |
if((numSends < 6) && (millis() % 60000 == 0)) { | |
SerialUSB.println("Sending a message to the Cloud..."); | |
SerialCloud.println("Hello, Cloud!"); // send to Cloud | |
SerialUSB.println("Message sent!"); | |
numSends++; // increase the number-of-sends counter | |
} | |
// two-way serial passthrough for seeing debug statements | |
while(SerialUSB.available()) { | |
SerialCloud.write(SerialUSB.read()); | |
} | |
while(SerialCloud.available()) { | |
SerialUSB.write((char)SerialCloud.read()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment