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 Blink
- - Source Code compiled for: Arduino Uno
- - Source Code created on: 2024-03-04 22:57:05
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* led turns on for 0,5s after activating a button */
- /* and stays off until the button is deactivated */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Arduino.h>
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- void updateOutputs(void);
- /***** 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 = 0;
- /***** DEFINITION OF OUTPUT PHYSICAL VARIABLES *****/
- float lampka_LED_PIN_D3_phyData = 0.0;
- void setup(void)
- {
- // put your setup code here, to run once:
- pinMode(przycisk_PushButton_PIN_D2, INPUT_PULLUP);
- pinMode(lampka_LED_PIN_D3, OUTPUT);
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- if (digitalRead(przycisk_PushButton_PIN_D2) == LOW) {
- lampka_LED_PIN_D3_rawData = 1; // Activate the LED
- updateOutputs(); // Refresh output data
- delay(500); // Wait for 500 milliseconds (0.5 seconds)
- lampka_LED_PIN_D3_rawData = 0; // Deactivate the LED
- updateOutputs(); // Refresh output data
- }
- }
- void updateOutputs()
- {
- digitalWrite(lampka_LED_PIN_D3, lampka_LED_PIN_D3_rawData);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement