Advertisement
pleasedontcode

Servo Control rev_02

Aug 25th, 2024
86
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:31:52
  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. ********* User code review feedback **********/
  31.  
  32. /****** DEFINITION OF LIBRARIES *****/
  33. #include <Servo.h>  //https://github.com/arduino-libraries/Servo
  34. #include <EasyButton.h> //https://github.com/evert-arias/EasyButton
  35.  
  36. /****** FUNCTION PROTOTYPES *****/
  37. void setup(void);
  38. void loop(void);
  39. void onPressed(void); // Prototipo della funzione di callback per la pressione del pulsante
  40.  
  41. /***** DEFINITION OF DIGITAL INPUT PINS *****/
  42. const uint8_t butt_PushButton_PIN_D12       = 12; // Pin per il pulsante
  43.  
  44. /***** DEFINITION OF PWM OUTPUT PINS *****/
  45. const uint8_t servo_Servomotor_PWMSignal_PIN_D10        = 10; // Pin per il segnale PWM del servomotore
  46.  
  47. /***** DEFINITION OF OUTPUT RAW VARIABLES *****/
  48. /***** utilizzato per memorizzare i dati grezzi *****/
  49. uint8_t servo_Servomotor_PWMSignal_PIN_D10_rawData      = 0; // Variabile per i dati grezzi del servomotore
  50.  
  51. /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
  52. // Istanziamento dell'oggetto Servo
  53. Servo myServo; // Crea un oggetto Servo per controllare il servomotore
  54.  
  55. // Istanziamento dell'oggetto EasyButton
  56. EasyButton button(butt_PushButton_PIN_D12); // Crea un oggetto EasyButton per il pulsante
  57.  
  58. void setup(void)
  59. {
  60.     Serial.begin(115200); // Inizializza la comunicazione seriale per il debug
  61.     pinMode(butt_PushButton_PIN_D12, INPUT_PULLUP); // Imposta il pin del pulsante come input con resistenza di pull-up
  62.     pinMode(servo_Servomotor_PWMSignal_PIN_D10, OUTPUT); // Imposta il pin del servomotore come output
  63.  
  64.     myServo.attach(servo_Servomotor_PWMSignal_PIN_D10); // Collega l'oggetto Servo al pin PWM
  65.  
  66.     // Inizializza l'EasyButton
  67.     button.begin(); // Inizializza il pulsante
  68.     button.onPressed(onPressed); // Imposta la callback per quando il pulsante viene premuto
  69. }
  70.  
  71. // Funzione di callback da chiamare quando il pulsante viene premuto
  72. void onPressed()
  73. {
  74.     Serial.println("Pulsante premuto"); // Stampa un messaggio sul monitor seriale
  75.     for (servo_Servomotor_PWMSignal_PIN_D10_rawData = 0; servo_Servomotor_PWMSignal_PIN_D10_rawData <= 99; servo_Servomotor_PWMSignal_PIN_D10_rawData += 5) {
  76.         myServo.write(map(servo_Servomotor_PWMSignal_PIN_D10_rawData, 0, 99, 0, 180)); // Mappa 0-99 a 0-180 gradi
  77.         delay(500); // Attendi 500ms prima del prossimo incremento
  78.     }
  79. }
  80.  
  81. void loop(void)
  82. {
  83.     // Leggi continuamente lo stato del pulsante
  84.     button.read(); // Leggi lo stato del pulsante
  85. }
  86.  
  87. /* END CODE */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement