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: HardwareInterface mbed-rtos mbed
Fork of NerfUS by
main.cpp
- Committer:
- Ismael Balafrej
- Date:
- 2017-03-30
- Branch:
- PlayableGame
- Revision:
- 19:33e8cd56630f
- Parent:
- 13:850be84c78dd
File content as of revision 19:33e8cd56630f:
#include "rtos.h"
#include "HardwareLPC1768.hpp"
DigitalOut led(LED1);
int main()
{
HardwareLPC1768 hardware_lpc1768(led);
while(1)
{
hardware_lpc1768.blink();
}
}
