Ich habe eine Cloud-Funktion mit dem Parse.com Javascript SDK erstellt und rufe diese Funktionen von Arduino aus auf. Es folgt der Code für die hello
Funktion:
Parse.Cloud.define("hello", function(request, response) {
response.success("This is hello function");
}); //hello function Block
Ich rufe diese Funktion von der Arduino-Seite mit dem folgenden Code auf:
void setup() {
Bridge.begin();
Serial.begin(9600);
while (!Serial);
Parse.begin("***zE0uUjQkMa7nj5D5BALvzegzfyVNSG22BD***", "***Ssggp5JgMFmSHfloewW5oixlM5ibt9LBSE***");
//commented my keys with * here only
// In this example, we associate this device with a pre-generated installation
Parse.getInstallationId();
Parse.startPushService();
}
void loop() {
Serial.println("Start loop");
demoBasic("meeting", 0);
}
void demoBasic(String functionname, int light) {
char fnname[11];
functionname.toCharArray(fnname, 11);
Serial.print("In ");
Serial.print(functionname);
Serial.println(" Function");
ParseCloudFunction cloudFunction;
cloudFunction.setFunctionName(fnname);
cloudFunction.add("light_sensor", light);
cloudFunction.add("value", "Arduino Hello");//parameters
ParseResponse response = cloudFunction.send();
Serial.println(response.getJSONBody());
}
Das Problem ist, dass ich nur 8 Mal eine Antwort bekomme. Danach wird der gesamte Programmablauf blockiert. Worin besteht das Problem?