Towerpro Mg90s Mini Digital 180 Degree Servo Motor 2.2kg 0.08sec 13g

Rs. 343
Short description:
The servo can rotate approximately 180 degrees (90 in each direction) and works just like the standard kinds but smaller. You can use any servo code, hardware, or library to control these servos. Good for beginners who want to make stuff move without building a motor controller with feedback &...
Ask a question
6993
In stock
+
The servo can rotate approximately 180 degrees (90 in each direction) and works just like the standard kinds but smaller. You can use any servo code, hardware, or library to control these servos. Good for beginners who want to make stuff move without building a motor controller with feedback & gearbox, especially si (arms) and hardware. The TowerPro MG90S now features digital processing for greater precision. Same great performance, now with digital precision.Features: Tiny and lightweight with high output power. Tiny servo MG90S is perfect for RC Airplane, Helicopter, Quadcopter or Robot. Has metal gears for added strength and durability. Easy to work with no need to program. This servo motor can be used directly with Arduino's servo motor libraries.  Specifications: Item Name: MG90S servo Weight: about 13.4g Dimension: 22.8 x 12.2 x 28.5mm Stall Torque: 1.8kg/cm(4.8V ),2.2kg/cm(6V) Operating Speed: 0.1sec/60degree(4.8v), 0.08sec/60degree(6v) Operating Voltage: 4.8-6.0V Motor Type: coreless motor Connector Wire Length: 175mm Package Includes: 1 x Towerpro MG90S Mini Digital 180 Degree Best online shopping website for Towerpro MG90S Mini Digital 180 Degree Servo Motor at a cheap price in Lahore, Islamabad, Karachi, Faisalabad, Multan, Quetta, Sukkur, Peshawar, Sibbi, Kohat, Mardan, Rawalpindi, and all over Pakistan. Testing Code #include Servo servo; int angle = 10; void setup() {   servo.attach(8);   servo.write(angle); } void loop()  {   // scan from 0 to 180 degrees   for(angle = 10; angle < 180; angle++)     {                                       servo.write(angle);                    delay(15);                      }    // now scan back from 180 to 0 degrees   for(angle = 180; angle > 10; angle--)       {                                     servo.write(angle);                delay(15);          }  }