Test code for the BMP085 sensor (pression and temperature) with the nRF51822 platform.

Dependencies:   BMP085 mbed nRF51822_blinky

Fork of nRF51822_blinky by RedBearLab

main.cpp

Committer:
RedBearLab
Date:
2014-10-31
Revision:
7:053e387ebb6f
Parent:
4:81cea7a352b0
Child:
9:f7fb475f515a

File content as of revision 7:053e387ebb6f:

#include "mbed.h"

DigitalOut myled(LED1);

int main() {
    while(1) {
        myled = 1;
        wait(1);
        myled = 0;
        wait(1);
    }
}