Micro Servo SG90 – 360 Degrees, 1.8 kg.cm, Plastic Gears

  • Full 360° Rotation for applications like small robots, RC wheels, and continuous motion projects.
  • Compact & Lightweight design, perfect for tight spaces and lightweight builds.
  • Torque of ~1.8 kg·cm at 6 V, suitable for light-duty tasks.
  • Plastic Gears & Durable Shell: Economical yet reliable for hobbyist use.
  • Standard 5–6 V Input compatible with most microcontroller setups (Arduino, Raspberry Pi).
  • Quick, Responsive Control via PWM for smooth motion and positioning.

Apple Shopping Event

Hurry and get discounts on all Apple devices up to 20%

100,00 EGP

12 People watching this product now!

Payment Methods:

Description

The SG90 360° Micro Servo is a compact and lightweight servo motor designed for continuous rotation applications. With 1.8kg.cm torque, it provides reliable motion control for small robotics, RC projects, and DIY automation.

This servo features plastic gears, making it lightweight and ideal for low-power applications. It operates on PWM control, allowing for speed and direction adjustments, making it perfect for wheeled robots and rotating mechanisms.

Key Features:

360° Continuous Rotation – Ideal for robotic wheels and automation projects
Lightweight & Compact – Perfect for small and lightweight applications
1.8kg.cm Torque – Provides reliable movement for various tasks
Plastic Gear Construction – Reduces weight and power consumption
Standard 3-Pin Connector – Easy integration with Arduino, Raspberry Pi, and other controllers
Fast Response & Smooth Rotation – Ensures efficient motion control

Specifications:

  • Model: SG90
  • Rotation: 360° Continuous
  • Torque: 1.8kg.cm (at 5V)
  • Operating Voltage: 4.8V – 6V
  • Gear Type: Plastic
  • Signal Type: PWM (Pulse Width Modulation)
  • Weight: ~9g
  • Connector: 3-pin (VCC, GND, Signal)

Applications:

🔹 Robotics – Driving wheels, robotic arms, and mechatronics projects
🔹 RC Vehicles – Cars, boats, and drones for precise movement
🔹 Automation & DIY Projects – Small-scale rotating mechanisms and automation systems
🔹 Educational Use – Perfect for Arduino and Raspberry Pi experiments

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
SG90 (360)Signal/VCC/GNDboard PWM-capable pin / 5V / GND
📟
Micro Servo SG90 - 360 Degrees, 1.8 kg.cm, Plastic Gears
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
Micro Servo SG90 - 360 Degrees, 1.8 kg.cm, Plastic Gears - Arduino Uno
Micro Servo SG90 - 360 Degrees, 1.8 kg.cm, Plastic Gears - Arduino Nano
Micro Servo SG90 - 360 Degrees, 1.8 kg.cm, Plastic Gears - Arduino Mega
Micro Servo SG90 - 360 Degrees, 1.8 kg.cm, Plastic Gears - ESP32
Micro Servo SG90 - 360 Degrees, 1.8 kg.cm, Plastic Gears - ESP8266
Micro Servo SG90 - 360 Degrees, 1.8 kg.cm, Plastic Gears - STM32
Micro Servo SG90 - 360 Degrees, 1.8 kg.cm, Plastic Gears - Raspberry Pi Pico
📄 File: micro_servo_sg90_-_360_degrees,_1.8_kg.cm,_plastic_gears_-_arduino_uno.inoArduino Uno
611 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin 9 on Arduino Uno. A continuous-rotation servo ignores angle and instead treats 90 as stop, <90 as one direction, >90 as the other - speed is set by how far from 90.
6#include <Servo.h>
7
8Servo myServo;
9#define SERVO_PIN 9
10
11void setup() {
12 Serial.begin(115200);
13 myServo.attach(SERVO_PIN);
14}
15
16void loop() {
17 myServo.write(180); // full speed one direction
18 delay(2000);
19 myServo.write(90); // stop
20 delay(1000);
21 myServo.write(0); // full speed other direction
22 delay(2000);
23 myServo.write(90); // stop
24 delay(1000);
25}
📄 File: micro_servo_sg90_-_360_degrees,_1.8_kg.cm,_plastic_gears_-_arduino_nano.inoArduino Nano
612 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin 9 on Arduino Nano. A continuous-rotation servo ignores angle and instead treats 90 as stop, <90 as one direction, >90 as the other - speed is set by how far from 90.
6#include <Servo.h>
7
8Servo myServo;
9#define SERVO_PIN 9
10
11void setup() {
12 Serial.begin(115200);
13 myServo.attach(SERVO_PIN);
14}
15
16void loop() {
17 myServo.write(180); // full speed one direction
18 delay(2000);
19 myServo.write(90); // stop
20 delay(1000);
21 myServo.write(0); // full speed other direction
22 delay(2000);
23 myServo.write(90); // stop
24 delay(1000);
25}
📄 File: micro_servo_sg90_-_360_degrees,_1.8_kg.cm,_plastic_gears_-_arduino_mega.inoArduino Mega
612 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin 9 on Arduino Mega. A continuous-rotation servo ignores angle and instead treats 90 as stop, <90 as one direction, >90 as the other - speed is set by how far from 90.
6#include <Servo.h>
7
8Servo myServo;
9#define SERVO_PIN 9
10
11void setup() {
12 Serial.begin(115200);
13 myServo.attach(SERVO_PIN);
14}
15
16void loop() {
17 myServo.write(180); // full speed one direction
18 delay(2000);
19 myServo.write(90); // stop
20 delay(1000);
21 myServo.write(0); // full speed other direction
22 delay(2000);
23 myServo.write(90); // stop
24 delay(1000);
25}
📄 File: micro_servo_sg90_-_360_degrees,_1.8_kg.cm,_plastic_gears_-_esp32.inoESP32
607 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin 25 on ESP32. A continuous-rotation servo ignores angle and instead treats 90 as stop, <90 as one direction, >90 as the other - speed is set by how far from 90.
6#include <Servo.h>
7
8Servo myServo;
9#define SERVO_PIN 25
10
11void setup() {
12 Serial.begin(115200);
13 myServo.attach(SERVO_PIN);
14}
15
16void loop() {
17 myServo.write(180); // full speed one direction
18 delay(2000);
19 myServo.write(90); // stop
20 delay(1000);
21 myServo.write(0); // full speed other direction
22 delay(2000);
23 myServo.write(90); // stop
24 delay(1000);
25}
📄 File: micro_servo_sg90_-_360_degrees,_1.8_kg.cm,_plastic_gears_-_esp8266.inoESP8266
609 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin D1 on ESP8266. A continuous-rotation servo ignores angle and instead treats 90 as stop, <90 as one direction, >90 as the other - speed is set by how far from 90.
6#include <Servo.h>
7
8Servo myServo;
9#define SERVO_PIN D1
10
11void setup() {
12 Serial.begin(115200);
13 myServo.attach(SERVO_PIN);
14}
15
16void loop() {
17 myServo.write(180); // full speed one direction
18 delay(2000);
19 myServo.write(90); // stop
20 delay(1000);
21 myServo.write(0); // full speed other direction
22 delay(2000);
23 myServo.write(90); // stop
24 delay(1000);
25}
📄 File: micro_servo_sg90_-_360_degrees,_1.8_kg.cm,_plastic_gears_-_stm32.inoSTM32
609 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin PA8 on STM32. A continuous-rotation servo ignores angle and instead treats 90 as stop, <90 as one direction, >90 as the other - speed is set by how far from 90.
6#include <Servo.h>
7
8Servo myServo;
9#define SERVO_PIN PA8
10
11void setup() {
12 Serial.begin(115200);
13 myServo.attach(SERVO_PIN);
14}
15
16void loop() {
17 myServo.write(180); // full speed one direction
18 delay(2000);
19 myServo.write(90); // stop
20 delay(1000);
21 myServo.write(0); // full speed other direction
22 delay(2000);
23 myServo.write(90); // stop
24 delay(1000);
25}
📄 File: micro_servo_sg90_-_360_degrees,_1.8_kg.cm,_plastic_gears_-_raspberry_pi_pico.inoRaspberry Pi Pico
619 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin 15 on Raspberry Pi Pico. A continuous-rotation servo ignores angle and instead treats 90 as stop, <90 as one direction, >90 as the other - speed is set by how far from 90.
6#include <Servo.h>
7
8Servo myServo;
9#define SERVO_PIN 15
10
11void setup() {
12 Serial.begin(115200);
13 myServo.attach(SERVO_PIN);
14}
15
16void loop() {
17 myServo.write(180); // full speed one direction
18 delay(2000);
19 myServo.write(90); // stop
20 delay(1000);
21 myServo.write(0); // full speed other direction
22 delay(2000);
23 myServo.write(90); // stop
24 delay(1000);
25}
Continuous-rotation variant of the SG90 - speed/direction control instead of position.

Specification

Specification

WeightWeight9 g
Dimensions2,2 × 1,2 × 2,5 cm
Product NameMicro Servo SG90 – 360° Rotation, 1.8 kg·cm, Plastic Gears
TypeMicro Servo Motor
Rotation360° continuous rotation
Torque1.8 kg·cm (at 4.8V)
Operating Voltage4.8V – 6V DC
GearsPlastic
Weight~9 g
MaterialPlastic body with metal shaft
ColorWhite / Blue (servo horn included)
ApplicationsRobotics, RC cars, small DIY projects, Arduino projects
FeaturesLightweight, compact, easy to control, widely compatible

Customer Reviews