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: 2023-12-18 10:09:29
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* Turn on when button on turn off when bottom off */
- /****** SYSTEM REQUIREMENT 2 *****/
- /* Turn on when button on turn off when bottom off */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Arduino.h>
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- /***** DEFINITION OF DIGITAL OUTPUT PINS *****/
- const uint8_t Prajwal_LED_PIN_D2 = 2; // Define the digital output pin for the LED
- const uint8_t buttonPin = 3; // Define the digital input pin for the button
- void setup(void)
- {
- // put your setup code here, to run once:
- pinMode(Prajwal_LED_PIN_D2, OUTPUT); // Set the LED pin as output
- pinMode(buttonPin, INPUT_PULLUP); // Set the button pin as input with internal pull-up resistor
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- // Implement the system requirements
- /****** SYSTEM REQUIREMENT 1 *****/
- /* Turn on when button is pressed, turn off when button is released */
- if (digitalRead(buttonPin) == LOW) {
- digitalWrite(Prajwal_LED_PIN_D2, HIGH); // Turn on the LED
- } else {
- digitalWrite(Prajwal_LED_PIN_D2, LOW); // Turn off the LED
- }
- /****** SYSTEM REQUIREMENT 2 *****/
- /* Turn on when button is pressed, turn off when button is released */
- if (digitalRead(buttonPin) == LOW) {
- // Implement the code for system requirement 2 here
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement