# 9g Micro Servo - FS90 (180 degree, 1.5kg/cm)

**Type:** Product page · **SKU:** CE09376 · **Brand:** [Feetech](https://core-electronics.com.au/brands/feetech)
**Page:** https://core-electronics.com.au/feetech-fs90-1-5kgcm-micro-servo-9g.html ([markdown](https://core-electronics.com.au/feetech-fs90-1-5kgcm-micro-servo-9g.html.md))

Easily add motion to your projects with the FS90, the staple Maker servo.

## Pricing

- **Price:** $5.70 (inc GST) — $5.18 AUD, exc GST
- **Quantity discounts:** 6+ $4.76 (exc GST) · 50+ $4.40 (exc GST)

## Availability & dispatch

- In stock, ships same business day if ordered before 2PM (Australia/Sydney).
- We can dispatch 599 today; more stock is typically available with a 10–16 day lead time.

## Description

From robot arms to remote control planes, this servo is perfect for moving light objects.

If you have used similar 9g servos in past projects you'll love the upgrade to an official Feetech FS90, the template for third-party copies.

The FS90 is a PWM-driven servo so most dev boards and single-board computers are able to drive them with no changes to hardware, check out our guides for [Raspberry Pi](https://core-electronics.com.au/guides/control-servo-raspberry-pi/) and [Arduino](https://core-electronics.com.au/guides/servo-control-with-arduino/). But if you want to get fancy check out the [PiicoDev Servo Driver](https://core-electronics.com.au/piicodev-servo-driver.html), the driver board handles all of the PWM control, just send a command via the I2C bus!

### Specifications

- Model: FS90
- Weight: 9g
- Arm Angle Limit: 180 degrees
 
- Operating Voltage: 4.8V - 6V
- No load current: 120mA @ 6V
- Rated Continuous torque: 0.5kg/cm @ 6V
- Peak Torque: 1.5kg/cm @ 6V
- Stall Current: 800mA
 
- Gear Type: Plastic Gear
- Angle Range: 
    
    - 180 degrees @ 500 - 2500 µsec
- Size: 22.5mm x 12.1mm x 22.4mm
- Spline: 21T
 
### Includes

- FS90 9g Micro Servo
- Compatible servo horn pack with fasteners
 
### Dimension Drawing

![](https://core-electronics.com.au/attachments/localcontent/4646634205abbbfdeff813b1ad7a0b57cacb506b_60567ec59b2.png)

### Examples

#### Raspberry Pi Pico - Micropython

 ```
import machine
import utime

pwm1 = machine.PWM(machine.Pin(0))
pwm1.freq(50)

min_s = 1300
max_s = 8500

mid_p = int((max_s - min_s)/2)

def map_range(x, in_min, in_max, out_min, out_max):
    mapped = (x - in_min) * (out_max - out_min) / (in_max - in_min) + out_min
    return int(max(min(mapped, out_max), out_min))

def servo_wrapper(val):
    return map_range(val, 0, 180, 1500, 8000)

# Useful while attaching servo horns
# or finding the zero-point for continuous servos

# while True: 
#     pwm1.duty_u16(mid_p)

while True:    
    for i in range(0,180,10):
        print('Angle/Speed ', i)
        pwm1.duty_u16(servo_wrapper(i))
        utime.sleep(0.2)
        
    for i in range(180,0,-10):
        print('Angle/Speed ', i)
        pwm1.duty_u16(servo_wrapper(i))
        utime.sleep(0.2)
```

### Check out our other options to make your projects move!

**Maker Favourite Servos** - Add them to all the projects where you need movement!

- [9g micro servo (FS90)](https://core-electronics.com.au/feetech-1-5kg-continuous-rotation-servo-fs90r.html)
- [Standard size servo](https://core-electronics.com.au/feetech-fs5103b-standard-servo-3kg-cm.html)
- [Servo Pack for Robotics and Makers](https://core-electronics.com.au/servo-pack-for-makers.html)

**High Power Servos** - perfect for RC and Mechatronic projects:

- [FT5330M - Aluminium Servo](https://core-electronics.com.au/feetech-ft5320m-aluminium-servo-20kg-cm.html)
- [FT825BL - Large Servo](https://core-electronics.com.au/feetech-ft825bl-large-servo-25kg-cm.html)

**Servo Accessories** - Essentials for any robotics project:

- [1m Servo Extension cable](https://core-electronics.com.au/servo-extension-cable-1m.html)
- [Simple Servo Controller](https://core-electronics.com.au/kitronik-movement-module-simple-servo-controller.html)
- [Wheel for FS90R Servo](https://core-electronics.com.au/fs90r-wheeel.html)
 
**Smart Servos** - Offload some computing and use the latest in Servo Technology!

- [STS3215 - Smart Servo (19kg/cm)](https://core-electronics.com.au/feetech-sts3215-smart-servo.html)
- [STS3045M - Smart Servo (6kg/cm)](https://core-electronics.com.au/feetech-sts3045m-smart-servo.html)
- [Smart Servo Driver board](https://core-electronics.com.au/serial-bus-servo-driver-board.html)

## Guides for this product

- [Getting Started with Servos \| Examples with Raspberry Pi Pico](https://core-electronics.com.au/guides/digital-electronics/getting-started-with-servos-examples-with-raspberry-pi-pico/)

## Videos for this product

- [Getting Started with Servos \| Examples with Raspberry Pi Pico](https://core-electronics.com.au/videos/getting-started-with-servos-examples-with-raspberry-pi-pico)

## Images

- [Product image 1](https://core-electronics.com.au/media/catalog/product/c/e/ce09376-9g-micro-servo.jpg)
