]> git.piffa.net Git - sketchbook_andrea/blob - motors/servo/Sweep_1/Sweep_1.ino
Servo commenti
[sketchbook_andrea] / motors / servo / Sweep_1 / Sweep_1.ino
1 /* Sweep
2
3    Rotazione di un servomotore tramite la librerio Servo.h .
4
5 L'utilizzo della libreria Servo rende inutilizzabile analogWrite()
6 sui pin 9 e 10 dato che utilizza i timer associati a questi PIN.
7
8 Power: un servo da 9g puo' arrivare ad impegnare 750mA sotto carico
9 (se viene opposta resistenza al movimento del servo), un  SG90 prende 
10 ~62mA se il movimento e' libero. Quindi in fase di test il servo puo'
11 essere alimentato direttamente da una scheda Arduino (200ma dal PIN 5v)
12 ma per l'uso finale dovra' essere alimentato autonomamente.
13
14 Schema: https://www.arduino.cc/en/uploads/Tutorial/sweep_bb.png
15         http://microbotlabs.com/images/mearm-uno-servo-1.jpg
16    */
17
18 #include <Servo.h> 
19  
20 Servo myservo;  // create servo object to control a servo 
21                 // a maximum of eight servo objects can be created 
22  
23 int pos = 0;    // variable to store the servo position 
24  
25 void setup() 
26
27   myservo.attach(9);  // attaches the servo on pin 9 to the servo object 
28
29  
30  
31 void loop() 
32
33   for(pos = 0; pos < 180; pos += 1)  // goes from 0 degrees to 180 degrees 
34   {                                  // in steps of 1 degree 
35     myservo.write(pos);              // tell servo to go to position in variable 'pos' 
36     delay(15);                       // waits 15ms for the servo to reach the position 
37   } 
38   for(pos = 180; pos>=1; pos-=1)     // goes from 180 degrees to 0 degrees 
39   {                                
40     myservo.write(pos);              // tell servo to go to position in variable 'pos' 
41     delay(15);                       // waits 15ms for the servo to reach the position 
42   } 
43