Skip to product information
1 of 3

Axiometa

Servo Adapter

Servo Adapter

SKU:AX22-0031

Regular price $2.29
Regular price Sale price $2.29
Sale Sold out
Taxes included. Shipping calculated at checkout.
Need to plug in hobby servos without turning your AX22 build into a wiring octopus? This board does the trick. It brings three 3-pin male headers (Signal / 5 V / GND) out to the edge of the 22 × 22 mm footprint so standard female RC-servo leads snap straight on—no breadboards, no loose jumpers.  Drop it into any AX22 backplane and power three servos (or ESCs, LEDs, etc.) from one neat, protected hub—ideal for walkers, gimbals, pan-tilts, or animatronics controlled from Arduino IDE, MicroPython, or MicroBlocks.
View full details
  • Technical Details

    - 22 mm × 22 mm square
    - 4× ⌀2.7 mm Mounting Holes
    - 100kΩ to 200kΩ
    - 1.8 V, 3.3 V, 5.0 V
    - Pin order matches standard RC-servo cables
    - Headers spaced for easy simultaneous access
    - Arduino IDE Compatible
    - MicroPython Compatible
    - MicroBlocks Compatible

    Material Datasheet 
  • Pinout

  • Interface

  • Top

  • Bottom

Arduino Example Code

example.ino
#include <Servo.h>

Servo servo1;
Servo servo2;
Servo servo3;

void setup() {
  servo1.attach(8);
  servo2.attach(15);
  servo3.attach(45);
}

void loop() {
  for (int angle = 0; angle <= 180; angle += 1) {
    servo1.write(angle);
    servo2.write(angle);
    servo3.write(angle);
    delay(15);
  }
  for (int angle = 180; angle >= 0; angle -= 1) {
    servo1.write(angle);
    servo2.write(angle);
    servo3.write(angle);
    delay(15);
  }
}

        
  • First time setup

    Pair text with an image to focus on your chosen product, collection, or blog post. Add details on availability, style, or even provide a review.

  • Automatic Street Lights

    Pair text with an image to focus on your chosen product, collection, or blog post. Add details on availability, style, or even provide a review.

  • How Does an LDR work ?

    Pair text with an image to focus on your chosen product, collection, or blog post. Add details on availability, style, or even provide a review.