Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //-------------------------
- // C Code for Blinking LED
- // https://www.youtube.com/watch?v=j-qs-gJhxfs
- //-------------------------
- extern "C"
- {
- void start();
- void led(byte);
- }
- void setup()
- {
- start();
- }
- void loop()
- {
- led(1);
- led(0);
- }
Advertisement
Add Comment
Please, Sign In to add comment