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: Ir_sensor
- - Source Code compiled for: Arduino Uno
- - Source Code created on: 2023-12-03 00:09:43
- - Source Code generated by: zasoor
- ********* Pleasedontcode.com **********/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Arduino.h>
- /****** SYSTEM REQUIREMENT 1 *****/
- /* Turn on and off */
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- /***** DEFINITION OF DIGITAL OUTPUT PINS *****/
- const uint8_t LED_PIN = 2; // Define the pin number for the LED
- void setup(void)
- {
- // put your setup code here, to run once:
- pinMode(LED_PIN, OUTPUT); // Set the LED pin as output
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- // Turn on the LED
- digitalWrite(LED_PIN, HIGH);
- // Delay for 1 second
- delay(1000);
- // Turn off the LED
- digitalWrite(LED_PIN, LOW);
- // Delay for 1 second
- delay(1000);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement