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: "Servo Setup"
- - Source Code compiled for: Arduino Nano
- - Source Code created on: 2023-12-16 05:23:31
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* Turns on and off a servo motor, ON equals GREEN */
- /* for a LED and https webserver POST and FETCH */
- /* Boolean loop */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Arduino.h>
- #include <Servo.h>
- #include <ezButton.h>
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- /***** DEFINITION OF PWM OUTPUT PINS *****/
- const uint8_t on_switch_Servomotor_PWMSignal_PIN_D3 = 3;
- /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
- Servo myservo;
- ezButton button(4); // Initialize the ezButton object with pin 4
- void setup(void)
- {
- // put your setup code here, to run once:
- pinMode(on_switch_Servomotor_PWMSignal_PIN_D3, OUTPUT);
- // Attach the servo to the pin
- myservo.attach(on_switch_Servomotor_PWMSignal_PIN_D3);
- // Set button debounce time to 50 milliseconds
- button.setDebounceTime(50);
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- // Read the button state
- button.loop();
- // If the button is pressed
- if (button.isPressed())
- {
- // Move the servo to 90 degrees
- myservo.write(90);
- delay(500);
- // Move the servo to 0 degrees
- myservo.write(0);
- delay(500);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement