Newby Question
ok, point of limitation , can looking wrote first adapted code match need , success in loading board:
things need working dcs, cliffs of dover , fsx p3d :
1. looking motors stop , reset on eject or crash.
2. not sure of gear ratio @ moment, can adjusted position match motor turn 360 x y z full rotation.
3.not sure speed yet needed
4. correct com3 connection information corrected
5. feedback based on steppes.
again not sure of in trying tackle willing , patient project.
code: [select]
// multistepper.pde
// -*- mode: c++ -*-
//
// shows how multiple simultaneous steppers
// runs 1 stepper forwards , backwards, accelerating , decelerating
// @ limits. runs other steppers @ same time
//
// copyright (c) 2009 mike mccauley
// $id: multistepper.pde,v 1.1 2011/01/05 01:51:01 mikem exp mikem $
#include <accelstepper.h>
// define steppers , pins use
accelstepper stepper1(1, 3, 6); // pin 3 = step, pin 6 = direction
accelstepper stepper2(1, 4, 7); // pin 4 = step, pin 7 = direction
accelstepper stepper3(1, 5, 9); // pin 5 = step, pin 8 = direction
void setup()
{
serial.begin(9600);
stepper1.setmaxspeed(1000);
stepper1.setspeed(1000);
stepper2.setmaxspeed(1000);
stepper2.setspeed(1000);
stepper3.setmaxspeed(1000);
stepper3.setspeed(1000);
}
void loop()
{
// change direction @ limits
if (stepper1.distancetogo() == 0)
stepper1.moveto(-stepper1.currentposition());
stepper1.run();
stepper2.run();
stepper3.run();
}
things need working dcs, cliffs of dover , fsx p3d :
1. looking motors stop , reset on eject or crash.
2. not sure of gear ratio @ moment, can adjusted position match motor turn 360 x y z full rotation.
3.not sure speed yet needed
4. correct com3 connection information corrected
5. feedback based on steppes.
again not sure of in trying tackle willing , patient project.
quote
things need working dcs, cliffs of dover , fsx p3dfor me @ least need explain talking about.
Arduino Forum > Using Arduino > Programming Questions > Newby Question
arduino
Comments
Post a Comment