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 * …