bal_gennady

Blinking_for_asm-1.ino

Oct 2nd, 2025
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.26 KB | Source Code | 0 0
  1. //-------------------------
  2. // C Code for Blinking LED
  3. // https://www.youtube.com/watch?v=j-qs-gJhxfs
  4. //-------------------------
  5. extern "C"
  6. {
  7.   void start();
  8.   void led(byte);
  9. }
  10.  
  11. void setup()
  12. {
  13.   start();
  14. }
  15.  
  16. void loop()
  17. {
  18.   led(1);
  19.   led(0);
  20. }
Tags: Arduino asm
Advertisement
Add Comment
Please, Sign In to add comment