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 LED
- - Source Code compiled for: Arduino Uno
- - Source Code created on: 2024-03-04 22:59:25
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* after activating a button led turns on and turns */
- /* off after 0,5s 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:
- bool buttonState = digitalRead(przycisk_PushButton_PIN_D2);
- if (buttonState == LOW)
- {
- lampka_LED_PIN_D3_rawData = 1;
- updateOutputs(); // Turn on the LED
- delay(500);
- }
- else
- {
- lampka_LED_PIN_D3_rawData = 0;
- updateOutputs(); // Turn off the LED
- }
- }
- void updateOutputs()
- {
- digitalWrite(lampka_LED_PIN_D3, lampka_LED_PIN_D3_rawData);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement