Borrar filtros
Borrar filtros

How can I control a stepper motor (in arduino) with matlab?

46 visualizaciones (últimos 30 días)
Gianmarco
Gianmarco el 12 de Nov. de 2013
Comentada: Lorenzo Lellini el 15 de Dic. de 2022
Hi, I connected a stepper motor to arduino and this is the example script that I used:
include <Stepper.h>
const int stepsPerRevolution = 200; // change this to fit the number of steps per revolution
// for your motor
// initialize the stepper library on pins 8 through 11:
Stepper myStepper(stepsPerRevolution, 8,9,10,11);
void setup() {
// set the speed at 60 rpm:
myStepper.setSpeed(60);
// initialize the serial port:
Serial.begin(9600);
}
void loop() {
// step one revolution in one direction:
Serial.println("clockwise");
myStepper.step(stepsPerRevolution);
delay(500);
// step one revolution in the other direction:
Serial.println("counterclockwise");
myStepper.step(-stepsPerRevolution);
delay(500);
}
How can I 'translate' this script in matlab code? My problem is that I want to control the rotation of the stepper depending on a value computed in matlab, so should be great if I could control the stepper motor directly with matlab. I saw that already exists 'ARDUINO I\O Package' but that works only with arduino motor shield but I have 'ARDUINO UNO'. Can anyone help me please?
  2 comentarios
Shubham Shah
Shubham Shah el 27 de Sept. de 2016
I have the exact same problem...!! #Gianmarco did you find out how to do this yet ? if you have tell me please.
Lorenzo Lellini
Lorenzo Lellini el 15 de Dic. de 2022
Did you find a way to control it with Arduino?
I mean also to control speed and other stepper library parameters and not just the pins.

Iniciar sesión para comentar.

Respuestas (1)

BRITISH ASHOK
BRITISH ASHOK el 24 de Feb. de 2020

Comunidades de usuarios

Más respuestas en  Power Electronics Control

Categorías

Más información sobre Arduino Hardware en Help Center y File Exchange.

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by