Skip to content

Instantly share code, notes, and snippets.

@meshulam
Created September 19, 2016 20:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save meshulam/fa36c44b5be077f0f937cff914978f5e to your computer and use it in GitHub Desktop.
Save meshulam/fa36c44b5be077f0f937cff914978f5e to your computer and use it in GitHub Desktop.
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