بازگشت

این کالا را با دوستان خود به اشتراک بگذارید
درصورت نیاز به اطلاعات بیشتر و یا سفارش پروژه و دستگاه سفارشی با شماره پشتیبانی سایت تماس حاصل نمایید. تلفن تماس 09124818264 پس از خرید محصولات دانلودی و آموزشی به صفحه ی پروفایل قسمت دانلود ها مراجعه و فایلهای خود را دانلود کنید.
گارانتی اصالت و سلامت فیزیکی کالا
موجود در انبار
107,000 تومان

توضیحات بیشتر

Description
The DRV8825 Module A stroke engine driver includes an auxiliary board TI DRV8825 for launching microstrip dipole stator motors.
The module has an output and interface pin which is roughly equal to the A4988’s Aperture Stream Driver, which can be the highest-level replacement function for this win-win in many projects.
The features of this module include setting the flow range, protecting against excess flow and excessive temperature rise, and also has 6 microspaces with a resolution of up to 1/32 steps.
This module works at a voltage of 8.2 to 45 volts and can flow up to 2.5A in any phase without any fan-socket and fan current (with effective cooling up to 2.2A). This module is fully compatible with Ardino’s boards.
Features
have a simple control interface for direction and step
It has 6 different step modes: Full step, half step, ¼ steppe, 1/8 step, 1/8 step, 1/16 step and 1/32 step
Adjustable flow control for maximizing output current using
maximum potentiometer. Voltage 45 V
with internal regulator
Direct connection voltage 3.3 V and 5 V. System
 
example
Although understanding the ins and outs of the A4988 and the DRV8825 may have been difficult, the advantages of using them are clear.
The code necessary for its control is extremely simple, which makes them very practical and useful components to use.
We simply have to indicate, using two digital outputs, the instant at which we want the motor to advance one step, and the direction of rotation.
The speed of rotation is controlled by the time we allow to pass between steps.
The following example rotates the stepper motor one revolution in one direction, and two in the opposite direction at a slightly higher speed.
const int dirPin = 8;
const int stepPin = 9;
const int steps = 200;
int stepDelay;
void setup() {
// Marcar los pines como salida
pinMode(dirPin, OUTPUT);
pinMode(stepPin, OUTPUT);
}
void loop() {
//Activar una direccion y fijar la velocidad con stepDelay
digitalWrite(dirPin, HIGH);
stepDelay = 250;
// Giramos 200 pulsos para hacer una vuelta completa
for (int x = 0; x < steps * 1; x++) {
digitalWrite(stepPin, HIGH);
delayMicroseconds(stepDelay);
digitalWrite(stepPin, LOW);
delayMicroseconds(stepDelay);
}
delay(1000);
//Cambiamos la direccion y aumentamos la velocidad
digitalWrite(dirPin, LOW);
stepDelay = 150;
// Giramos 400 pulsos para hacer dos vueltas completas
for (int x = 0; x < steps * 2; x++) {
digitalWrite(stepPin, HIGH);
delayMicroseconds(stepDelay);
digitalWrite(stepPin, LOW);
delayMicroseconds(stepDelay);
}
delay(1000);
}

ادامه مطلب

دیدگاهها افزودن نظر

هنوز امتیازی ثبت نشده‌است
  • کیفیت ساخت
    3
  • ارزش خرید به قیمت
    3
  • نوآوری
    3
  • امکانات
    3
  • سهولت استفاده
    3
  • طراحی و ظاهر
    3
دیدگاه خود را درباره این کالا بیان کنید
افزودن دیدگاه
شما هم می‌توانید در مورد این کالا نظر دهید.
اگر این محصول را قبلا خریده باشید، دیدگاه شما به عنوان خریدار ثبت خواهد شد. همچنین در صورت تمایل می‌توانید به صورت ناشناس دیدگاه خود را ثبت کنید.
درایور استپر موتور DRV8825
درایور استپر موتور DRV8825
گارانتی اصالت و سلامت فیزیکی کالا
موجود در انبار
107,000 تومان