On board LED blinky example for Wio cellular targets - Seeed Wio 3G and Wio LTE-M1/NB1(BG96)

Dependencies:   WS2812 PixelArray

main.cpp

Committer:
MACRUM
Date:
2019-02-12
Revision:
3:d48c9a684738
Parent:
1:194e3cf73e72
Child:
4:bd5780849912

File content as of revision 3:d48c9a684738:

#include "mbed.h"
#include "Wio_Cellular_LED.h"

// main() runs in its own thread in the OS
int main()
{
    while (1) {
        setcolor(WS2812_RED);
        wait(0.5);
        setcolor(WS2812_BLACK);
        wait(0.5);
    }

}