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() { …