Created
October 1, 2015 08:00
-
-
Save harrisonhjones/48e229b0df2aee3a3d88 to your computer and use it in GitHub Desktop.
Revisions
-
harrisonhjones created this gist
Oct 1, 2015 .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,14 @@ // IFTTT Google Drive Spreadsheet Update Example // Use with https://ifttt.com/recipes/329485-update-a-spreadsheet-on-event use eventName "VOLTS" // Author: Harrison Jones ([email protected]) char message[180]; void setup() {} void loop() { doublevolts = analogRead(A0) * 3.3 / 4096.0; sprintf(message, "%f", volts); Particle.publish("VOLTS", message); delay(2000); }