Skip to content

Instantly share code, notes, and snippets.

@HAKASHUN
Created October 25, 2014 05:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HAKASHUN/efa838e1325868726463 to your computer and use it in GitHub Desktop.
Save HAKASHUN/efa838e1325868726463 to your computer and use it in GitHub Desktop.
#include "mbed.h"
DigitalOut myled(LED1);
int main(){
while(1){
myled = 1;
wait(0.2);
myled = 0;
wait(0.2);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment