Atm_AccelStepper.ino 325 B

12345678910111213141516171819202122
  1. #include <Automaton.h>
  2. #include "Atm_AccelStepper.h"
  3. // Basic Arduino sketch - instantiates the state machine and nothing else
  4. Atm_AccelStepper AccelStepper;
  5. void setup() {
  6. // Serial.begin( 9600 );
  7. // AccelStepper.trace( Serial );
  8. AccelStepper.begin();
  9. }
  10. void loop() {
  11. automaton.run();
  12. }