Axiometa
Servo Adapter
Servo Adapter
SKU:AX22-0031
Regular price
$2.29
Regular price
Sale price
$2.29
Unit price
per
Taxes included.
Shipping calculated at checkout.
Couldn't load pickup availability



-
Pinout
-
Interface
PCB Design
-
Top
-
Bottom
Arduino Example Code
#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);
}
}
Guides and Blogs
-
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.