1
从Arduino-yun调用时,云函数在循环中停止Parse.com
我已经使用Parse.com Javascript SDK创建了一个云函数,并且正在从Arduino调用这些函数。以下是该hello函数的代码: Parse.Cloud.define("hello", function(request, response) { response.success("This is hello function"); }); //hello function Block 我正在使用以下代码从Arduino端调用此函数: 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() { …