Skip to content

Instantly share code, notes, and snippets.

@jdieg0
Last active August 29, 2015 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jdieg0/a6680bd6d7ec0fb1f7f6 to your computer and use it in GitHub Desktop.
Save jdieg0/a6680bd6d7ec0fb1f7f6 to your computer and use it in GitHub Desktop.
/***************************************************************************
* *
* 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