#include<Stepper.h>
#include<LiquidCrystal.h>
int stepperrevolution=200;
int rs=11;
int en=10;
int d4=9;int d5=8;int d6=7;int d7=6;
Stepper my(stepperrevolution,2,3,4,5);
LiquidCrystal lcd(rs,en,d4,d5,d6,d7);
void setup() {
// put your setup code here, to run once:
my.setSpeed(60);
lcd.begin (20,4);
lcd.print("running ");
}
void loop() {
// put your main code here, to run repeatedly:
my.step(stepperrevolution);
lcd.clear();
lcd.setCursor(1,1);
lcd.print("running ");
delay(500);
}