Last active
August 29, 2015 14:22
-
-
Save jdieg0/a6680bd6d7ec0fb1f7f6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*************************************************************************** | |
* * | |
* This program is free software; you can redistribute it and/or modify * | |
* it under the terms of the GNU General Public License as published by * | |
* the Free Software Foundation; either version 2 of the License, or * | |
* any later version. * | |
***************************************************************************/ | |
#include "asuro.h" | |
int main(void) | |
{ | |
Init(); | |
while (1){ | |
StatusLED(RED); | |
Msleep(1000); | |
StatusLED(YELLOW); | |
Msleep(1000); | |
StatusLED(GREEN); | |
Msleep(1000); | |
} | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment