Tower Pro SG90 9G Micro Servo Motor with Accessories Blue

Original price was: ₨ 300.Current price is: ₨ 260.

The TowerPro SG90 mini servo is lightweight, high-quality and lightning-fast. The servo is designed to work with almost all the radio control systems. It is with excellent performance brings you to another horizon of flight. The SG90 mini servo with accessories is perfect for R/C helicopter, plane, car, boat and truck use.

Key Features:

  • Tiny and Lightweight: Perfect for small-scale RC models.
  • High Output Power: Delivers strong performance for precise control.
  • Wide Compatibility: Works with most RC systems and components.
  • Versatile Applications: Suitable for helicopters, planes, cars, boats, and trucks.
  • Easy to Use: Compatible with standard servo codes and hardware.

Take your RC projects to the next level with the TowerPro SG90 mini servo motor.

 

Package Includes:

  • 1 x Set of SG90 Servo Motor

Best online shopping website for TowerPro SG90 SG 90 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.

Image result for sg90 gifTowerPro SG90 SG 90 180 Degree Servo MotorTowerProSG90
TowerPro SG90 SG 90 180 Degree Servo Motor

TowerPro SG90 SG 90 180 Degree Servo Motor

Testing Code: Automatic

nothin#include <Servo.h>

Servo myservo;  // create servo object to control a servo
// twelve servo objects can be created on most boards

void setup() {
myservo.attach(9);  // attaches the servo on pin 9 to the servo object
}

void loop() {
myservo.write(0);
delay(1000);

myservo.write(180);
delay(1000);
}

Testing Code: Without Knobe

#include <Servo.h>

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);
}
}

Reviews

There are no reviews yet.

Be the first to review “Tower Pro SG90 9G Micro Servo Motor with Accessories Blue”

Your email address will not be published. Required fields are marked *