fixed sanguinololu pins.h
This commit is contained in:
parent
ae9e6f6152
commit
0ff215446b
1 changed files with 13 additions and 11 deletions
|
|
@ -416,50 +416,52 @@
|
|||
#error Oops! Make sure you have 'Sanguino' selected from the 'Tools -> Boards' menu.
|
||||
#endif
|
||||
|
||||
// uncomment the following line for Sanguinololu v1.2, comment for 1.1 or earlier.
|
||||
// #define SANGUINOLOLU_V_1_2
|
||||
// comment the following line for Sanguinololu v1.1 or earlier.
|
||||
#define SANGUINOLOLU_V_1_2
|
||||
|
||||
|
||||
#define X_STEP_PIN 15
|
||||
#define X_DIR_PIN 21
|
||||
#define X_ENABLE_PIN -1
|
||||
#define X_MIN_PIN 18
|
||||
#define X_MAX_PIN -2 //2
|
||||
#define X_MAX_PIN -2
|
||||
|
||||
#define Y_STEP_PIN 22
|
||||
#define Y_DIR_PIN 23
|
||||
#define Y_ENABLE_PIN -1
|
||||
#define Y_MIN_PIN 19
|
||||
#define Y_MAX_PIN -1 //17
|
||||
#define Y_MAX_PIN -1
|
||||
|
||||
#define Z_STEP_PIN 3
|
||||
#define Z_DIR_PIN 2
|
||||
// zenable defined by platform below
|
||||
#define Z_MIN_PIN 20
|
||||
#define Z_MAX_PIN -1 //19
|
||||
#define Z_MAX_PIN -1
|
||||
|
||||
#define E_STEP_PIN 1
|
||||
#define E_DIR_PIN 0
|
||||
#define E_ENABLE_PIN -1
|
||||
|
||||
#define LED_PIN -1
|
||||
|
||||
#define FAN_PIN -1 // THIS LINE FOR V1.0
|
||||
#define FAN_PIN -1
|
||||
|
||||
#define PS_ON_PIN -1
|
||||
#define KILL_PIN -1
|
||||
|
||||
#define HEATER_0_PIN 13 // THIS LINE FOR V1.0+ (extruder)
|
||||
#define HEATER_0_PIN 13 // (extruder)
|
||||
|
||||
#ifdef SANGUINOLOLU_V_1_2
|
||||
|
||||
#define HEATER_1_PIN 12 // (bed)
|
||||
#define X_ENABLE_PIN 14
|
||||
#define Y_ENABLE_PIN 14
|
||||
#define Z_ENABLE_PIN 26
|
||||
#define E_ENABLE_PIN 14
|
||||
|
||||
#else
|
||||
|
||||
#define HEATER_1_PIN 14 // (bed)
|
||||
#define X_ENABLE_PIN -1
|
||||
#define Y_ENABLE_PIN -1
|
||||
#define Z_ENABLE_PIN -1
|
||||
#define E_ENABLE_PIN -1
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue