Description
Servo motors are a staple for any maker. The 360 degree capability gives you maximum flexibility for all of your project ideas. This servo has a standard 3-pin power and control cable.
Specifications |
|
Gear Type |
Metal |
Rotation | 360deg |
Dimensions | 40mm x 19mm x 43mm |
Weight | 65g |
Operating Speed (4.8V) |
0.17sec / 60 deg |
Operating Speed (6V) |
0.13sec / 60 deg |
Stall Torque (4.8V) |
13 kg-cm |
Stall Torque (6V) |
15 kg-cm |
Operation Voltage | 4.8V – 7.2V |
Arduino Code for 360 Servo Motor
/* SETUP Servo Motor Arduino Brown - - Red - 5V Orange - D9 */
#include int pin = 9; int stop_position = 0; int velocity = 10; Servo servo; void setup() { servo.attach(pin); } void loop() { servo.write(75); }
There are no reviews yet.