Grove sensor component example for Seeed Wio 3G

Dependencies:   Grove_LCD_RGB_Backlight Grove_temperature PixelArray Servo WS2812

Fork of Wio_3G_example by Toyomasa Watarai

main.cpp

Committer:
mbed_official
Date:
2018-01-18
Revision:
57:98afe5d5ae5c
Parent:
29:0b58d21e87d6
Child:
70:cb6d36218441

File content as of revision 57:98afe5d5ae5c:

#include "mbed.h"

DigitalOut led1(LED1);

// main() runs in its own thread in the OS
int main() {
    while (true) {
        led1 = !led1;
        wait(0.5);
    }
}