The Location Puck gives your smartphone context about its location. Built on the Puck IOT platform.

Dependencies:   Puck mbed

The location puck will give your smartphone context about the phone’s location. You can later set up rules for what should happen at different locations in the smartphone companion application (Puck Central).

A tutorial for the Location Puck is available on GitHub.

Tutorials and in-depth documentation for the Puck platform is available at the project's GitHub page

Revision:
0:f4fbeaabdff5
Child:
1:345039810771
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Thu Jun 19 08:28:07 2014 +0000
@@ -0,0 +1,43 @@
+#include <mbed.h>
+
+DigitalOut led1(LED1);
+DigitalOut led2(LED2);
+
+void clear() {
+    led1 = 0;
+    led2 = 0; 
+}
+
+void cycle(float delta) {
+    clear();
+    led1 = 1;
+    wait(delta);
+    
+    clear();
+    led2 = 1;
+    wait(delta);
+    
+    clear();
+    led3 = 1;
+    wait(delta);
+    
+    clear();
+    led4 = 1;
+    wait(delta);
+}
+
+void drums(float delta) {
+    clear();
+    led1 = 1;
+    wait(delta);
+    
+    clear();
+    led4 = 1;
+    wait(delta);
+}
+
+int main() {
+    while(1) {
+        drums(0.3);
+    }
+}
\ No newline at end of file