This is a modular blinky code that implements a moving led pattern. This example project can be used as a template for the modular projects.
Dependencies: ledControl led_KnightRider mbed
main.cpp
- Committer:
- BaserK
- Date:
- 2015-07-06
- Revision:
- 0:3d8edb6d1767
- Child:
- 2:31cf8d27ec43
File content as of revision 0:3d8edb6d1767:
#include "mbed.h" #include "ledControl.h" #include "led_KnightRider.h" int main() { while(1) { led_KnightRider(); } }