Created
May 29, 2017 20:29
-
-
Save sidwarkd/2724d15bd2cf3b846c0676610672d5a3 to your computer and use it in GitHub Desktop.
Simple Example Using Particle Geolocation Integration
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 characters
#include "google-maps-device-locator.h" | |
GoogleMapsDeviceLocator locator; | |
void setup() { | |
Serial.begin(9600); | |
locator.withLocatePeriodic(120); | |
} | |
void loop() { | |
locator.loop(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment