Question: Hi Can someone draw a flowchart for this code with the explanation in details that how the code is running? #include const int stepsPerRevolution =
Hi
Can someone draw a flowchart for this code with the explanation in details that how the code is running?
#include
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);
int stepCount = 0; // number of steps the motor has taken
void setup() { // initialize the serial port: Serial.begin(9600);
// L298N for Robojax.com pinMode(2,OUTPUT);// for EN1 digitalWrite(2,HIGH);// enable EN1 pinMode(3,OUTPUT);// for EN1 digitalWrite(3,HIGH); // enable EN2
myStepper.setSpeed(100); }
void loop() { int steps = 720; myStepper.step(steps); delay(10);
steps = -720; myStepper.step(steps); delay(50); }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
