คำอธิบาย
Micro Servo ขนาดเล็ก แต่พลังไม่เล็ก!
เหมาะสำหรับงานหุ่นยนต์, โปรเจ็กต์ Arduino, RC Model และงาน DIY ทุกประเภท
- แรงบิด 1.6 kgf/cm หมุนได้มั่นคงแม่นยำ
- Plastic Gears น้ำหนักเบา ลดเสียงรบกวน
- แรงดันทำงาน 4.8–6V ใช้ได้กับ Arduino และบอร์ดไมโครคอนโทรลเลอร์ส่วนใหญ่
- ความเร็วสูง 0.1s/60° ตอบสนองรวดเร็วทันใจ
- ขนาดกะทัดรัด 22.2×11.8×31 mm ติดตั้งง่ายในพื้นที่จำกัด
โค้ดตัวอย่าง Arduino ให้เริ่มใช้งานได้ทันที — แค่ต่อ ปรับโค้ด แล้วหมุนได้เลย! เหมาะสำหรับ: หุ่นยนต์บังคับ, แขนกล, รถ RC, โดรน, กลไกเปิด-ปิด และงาน DIY อื่นๆ ที่ต้องการความแม่นยำและน้ำหนักเบา
Micro Servo
- Analog servo
- Operating voltage 4.8-6V
- Plastic Gears
- Torque 1.6Kgf/cm
- Operating speed 0.1s/60 Degree
Dimension
- 22.2×11.8x31mm
Example Arduino Code
#include <Servo.h>
Servo myservo; // create servo object to control a servo
// twelve servo objects can be created on most boards
int pos = 0; // variable to store the servo position
void setup() {
myservo.attach(9); // attaches the servo on pin 9 to the servo object
}
void loop() {
for (pos = 0; pos <= 180; pos += 1) { // goes from 0 degrees to 180 degrees
// in steps of 1 degree
myservo.write(pos); // tell servo to go to position in variable 'pos'
delay(15); // waits 15 ms for the servo to reach the position
}
for (pos = 180; pos >= 0; pos -= 1) { // goes from 180 degrees to 0 degrees
myservo.write(pos); // tell servo to go to position in variable 'pos'
delay(15); // waits 15 ms for the servo to reach the position
}
}





รีวิว
ยังไม่มีบทวิจารณ์