NerfUS game coordinator for the Nerf gun firing range

Dependencies:   HardwareInterface mbed-rtos mbed

Fork of NerfUS by NerfUS

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "rtos.h"
00002 #include "HardwareLPC1768.hpp"
00003 
00004 DigitalOut led(LED1);
00005 
00006 int main()
00007 {
00008     HardwareLPC1768 hardware_lpc1768(led);
00009     while(1)
00010     {
00011         hardware_lpc1768.blink();
00012     }
00013 }
00014