Easily add motion to your projects with the FS90, the staple Maker servo.
In stock, ships same business day if ordered before 2PM
Delivered by Fri, 15th of Nov
Quantity Discounts:
Recommended Essentials:
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 and Arduino. But if you want to get fancy check out the PiicoDev Servo Driver, the driver board handles all of the PWM control, just send a command via the I2C bus!
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)
Exact shipping can be calculated on the view cart page (no login required).
Products that weigh more than 0.5 KG may cost more than what's shown (for example, test equipment, machines, >500mL liquids, etc).
We deliver Australia-wide with these options (depends on the final destination - you can get a quote on the view cart page):
Non-metro addresses in WA, NT, SA & TAS can take 2+ days in addition to the above information.
Some batteries (such as LiPo) can't be shipped by Air. During checkout, Express Post and International Methods will not be an option if you have that type of battery in your shopping cart.
International Orders - the following rates are for New Zealand and will vary for other countries:
If you order lots of gear, the postage amount will increase based on the weight of your order.
Our physical address (here's a PDF which includes other key business details):
Unit 18, 132 Garden Grove Parade
Adamstown
NSW, 2289
Australia
Take a look at our customer service page if you have other questions such as "do we do purchase orders" (yes!) or "are prices GST inclusive" (yes they are!). We're here to help - get in touch with us to talk shop.
Have a product question? We're here to help!
Makers love reviews as much as you do, please follow this link to review the products you have purchased.
Product Comments