Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: WS2812 PixelArray
Fork of Wio_3G-example-blinky by
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);
}
}
