Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /********* Pleasedontcode.com **********
- Pleasedontcode thanks you for automatic code generation! Enjoy your code!
- - Terms and Conditions:
- You have a non-exclusive, revocable, worldwide, royalty-free license
- for personal and commercial use. Attribution is optional; modifications
- are allowed, but you're responsible for code maintenance. We're not
- liable for any loss or damage. For full terms,
- please visit pleasedontcode.com/termsandconditions.
- - Project: Alloo
- - Source Code compiled for: Arduino Uno
- - Source Code created on: 2023-11-11 15:55:20
- - Source Code generated by: SSS Shivansh
- ********* Pleasedontcode.com **********/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Arduino.h>
- /****** SYSTEM REQUIREMENT 1 *****/
- /* Make 1 LED glow and 1 LED low */
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- /***** DEFINITION OF DIGITAL OUTPUT PINS *****/
- const uint8_t GLOW_LED_PIN = 2;
- const uint8_t LOW_LED_PIN = 3;
- void setup(void)
- {
- // Set the LED pins as output
- pinMode(GLOW_LED_PIN, OUTPUT);
- pinMode(LOW_LED_PIN, OUTPUT);
- }
- void loop(void)
- {
- // Make GLOW_LED_PIN glow
- digitalWrite(GLOW_LED_PIN, HIGH);
- // Make LOW_LED_PIN low
- digitalWrite(LOW_LED_PIN, LOW);
- // Delay for 1 second
- delay(1000);
- // Make GLOW_LED_PIN low
- digitalWrite(GLOW_LED_PIN, LOW);
- // Make LOW_LED_PIN glow
- digitalWrite(LOW_LED_PIN, HIGH);
- // Delay for 1 second
- delay(1000);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement