Criei uma função de nuvem usando o SDK Javascript do Parse.com e estou chamando essas funções do Arduino. A seguir está o código para a hello
função:
Parse.Cloud.define("hello", function(request, response) {
response.success("This is hello function");
}); //hello function Block
Estou chamando essa função do lado do Arduino usando o seguinte código:
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());
}
O problema é que estou recebendo resposta apenas 8 vezes. Depois que todo o fluxo do programa é bloqueado. Qual é o problema?
arduino-yun
code-review
Abhijeet Kulkarni
fonte
fonte
Respostas:
Dá uma chance, eu realmente odeio String, talvez essa coisa de 8 vezes tenha a ver com problemas de memória causados por ela.
fonte