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: Button Control
- - Source Code compiled for: Arduino Uno
- - Source Code created on: 2024-03-04 22:52:54
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* led turns on for 0,5s after activating a button */
- /* and turns off even when the button is still active */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Arduino.h>
- /****** FUNCTION PROTOTYPES *****/
- void setup();
- void loop();
- /***** DEFINITION OF DIGITAL INPUT PINS *****/
- const uint8_t przycisk_PushButton_PIN_D2 = 2;
- /***** DEFINITION OF DIGITAL OUTPUT PINS *****/
- const uint8_t lampka_LED_PIN_D3 = 3;
- /***** DEFINITION OF OUTPUT RAW VARIABLES *****/
- bool lampka_LED_PIN_D3_rawData = false;
- /***** DEFINITION OF OUTPUT PHYSICAL VARIABLES *****/
- float lampka_LED_PIN_D3_phyData = 0.0;
- void setup()
- {
- pinMode(przycisk_PushButton_PIN_D2, INPUT_PULLUP);
- pinMode(lampka_LED_PIN_D3, OUTPUT);
- }
- void loop()
- {
- // put your main code here, to run repeatedly:
- if (digitalRead(przycisk_PushButton_PIN_D2) == LOW)
- {
- digitalWrite(lampka_LED_PIN_D3, HIGH); // turn on the LED
- delay(500); // wait for 0.5 seconds
- digitalWrite(lampka_LED_PIN_D3, LOW); // turn off the LED
- }
- // the LED will turn off even when the button is still active
- // other code if needed
- delay(10); // small delay to avoid blocking the loop
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement