// THIS IS THE DISTRIBUTION HEADER FILE. // Please rename to init.h and make local customizations there. // Thanks -- Zach Hoeken /******************************** * digital i/o pin assignment ********************************/ //this uses the undocumented feature of Arduino - pins 14-19 correspond to analog 0-5 #define X_STEP_PIN 2 #define X_DIR_PIN 3 #define X_MIN_PIN 4 #define X_MAX_PIN 5 #define X_ENABLE_PIN 14 #define Y_STEP_PIN 6 #define Y_DIR_PIN 7 #define Y_MIN_PIN 8 #define Y_MAX_PIN 9 #define Y_ENABLE_PIN 15 #define Z_STEP_PIN 10 #define Z_DIR_PIN 11 #define Z_MIN_PIN 12 #define Z_MAX_PIN 13 #define Z_ENABLE_PIN 16 /******************************** * how many steps do our motors have? ********************************/ #define X_MOTOR_STEPS 400 #define Y_MOTOR_STEPS 400 #define Z_MOTOR_STEPS 400