کوډ ولټوئ

لومړی ۱۰۷-۷: د ۲۸BYJ-۴۸ سټیپر موټور لیږل هرې زاویې ته د تعریف شویو STPB-۵ پش بټنونو سره

لومړی ۱۰۷-۷: د ۲۸BYJ-۴۸ سټیپر موټور لیږل هرې زاویې ته د تعریف شویو STPB-۵ پش بټنونو سره

پروژه ۷: څو تڼۍ د زاویې، سرعت او لارښوونې لپاره – د STPB-5 – 28BYJ-48 سټیپر موټور په کارولو سره

دا مقاله د ۸-پروژې جامع ټیوټوریل لړۍ برخه ده چې د 28BYJ-48 سټیپر موټور د Arduino سره پورې اړه لري. پروژه ۷ ښیي چې څنګه د څو فشار تڼیو په کارولو سره د موټور زاویه، سرعت او لارښوونه کنټرول کړو. دا ترتیب د فشار تڼۍ انٹرفیس (STPB-5) کاروي ترڅو د ریښتینې نړۍ سیسټمونه استازیتوب وکړي چیرې چې د کنټرول پینلونه یا ساده انٹرفیسونه د لارښوونې انپټ او متغیر کنټرول چمتو کوي.

stepper_28BYJ-48-0

بشپړ کوډ او د تارونو سکیماتیک لاندې چمتو شوي دي.

📘 پیژندنه

په دې پروژه کې، کاروونکی د څو تڼیو انپټ ماډل (STPB-5) له لارې له سیسټم سره تعامل کوي، کوم چې د کاروونکي انتخابونه سمول کوي. هر تڼۍ د یوې ځانګړې زاویې (لکه 90°، 180°)، یوې لارښوونې (مخکې/شاته)، یا یو سرعت سره مطابقت لري. تڼۍ تاسو ته اجازه درکوي چې پرته له کمپیوټر یا سریال مانیټر څخه پیچلي حرکتونه ترسره کړئ.

 

⚙️ تارونه

stepper_28BYJ-48_wiring_PB-_keep_pressed

تارونه لاندې شامل دي:

  • ULN2003 ډرایور ماډل د سټیپر موټور سره وصل شوی

  • څو فشار تڼۍ:

    • تڼۍ ۱: د Arduino پن ۲ → لارښوونه

    • تڼۍ ۲: د Arduino پن ۳ → 90°

    • تڼۍ ۳: د Arduino پن ۴ → 180°

    • تڼۍ ۴: د Arduino پن ۵ → سرعت

د هرې تڼۍ بل ترمینل د GND سره وصل دی، او ټولې د داخلي پل-اپ ریزسټرونو کاروي.

سرلیک: د پروژې ۷ تارونه: د څلور تڼیو STPB-5 ترتیب چې لارښوونه، زاویه او سرعت کنټرولوي.

ULN2003_board-1

💻 د کوډ تشریح

دا پروګرام څلور تڼۍ کاروي:

  • یوه د لارښوونې بدلولو لپاره

  • دوه د زاویې ټاکلو لپاره (90° یا 180°)

  • یوه د سرعت ټاکلو لپاره

  1. تعریفونه او ترتیب:

#include <Stepper.h>
const int stepsPerRevolution = 2048;
Stepper myStepper(stepsPerRevolution, 8, 10, 9, 11);
int dirPin = 2;
int angle90Pin = 3;
int angle180Pin = 4;
int speedPin = 5;
int direction = 1;
int speed = 10;
  1. د Setup فنکشن:

void setup() {
  pinMode(dirPin, INPUT_PULLUP);
  pinMode(angle90Pin, INPUT_PULLUP);
  pinMode(angle180Pin, INPUT_PULLUP);
  pinMode(speedPin, INPUT_PULLUP);
  myStepper.setSpeed(speed);
  Serial.begin(9600);
}
  1. د Loop فنکشن:

void loop() {
  if (digitalRead(dirPin) == LOW) {
    direction *= -1;
    delay(300);
  }

  if (digitalRead(speedPin) == LOW) {
    speed = (speed == 10) ? 15 : 10;
    myStepper.setSpeed(speed);
    delay(300);
  }

  if (digitalRead(angle90Pin) == LOW) {
    int steps = (2048 * 90) / 360;
    myStepper.step(direction * steps);
    delay(1000);
  }

  if (digitalRead(angle180Pin) == LOW) {
    int steps = (2048 * 180) / 360;
    myStepper.step(direction * steps);
    delay(1000);
  }
}
  • direction د مخکې/شاته لپاره د 1 او -1 ترمنځ بدلیږي

  • سرعت د 10 او 15 RPM ترمنځ بدلیږي

  • تڼۍ د کاروونکي انپټ پورې اړه لري د 90° یا 180° گردشونه ترسره کوي

🎬 د بشپړ ویډیو څخه وختونه

د دې پروژې لپاره لاندې وختونو ته مراجعه وکړئ:

  • 1:20:18 – پروژه ۷: پیژندنه

  • 1:21:40 – پروژه ۷: تارونه

  • 1:25:35 – پروژه ۷: کوډ

  • 1:32:43 – پروژه ۷: مظاهره

📁 د ډاونلوډ برخه

تاسو کولی شئ ټول اړین فایلونه، د سرچینې کوډ او د تارونو ډیاګرام په شمول، له لاندې څخه ډاونلوډ کړئ. دا پروژه یو فعال څو تڼۍ انٹرفیس معرفي کوي، کوم چې د ریښتینې نړۍ د کاروونکي کنټرول پینلونو تقلید کوي.

بل [پروژه ۸: د سټیپر موټور کنټرول د پوټینشیومیټر په کارولو سره] دی.

انځورونه

stepper_28BYJ-48-3
stepper_28BYJ-48-3
stepper_28BYJ-48-2
stepper_28BYJ-48-2
ULN2003_board-1
ULN2003_board-1
stepper_28BYJ-48-0
stepper_28BYJ-48-0
stepper_28BYJ-48-1
stepper_28BYJ-48-1
stepper_28BYJ-48_wiring_PB-_keep_pressed
stepper_28BYJ-48_wiring_PB-_keep_pressed
394-Lesson 107-7: Controlling a 28BYJ-48 Stepper Motor Using multiple buttons for any angles STPB-5: angle, speed, and direction
ژبه: C++
/*
* Lesson 107-6: Controlling a stepper motor using 3 push buttons STPB-4. 
STPB-4: We control a stepper motor using three push buttons. One push button for CW (fixed angle and speed) and another for CCW (fixed angle and speed), and one for stopping it. The angles are set in the code.
See the video for details and demonstration. 

In this lesson, we learn how to use a mini stepper motor 28BYJ-48 for our project. I am presenting eight projects
  so you can use it in almost any application. In the video, I have explained the code, shown the full wiring diagram, and 
  how to connect the wires, push buttons, and breadboard. 

  Project 1: Running motor 
  Project 2: Controlling stepper motor from Serial Monitor
  Project 3: Controlling stepper motor using push button STPB-1 
  Project 4: Controlling using push button STPB-2 (keep pressing)
  Project 5: One Revolution using push button STPB-3
  Project 6: Push button: Any Angle and speed STPB-4 
  Project 7: Using multiple buttons for any angles STPB-5: angle, speed, and direction (this code)
  Project 8: Controlling stepper motor using potentiometer

  * Watch Video instruction for this code: https://youtu.be/TQ7R2bY-MWU
  * 
  * This code is part of the Arduino Step by Step Course, which starts here:  https://youtu.be/-6qSrDUA5a8
  * 
  * For the library for this code, visit http://robojax.com/
  * 
 If you found this tutorial helpful, please support me so I can continue creating 
 content like this. Make a donation using PayPal or a credit card: https://bit.ly/donate-robojax 
 
 * Written by Ahmad Shamshiri for Robojax Robojax.com
 * on Jun 09, 2020 in Ajax, Ontario, Canada
 * 
 * 
  *  * This code is "AS IS" without warranty or liability. Free to be used as long as you keep this note intact.* 
  * This code has been downloaded from Robojax.com
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
     the Free Software Foundation, either version 3 of the License, or
     (at your option) any later version.
 
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     GNU General Public License for more details.
 
     You should have received a copy of the GNU General Public License
     along with this program.  If not, see <https://www.gnu.org/licenses/>.

 */


const int CW =1;
const int CCW =2;
const int STOP =3;

int Pin1 = 8;//IN1 is connected to 8 
int Pin2 = 9;//IN2 is connected to 9  
int Pin3 = 10;//IN3 is connected to 10 
int Pin4 = 11;//IN4 is connected to 11
int switchSTOP =2;//define input pin for STOP push button
int stopType=1;//1=normal stop, 2=hold stop (consumes power)

int speedFactor =1;//1=fastest, 2=slower or 3 more slower

long angles[] = {360, 270, 7655};//angles of each push button
int pushButtons[] ={3, 4, 5};//digial pin for each push button
int directions[] ={CW, CCW, CW};//direction of each push button
int speedFactors[] = {1, 1, 3};//speed for each push button


int correction_CW = 150;//watch video for details
int correction_CCW = 150;//watch video for details


int poleStep = 0; 
long stepVale =0;
const int SPR=64*64;
long goToAngle=0;
int activeButton=0;
int pole1[] ={0,0,0,0, 0,1,1,1, 0};//pole1, 8 step values
int pole2[] ={0,0,0,1, 1,1,0,0, 0};//pole2, 8 step values
int pole3[] ={0,1,1,1, 0,0,0,0, 0};//pole3, 8 step values
int pole4[] ={1,1,0,0, 0,0,0,1, 0};//pole4, 8 step values





int count=0;
int  dirStatus = STOP;// stores direction status 3= stop (do not change)

void setup() 
{ 
  //Robojax.com Stepper Push button Any Angle STPB-5
  Serial.begin(9600);
  Serial.print("Robojax Video for Stepper Motor STPB-2");  
  pinMode(Pin1, OUTPUT);//define pin for ULN2003 in1 
  pinMode(Pin2, OUTPUT);//define pin for ULN2003 in2   
  pinMode(Pin3, OUTPUT);//define pin for ULN2003 in3   
  pinMode(Pin4, OUTPUT);//define pin for ULN2003 in4   

  pinMode(switchSTOP,INPUT_PULLUP); 
  attachInterrupt(digitalPinToInterrupt(switchSTOP), stopMotor, FALLING );
  // see this https://www.arduino.cc/reference/en/language/variables/utilities/sizeof/
  for (byte i = 0; i < (sizeof(pushButtons) / sizeof(pushButtons[0])); i++) {
    pinMode(pushButtons[i],INPUT_PULLUP);
  }


 
} //setup
 void loop() 
{ 
    stepVale = (SPR * goToAngle)/360 ;
  //Robojax.com Stepper Push button Any Angle STPB-5

  //see this https://www.arduino.cc/reference/en/language/variables/utilities/sizeof/
 for (byte i = 0; i < (sizeof(angles) / sizeof(angles[0])); i++) {
    if(digitalRead(pushButtons[i]) == LOW) 
    {
      goToAngle =angles[i];
      dirStatus =directions[i];
      count =0;
      activeButton =i;
    }// if ends
 }//for loop ends
  
  
 if(dirStatus ==CCW){ 
  
   poleStep++; 
   count++;   
   if(count+correction_CCW <= stepVale)
   {
    driveStepper(poleStep);      
   }else{
      stopMotor();  
   }
  //full explanation at Arduino Course on Udemy.com see link above
 }else if(dirStatus ==CW){ 
   poleStep--; 
   count++;   
   if(count+correction_CW <=stepVale)
   {
    driveStepper(poleStep);      
   }else{
      stopMotor();  
   }   
 }else{
  stopMotor();   
 }
 if(poleStep>7){ 
   poleStep=0;
 } 
 if(poleStep<0){ 
   poleStep=7; 
 } 
  delay(speedFactors[activeButton]);
  
  //Robojax.com Stepper Push button Any Angle STPB-5

}// loop


/*
 * @brief moves motor to specific angle 
 * @param "angle" is an integer representing the angle
 * @return does not return anything
 * 
 * www.Robojax.com code April 19, 2020 at 01:22 in Ajax, Ontario, Canada
 */
void driveStepper(int c)
{
    //Robojax.com Stepper Push button Any Angle STPB-5
     digitalWrite(Pin1, pole1[c]);  
     digitalWrite(Pin2, pole2[c]); 
     digitalWrite(Pin3, pole3[c]); 
     digitalWrite(Pin4, pole4[c]);

}//driveStepper ends here

/*
 * @brief stops the motor immediately
 * @param none
 * @return does not return anything
 * 
 * www.Robojax.com code June 09, 2020 at 11:09 in Ajax, Ontario, Canada
 */
void stopMotor()
{
  //see this https://www.arduino.cc/reference/en/language/variables/utilities/sizeof/
 for (byte i = 0; i < (sizeof(angles) / sizeof(angles[0])); i++) {
    digitalWrite(pushButtons[i], HIGH); 

 }//for loop ends
 dirStatus = STOP;
 if( stopType ==2)
 {
  driveStepper(8);
 }
}//stopMotor()

هغه شیان چې تاسو ورته اړتیا لرئ

فایلونه📁

Fritzing فایل