Last active
October 15, 2016 02:54
-
-
Save dmiddlecamp/ea5c03e73e884526a46b79bf1e7d6511 to your computer and use it in GitHub Desktop.
Revisions
-
dmiddlecamp revised this gist
Oct 15, 2016 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ void setup() { Particle.function("yourFunction", yourFunction); } int yourFunction(String cmd) { -
dmiddlecamp revised this gist
Oct 15, 2016 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,4 +6,5 @@ int yourFunction(String cmd) { digitalWrite(D7, HIGH); delay(150); digitalWrite(D7, LOW); return 0; } -
dmiddlecamp created this gist
Oct 15, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ void setup() { Particle.fucntion("yourFunction", yourFunction); } int yourFunction(String cmd) { digitalWrite(D7, HIGH); delay(150); digitalWrite(D7, LOW); }