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

main.cpp

Committer:
cristea
Date:
2014-06-19
Revision:
2:67d603617000
Parent:
1:345039810771
Child:
3:4cb285fb29e7

File content as of revision 2:67d603617000:

#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();
    led1 = 1;
    wait(delta);
    
    clear();
    led2 = 1;
    wait(delta);

    clear();
    led2 = 1;
    wait(delta);
}

void drums(float delta) {
    clear();
    led1 = 1;
    wait(delta);

    clear();
    led2 = 1;
    wait(delta);

    clear();
    led2 = 1;
    wait(delta);
}

int main() {
    while(1) {
        drums(0.3);
        cycle(0.3);
    }
}