Advertisement
pleasedontcode

Servo Control rev_03

Aug 25th, 2024
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /********* Pleasedontcode.com **********
  2.  
  3.     Pleasedontcode thanks you for automatic code generation! Enjoy your code!
  4.  
  5.     - Terms and Conditions:
  6.     You have a non-exclusive, revocable, worldwide, royalty-free license
  7.     for personal and commercial use. Attribution is optional; modifications
  8.     are allowed, but you're responsible for code maintenance. We're not
  9.     liable for any loss or damage. For full terms,
  10.     please visit pleasedontcode.com/termsandconditions.
  11.  
  12.     - Project: Servo Control
  13.     - Source Code NOT compiled for: Arduino Uno
  14.     - Source Code created on: 2024-08-25 07:36:12
  15.  
  16. ********* Pleasedontcode.com **********/
  17.  
  18. /****** SYSTEM REQUIREMENTS *****/
  19. /****** SYSTEM REQUIREMENT 1 *****/
  20.     /* alla pressione del pulsante il servo si muove */
  21.     /* dalla posizione 0% all 99% a passi del 5% ogni */
  22.     /* 500ms, 0% corrisponde il massimo senso orario, 99% */
  23.     /* il massimo senso antiorario. */
  24. /****** END SYSTEM REQUIREMENTS *****/
  25.  
  26.  
  27. /********* User code review feedback **********
  28. #### Feedback 1 ####
  29. - tutti i commenti descrittivi devono essere in italiano
  30. #### Feedback 2 ####
  31. - deve continuare a funzionare all'infinito, alla prossima pressio
  32. ne del pulsante la posizione ricomincia da 0%
  33. ********* User code review feedback **********/
  34.  
  35. /****** DEFINITION OF LIBRARIES *****/
  36. #include <Servo.h>  //https://github.com/arduino-libraries/Servo
  37. #include <EasyButton.h> //https://github.com/evert-arias/EasyButton
  38.  
  39. /****** FUNCTION PROTOTYPES *****/
  40. void setup(void);
  41. void loop(void);
  42. void onPressed(void); // Prototipo della funzione di callback per la pressione del pulsante
  43.  
  44. /***** DEFINITION OF DIGITAL INPUT PINS *****/
  45. const uint8_t butt_PushButton_PIN_D12       = 12; // Pin per il pulsante
  46.  
  47. /***** DEFINITION OF PWM OUTPUT PINS *****/
  48. const uint8_t servo_Servomotor_PWMSignal_PIN_D10        = 10; // Pin per il segnale PWM del servomotore
  49.  
  50. /***** DEFINITION OF OUTPUT RAW VARIABLES *****/
  51. /***** utilizzato per memorizzare i dati grezzi *****/
  52. uint8_t servo_Servomotor_PWMSignal_PIN_D10_rawData      = 0; // Variabile per i dati grezzi del servomotore
  53.  
  54. /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
  55. // Istanziamento dell'oggetto Servo
  56. Servo myServo; // Crea un oggetto Servo per controllare il servomotore
  57.  
  58. // Istanziamento dell'oggetto EasyButton
  59. EasyButton button(butt_PushButton_PIN_D12); // Crea un oggetto EasyButton per il pulsante
  60.  
  61. void setup(void)
  62. {
  63.     Serial.begin(115200); // Inizializza la comunicazione seriale per il debug
  64.     pinMode(butt_PushButton_PIN_D12, INPUT_PULLUP); // Imposta il pin del pulsante come input con resistenza di pull-up
  65.     pinMode(servo_Servomotor_PWMSignal_PIN_D10, OUTPUT); // Imposta il pin del servomotore come output
  66.  
  67.     myServo.attach(servo_Servomotor_PWMSignal_PIN_D10); // Collega l'oggetto Servo al pin PWM
  68.  
  69.     // Inizializza l'EasyButton
  70.     button.begin(); // Inizializza il pulsante
  71.     button.onPressed(onPressed); // Imposta la callback per quando il pulsante viene premuto
  72. }
  73.  
  74. // Funzione di callback da chiamare quando il pulsante viene premuto
  75. void onPressed()
  76. {
  77.     Serial.println("Pulsante premuto"); // Stampa un messaggio sul monitor seriale
  78.     // Muovi il servomotore da 0% a 99% in incrementi del 5%
  79.     for (servo_Servomotor_PWMSignal_PIN_D10_rawData = 0; servo_Servomotor_PWMSignal_PIN_D10_rawData <= 99; servo_Servomotor_PWMSignal_PIN_D10_rawData += 5) {
  80.         myServo.write(map(servo_Servomotor_PWMSignal_PIN_D10_rawData, 0, 99, 0, 180)); // Mappa 0-99 a 0-180 gradi
  81.         delay(500); // Attendi 500ms prima del prossimo incremento
  82.     }
  83.     // Reset the position to 0% after reaching 99%
  84.     servo_Servomotor_PWMSignal_PIN_D10_rawData = 0; // Reset the raw data to 0
  85.     myServo.write(map(servo_Servomotor_PWMSignal_PIN_D10_rawData, 0, 99, 0, 180)); // Move to 0 degrees
  86. }
  87.  
  88. void loop(void)
  89. {
  90.     // Leggi continuamente lo stato del pulsante
  91.     button.read(); // Leggi lo stato del pulsante
  92. }
  93.  
  94. /* END CODE */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement