Monk Makes Servo for micro:bit

SKU: CE06257 Brand: Monk Makes
The MonkMakes Servo for micro:bit board provides a really easy way to attach up to three servomotors to a BBC micro:bit.
$14.30 AUD, inc GST
$13.00 AUD, exc GST

In stock, ships same business day if ordered before 2PM
Delivered by Tue, 2nd of Apr

Quantity Discounts:

  • 10-25 $12.61 (exc GST)
  • 25+ $12.35 (exc GST)
- +

4 from local stock, 1 supplier stock; your order will dispatch between Dec 1 to Dec 10. And yes, stock levels and lead times are accurate!

Shipping:

  • $6+ Standard (5+ days*, tracked)
  • $10+ Express (2+ days*, tracked)
  • FREE Pickup (Newcastle only - must order online*)

Shipping costs may increase for heavy products or large orders.

Exact shipping can be calculated on the view cart page.

*Conditions apply, see shipping tab below.

The MonkMakes Servo for micro:bit board provides a really easy way to attach up to three servomotors to a BBC micro:bit. The board requires a power supply or battery pack to provide 5 or 6V to the servomotors. It includes a voltage regulator that will supply 3V back to the micro:bit, so that you don’t have to power it separately.

If you have one of our Servo Kit for micro:bit products, then you will find more information about that here. This is where you will also finds a getting started guide for this board.

Features

  • Header pins for three servo motors
  • Up to 2A total can be supplied to the servo motors
  • Regulated 3V output to power your micro:bit
  • Polarity protection for the servomotors
  • Electrolytic reservoir capacitor for the servomotors
  • 1kΩ series resistors to the control signals to prevent accidental sort-circuits of the micro:bit’s output pins.
  • Orange LED to indicate that the Servo for micro:bit board has power.
  • Works with both the micro:bit V1 and micro:bit V2

Connections
The picture below shows a typical setup using the Servo for micro:bit board.

The following connections have been made:

  • 3 x servomotors plugged into header pins. These need to be the right way around, with the control signal (yellow or orange wire) to the left (pins marked c).
  • Alligator clip lead from GND on the micro:bit to GND on the Servo for micro:bit board.
  • Optional alligator clip lead from 3V on the micro:bit to 3V on the Servo for micro:bit board. You only need this if you want to power the micro:bit from the same battery pack as the servomotors. If you want to power the micro:bit over USB or the JST battery connector then you do not need this connection.
  • Alligator clip leads between P0, P1, P2 on the micro:bit to the Servo for micro:bit board. These need to match up with the servomotors you are using, so if you only need the board for one servomotor, then just connect P0 on the micro:bit to P0 on the Servo for micro:bit and make sure that there is a servomotor attached to the header pins marked 0.
  • Power to the screw terminal on the Servo for micro:bit. Typically this will be a 4xAA battery pack or other power supply. Make sure that the positive lead goes to the screw terminal marked with a +

Test Software

Block Code

To check that everything is working, this Blocks code project will get you started. Flash it onto your Servo for micro:bit and the servo arms should all start waggling in a random manner. You can see a video of this in action here.

The servo write pin block allows you to set the angle of the servomotor’s arm between 0 and 180 degrees. Note that servomotors, will not usually travel a full 180 degrees so you may find the actual range is more like 10 to 170 degrees.

MicroPython

The following MicroPython example will move the servo one way or another when you press the A and B buttons.

from microbit import *

def set_servo_angle(pin, angle):
  duty = 26 + (angle * 102) / 180
  pin.write_analog(duty)

angle = 90
set_servo_angle(pin2, angle)

while True:
  if button_a.was_pressed() and angle >= 10:
    angle -= 10
    set_servo_angle(pin2, angle)
  if button_b.was_pressed() and angle <= 170:
    angle += 10
    set_servo_angle(pin2, angle)

  if button_a.is_pressed() and button_b.is_pressed():

  display.scroll(str(angle))

Product Comments

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):

  • $3+ for Stamped Mail (typically 10+ business days, not tracked, only available on selected small items)
  • $6+ for Standard Post (typically 6+ business days, tracked)
  • $10+ for Express Post (typically 2+ business days, tracked)
  • Pickup - Free! Only available to customers who live in the Newcastle region (must order online and only pickup after we email to notify you the order is ready). Orders placed after 2PM may not be ready until the following business day.

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:

  • $11+ for Pack and Track (3+ days, tracked)
  • $16+ for Express International (2-5 days, tracked)

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!

Write Your Own Review

Videos

View All

Guides

MOVE Mini Assembly Guide

The :MOVE MINI allows you to turn your micro:bit into a simple robot! In this guide, we will give yo...
The :MOVE MINI allows you to turn your micro:bit into a simple robot! In this guide, we will give yo...

Data Logging with the Micro:bit and OpenLog

The Micro:bit by BBC is a great data collection tool, it just needs a little help remembering what i...
The Micro:bit by BBC is a great data collection tool, it just needs a little help remembering what i...

The Maker Revolution

The Maker Revolution celebrates the creation of new devices and the modification of existing ones - ...
The Maker Revolution celebrates the creation of new devices and the modification of existing ones - ...

micro:bit in the classroom

Check out our Getting started with micro:bit video if you'd like to see a quick tutorial on w...
Check out our Getting started with micro:bit video if you'd like to see a quick tutorial on w...

Projects

Micro:bit based GlowBit Car

I made this car because at school there was a Lego We-Do tug-of-war competition but the cars only d...
I made this car because at school there was a Lego We-Do tug-of-war competition but the cars only d...

Micro:bit Random Selector

This project has been created to be used as an exemplar for Year 7 Technology students to demonstrat...
This project has been created to be used as an exemplar for Year 7 Technology students to demonstrat...
Feedback

Please continue if you would like to leave feedback for any of these topics:

  • Website features/issues
  • Content errors/improvements
  • Missing products/categories
  • Product assignments to categories
  • Search results relevance

For all other inquiries (orders status, stock levels, etc), please contact our support team for quick assistance.

Note: click continue and a draft email will be opened to edit. If you don't have an email client on your device, then send a message via the chat icon on the bottom left of our website.

Makers love reviews as much as you do, please follow this link to review the products you have purchased.