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: Test
- - Source Code compiled for: Arduino Pro Mini 5V
- - Source Code created on: 2023-12-06 00:15:03
- - Source Code generated by: Neuro
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* Multiply 18 by 19, when pressing a pushbutton */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Arduino.h>
- #include <EasyButton.h>
- /******************************************************************
- SYSTEM REQUIREMENTS
- ******************************************************************/
- // Multiply 18 by 19, when pressing a pushbutton
- const int multiplicationFactor = 18 * 19;
- /******************************************************************
- GLOBAL VARIABLES
- ******************************************************************/
- EasyButton button(2); // Button connected to digital pin 2
- /******************************************************************
- FUNCTION PROTOTYPES
- ******************************************************************/
- void setup();
- void loop();
- /******************************************************************
- SETUP FUNCTION
- ******************************************************************/
- void setup()
- {
- // Set the pin mode of the push button
- pinMode(2, INPUT_PULLUP);
- // Initialize the button object
- button.begin();
- }
- /******************************************************************
- LOOP FUNCTION
- ******************************************************************/
- void loop()
- {
- // Read the button state
- button.read();
- // Check if the button is pressed
- if (button.isPressed())
- {
- // Perform the multiplication when the button is pressed
- int result = multiplicationFactor;
- Serial.print("Result: ");
- Serial.println(result);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement