当前位置:首页 > 科学研究 > 电子编程 > 正文内容

Arduino Project 025 - Servo Control

RonWang1个月前 (11-13)电子编程80

You will need to obtain a standard RC servo; any of the small or mid-sized servos will do. Larger servos are not recommended because they require their own power supply as they consume a lot of current. Also, you’ll need a potentiometer; pretty much any value rotary potentiometer will do. I used a 4.7K ohm one for testing. Note that you may also wish to connect your Arduino to an external DC power supply.

Project 25 Basic Servo Control

Arduino Servo Motor Circuit

Arduino Servo Motor Circuit

Arduino Servo Motor Schematic

Arduino Servo Motor Circuit

/* Coding Ron Wang
   Nov.13th 2024
   Autaba support for coding hardware
   Project 25 Basic Servo Control
 */

#include <Servo.h>
Servo servo1; // Create a servo object
void setup()
{
 servo1.attach(5); // Attaches the servo on Pin 5 to the servo object
}
void loop()
{
 int angle = analogRead(0); // Read the pot value
 angle=map(angle, 0, 1023, 0, 180); // Map the values from 0 to 180 degrees
 servo1.write(angle); // Write the angle to the servo
 delay(15); // Delay of 15ms to allow servo to reach position
}

版权声明:本文为原创文章,版权归donstudio所有,欢迎分享本文,转载请保留出处!

本文链接:http://parentscn.com/?id=279

标签: Arduino

相关文章

Arduino Project 006 - LED Interactive Chase Effect

Arduino Project 006 - LED Interactive Chase Effect

Leave your circuit board intact from Project 5. You’re just going to add a potentiometer to this cir...

Arduino Project 023B - Liquid Crystal Displays -Blink and Cursor

Arduino Project 023B - Liquid Crystal Displays -Blink and Cursor

Before wiring the LCD screen to your Arduino board we suggest to solder a pin header strip to the 14...

 Arduino Project 038 - Simple Ultrasonic Range HC-SR04

Arduino Project 038 - Simple Ultrasonic Range HC-SR04

Ultrasonic range finders measure distance by emitting a pulse of ultrasonic sound that travels throu...

Arduino Project 010 - Serial Controlled Mood Lamp

Arduino Project 010 - Serial Controlled Mood Lamp

For Project 10, you will revisit the circuit from Project 8 — RGB Mood Lamp, but you’ll now delve in...

Arduino Project 041 - Ultrasonic Distance OLED 128X64 Display

Arduino Project 041 - Ultrasonic Distance OLED 128X64 Display

About the Ultrasonic sensor knowledge and infor mation click the link : Arduino Project 038 - S...

Arduino Project 030B - MX1508 H-Driver Motor

Arduino Project 030B - MX1508 H-Driver Motor

MX1508 H-BridgeDual Motor DriverThe driver can drive up to two motors. The H-Bridge dual motor drive...

发表评论

访客

看不清,换一张

◎欢迎参与讨论,请在这里发表您的看法和观点。