//rotate stepper motor... on button pressed
//precise number of steps
//as defined by potentiometer
//by elaine & rico fa2024 apr7
#include <AccelStepper.h>
#include <Servo.h>
// Stepper motor pins
#define dirPin 5
#define stepPin 2
#define swPin 4
int buttonState = 0;
Servo cutServo; //create instance object of servo class - called cutServo
// Define the stepper motor and the pins that are connected to
AccelStepper stepper1(1, stepPin, dirPin); // (Typeof driver: with 2 pins, STEP, DIR)
unsigned int stepStart = 0; //value will increase for every woire length cut
int stepAdd = 0; //adjust value to get desired wire length
void setup() {
Serial.begin(9600);
// Stepper Motor Parameter
stepper1.setMaxSpeed(1000); // Set maximum speed value for the stepper
stepper1.setAcceleration(500); // Set acceleration value for the stepper
stepper1.setCurrentPosition(0); // Set the current position to 0 steps
cutServo.attach(9);
pinMode (swPin, INPUT);
}
void loop() {
//Grab value from potentiometer
stepAdd = 150;
//stepAdd = length*17; //length should be in cm... 1 cm = 17 steps
Serial.println(stepAdd);
//check if button is pressed
buttonState = digitalRead (swPin);
// Move stepper motor the required number of steps in clock-wise direction when button pushed
//for (int i=0; i==qty; i++) { //... comment out next line and use this line when quantity value is received
if (buttonState == HIGH) {
advanceWire();
}
}
//steppermotor function
void advanceWire () {
stepper1.moveTo(stepStart);
stepper1.runToPosition ();
stepStart = stepStart + stepAdd ;
delay (1000);
cutWire();
delay(3000);
}
void cutWire () {
cutServo.write(0);
delay(500);
cutServo.write(90);
delay(500);
cutServo.write(0);
}
uno:A5.2
uno:A4.2
uno:AREF
uno:GND.1
uno:13
uno:12
uno:11
uno:10
uno:9
uno:8
uno:7
uno:6
uno:5
uno:4
uno:3
uno:2
uno:1
uno:0
uno:IOREF
uno:RESET
uno:3.3V
uno:5V
uno:GND.2
uno:GND.3
uno:VIN
uno:A0
uno:A1
uno:A2
uno:A3
uno:A4
uno:A5
drv1:ENABLE
drv1:MS1
drv1:MS2
drv1:MS3
drv1:RESET
drv1:SLEEP
drv1:STEP
drv1:DIR
drv1:GND.1
drv1:VDD
drv1:1B
drv1:1A
drv1:2A
drv1:2B
drv1:GND.2
drv1:VMOT
stepper1:A-
stepper1:A+
stepper1:B+
stepper1:B-
vcc1:VCC
gnd1:GND
btn1:1.l
btn1:2.l
btn1:1.r
btn1:2.r
r1:1
r1:2
servo1:GND
servo1:V+
servo1:PWM