Re: Repetier-Firmware Configuration Tool January 19, 2014 12:45PM |
Registered: 9 years ago Posts: 16 |
Re: Repetier-Firmware Configuration Tool January 19, 2014 12:50PM |
Registered: 12 years ago Posts: 2,705 |
Re: Repetier-Firmware Configuration Tool January 19, 2014 04:12PM |
Registered: 9 years ago Posts: 16 |
Re: Repetier-Firmware Configuration Tool February 26, 2014 02:14PM |
Registered: 9 years ago Posts: 3 |
Re: Repetier-Firmware Configuration Tool February 27, 2014 11:45AM |
Registered: 12 years ago Posts: 2,705 |
#define KNOWN_BOARD 1 #ifndef __AVR_ATmega2560__ #error Oops! Make sure you have 'Arduino Mega' selected from the 'Tools -> Boards' menu. #endif #define X_STEP_PIN 17 #define X_DIR_PIN 16 #define X_ENABLE_PIN 48 #define X_MIN_PIN 37 #define X_MAX_PIN 36 //Max endstops default to disabled "-1" #define Y_STEP_PIN 54 #define Y_DIR_PIN 47 #define Y_ENABLE_PIN 55 #define Y_MIN_PIN 35 #define Y_MAX_PIN 34 #define Z_STEP_PIN 57 #define Z_DIR_PIN 56 #define Z_ENABLE_PIN 62 #define Z_MIN_PIN 33 #define Z_MAX_PIN 32 #define E0_STEP_PIN 23 #define E0_DIR_PIN 22 #define E0_ENABLE_PIN 24 #define E1_STEP_PIN 26 #define E1_DIR_PIN 25 #define E1_ENABLE_PIN 27 #define E2_STEP_PIN 29 #define E2_DIR_PIN 28 #define E2_ENABLE_PIN 39 #define LED_PIN 13 #define FAN_PIN 7 #define FAN1 PIN 8 // (e.g. useful for electronics fan or light on/off) on PIN 8 #define PS_ON_PIN 45 #define HEATER_0_PIN 2 // EXTRUDER 1 #define HEATER_2_PIN 3 // EXTRUDER 2 #define HEATER_3_PIN 6 // EXTRUDER 3 //optional FAN1 can be used as 4th heater output: #define HEATER_4_PIN 8 // EXTRUDER 4 #define HEATER_1_PIN 9 // BED #define TEMP_0_PIN 15 // ANALOG NUMBERING #define TEMP_2_PIN 14 // ANALOG NUMBERING #define TEMP_3_PIN 13 // ANALOG NUMBERING //optional for extruder 4 or chamber: #define TEMP_2_PIN 12 // ANALOG NUMBERING #define TEMP_1_PIN 11 // ANALOG NUMBERING #define SDPOWER -1 #define SDSS 53 #define SCK_PIN 52 #define MISO_PIN 50 #define MOSI_PIN 51 #define E0_PINS E0_STEP_PIN,E0_DIR_PIN,E0_ENABLE_PIN, #define E1_PINS E1_STEP_PIN,E1_DIR_PIN,E1_ENABLE_PIN, #define E2_PINS E2_STEP_PIN,E2_DIR_PIN,E2_ENABLE_PIN,
Re: Repetier-Firmware Configuration Tool March 02, 2014 07:41AM |
Registered: 10 years ago Posts: 40 |
Commands.cpp:24: error: 'FAN_PIN' was not declared in this scope
Re: Repetier-Firmware Configuration Tool March 02, 2014 09:51AM |
Registered: 12 years ago Posts: 2,705 |
#define FAN_PIN ORIG_FAN_PIN
Re: Repetier-Firmware Configuration Tool March 02, 2014 05:15PM |
Registered: 16 years ago Posts: 129 |
Re: Repetier-Firmware Configuration Tool March 02, 2014 05:41PM |
Registered: 16 years ago Posts: 129 |
Re: Repetier-Firmware Configuration Tool March 03, 2014 01:42AM |
Registered: 10 years ago Posts: 14 |
Re: Repetier-Firmware Configuration Tool March 03, 2014 02:17PM |
Registered: 9 years ago Posts: 4 |
Re: Repetier-Firmware Configuration Tool March 03, 2014 02:48PM |
Registered: 10 years ago Posts: 40 |
Re: Repetier-Firmware Configuration Tool March 03, 2014 04:29PM |
Registered: 12 years ago Posts: 2,705 |
Re: Repetier-Firmware Configuration Tool March 03, 2014 04:40PM |
Registered: 9 years ago Posts: 4 |
Re: Repetier-Firmware Configuration Tool March 04, 2014 10:15AM |
Registered: 12 years ago Posts: 2,705 |
Re: Repetier-Firmware Configuration Tool March 04, 2014 01:32PM |
Registered: 9 years ago Posts: 4 |
Re: Repetier-Firmware Configuration Tool March 04, 2014 02:03PM |
Registered: 12 years ago Posts: 2,705 |
Re: Repetier-Firmware Configuration Tool March 04, 2014 03:51PM |
Registered: 9 years ago Posts: 4 |
Re: Repetier-Firmware Configuration Tool May 06, 2014 09:34PM |
Registered: 16 years ago Posts: 129 |
Re: Repetier-Firmware Configuration Tool April 03, 2015 03:03AM |
Registered: 8 years ago Posts: 1 |
Re: Repetier-Firmware Configuration Tool April 03, 2015 04:31AM |
Registered: 12 years ago Posts: 2,705 |