J'ai créé une fonction cloud à l'aide du SDK Javascript Parse.com et j'appelle ces fonctions depuis Arduino. Voici le code de la hello
fonction:
Parse.Cloud.define("hello", function(request, response) {
response.success("This is hello function");
}); //hello function Block
J'appelle cette fonction du côté Arduino en utilisant le code suivant:
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());
}
Le problème est que je reçois une réponse 8 fois seulement. Après ce flux de programme entier est bloqué. Quel est le problème?
arduino-yun
code-review
Abhijeet Kulkarni
la source
la source
Réponses:
Essayez ceci, je déteste vraiment String, peut-être que cette chose 8 fois a à voir avec les problèmes de mémoire causés par elle.
la source