This function creates a new instance of the Stepper class that represents a particular stepper motor attached to your Arduino board. Use it at the top of your sketch, above setup() and loop(). The number of parameters depends on how you've wired your motor, either using two or four pins of the Arduino board.### Syntax
Stepper(steps, pin1, pin2)
Stepper(steps, pin1, pin2, pin3, pin4)
A new instance of the Stepper motor class.
Stepper myStepper = Stepper(100, 5, 6);