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-18 09:13:35
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* arduino uno with connected cnc shield. 2 nema 17 */
- /* stepper motors, 4 buttons, 1 stepper motor limiter */
- /* and 4 ws2812 address diodes are attached to them */
- /* the algorithm is as follows: 1. when the device */
- /* is turned on. motor A moves to the limit switch */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** DEFINITION OF LIBRARIES *****/
- #include <EasyButton.h> //https://github.com/evert-arias/EasyButton
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- /***** DEFINITION OF DIGITAL INPUT PINS *****/
- const uint8_t EndStop_PushButton_PIN_D2 = 2;
- /****** DEFINITION OF LIBRARIES CLASS INSTANCES *****/
- EasyButton button(EndStop_PushButton_PIN_D2); // Initialize the EasyButton object with the button pin
- void setup(void)
- {
- // put your setup code here, to run once:
- pinMode(EndStop_PushButton_PIN_D2, INPUT_PULLUP);
- // Initialize the button
- button.begin();
- // Move motor A to the limit switch when the device is turned on
- // code goes here...
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- // Check if the button is pressed
- if (button.read()) {
- // Perform the desired action when the button is pressed
- // For example, moving motor A to the limit switch
- // code goes here...
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement