Note:
- Replace
2022
with your version of After Effects.- Replace
7.0
if you use an Adobe application older than CC (CS6 and older).
This file contains 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
#include <msp430.h> | |
#define LED_PIN BIT0 // Assuming LED is connected to P1.0 | |
void delay(unsigned int duration) { | |
while (duration--) { | |
__delay_cycles(10); // adjust this value to change the delay | |
} | |
} |