Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- Blink Light.c
- Blink light circuit!
- */
- #include "simpletools.h" // Include simpletools
- int main() // main function
- {
- while(1) // Endless loop
- {
- high(0);
- high(2);
- low(3);
- pause(40);
- low(0);
- low(2);
- high(3);
- pause(80);
- low(3);
- high(1);
- pause(40);
- low(1);
- pause(600);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement