Seeed / Mbed OS Wio_3G-example-blinky

Dependencies:   WS2812 PixelArray

Fork of Wio_3G-example-blinky by Toyomasa Watarai

main.cpp

Committer:
ytsuboi
Date:
2018-11-17
Revision:
3:56fe0b429da9
Parent:
1:194e3cf73e72

File content as of revision 3:56fe0b429da9:

#include "mbed.h"
#include "Wio_3G_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);
    }

}