I am trying to get my Rostock Mini up on Repetier firmware 0.83 and am having no luck getting the hot end, heated bed and extruder to work. The thermistors appear to work just fine, I am getting good temperature readings back in Repetier Host but when I tell it to heat up the hot end or heated bed nothing happens. I checked through pins.h and believe that I have everything set correctly, what else could I possibly be missing?
On the positive side, everything else appears to be working well, it was easy to configure and calibrate stage motion :)
On the positive side, everything else appears to be working well, it was easy to configure and calibrate stage motion :)
/**************************************************************************************** * Arduino Mega pin assignment * ****************************************************************************************/ #if MOTHERBOARD == 33 #define MOTHERBOARD 3 #define RAMPS_V_1_3 #elif MOTHERBOARD == 34 #define MOTHERBOARD 3 #define RAMPS_V_1_3 #define AZTEEG_X3 #endif #if MOTHERBOARD == 3 #define KNOWN_BOARD 1 //////////////////FIX THIS////////////// #ifndef __AVR_ATmega1280__ #ifndef __AVR_ATmega2560__ #error Oops! Make sure you have 'Arduino Mega' selected from the 'Tools -> Boards' menu. #endif #endif // uncomment one of the following lines for RAMPS v1.3 or v1.0, comment both for v1.2 or 1.1 #define RAMPS_V_1_3 // #define RAMPS_V_1_0 #ifdef RAMPS_V_1_3 #define X_STEP_PIN 54 #define X_DIR_PIN 55 #define X_ENABLE_PIN 38 #define X_MIN_PIN -1 #define X_MAX_PIN 2 #define Y_STEP_PIN 60 #define Y_DIR_PIN 61 #define Y_ENABLE_PIN 56 #define Y_MIN_PIN -1 #define Y_MAX_PIN 15 #define Z_STEP_PIN 46 #define Z_DIR_PIN 48 #define Z_ENABLE_PIN 62 #define Z_MIN_PIN -1 #define Z_MAX_PIN 19 #define E0_STEP_PIN 26 #define E0_DIR_PIN 28 #define E0_ENABLE_PIN 24 #define E1_STEP_PIN 36 #define E1_DIR_PIN 34 #define E1_ENABLE_PIN 30 #define SDPOWER -1 #define SDSS 53 #define SDCARDDETECT 49 #define LED_PIN -1 #define FAN_PIN 9 #define PS_ON_PIN 12 #define KILL_PIN 41 #define HEATER_0_PIN 10 #define HEATER_1_PIN 8 #define HEATER_2_PIN -1 #define TEMP_0_PIN 13 // ANALOG NUMBERING #define TEMP_1_PIN 14 // ANALOG NUMBERING #define TEMP_2_PIN 15 #define E0_PINS E0_STEP_PIN,E0_DIR_PIN,E0_ENABLE_PIN, #define E1_PINS E1_STEP_PIN,E1_DIR_PIN,E1_ENABLE_PIN, #else // RAMPS_V_1_1 or RAMPS_V_1_2 as default #define X_STEP_PIN 26 #define X_DIR_PIN 28 #define X_ENABLE_PIN 24 #define X_MIN_PIN 3 #define X_MAX_PIN -1 //2 #define Y_STEP_PIN 38 #define Y_DIR_PIN 40 #define Y_ENABLE_PIN 36 #define Y_MIN_PIN 16 #define Y_MAX_PIN -1 //17 #define Z_STEP_PIN 44 #define Z_DIR_PIN 46 #define Z_ENABLE_PIN 42 #define Z_MIN_PIN 18 #define Z_MAX_PIN -1 //19 #define E0_STEP_PIN 32 #define E0_DIR_PIN 34 #define E0_ENABLE_PIN 30 #define SDPOWER 48 #define SDSS 53 #define LED_PIN 13 #define PS_ON_PIN -1 #define KILL_PIN -1 //#define SCL 21 //#define SDA 20 #define E0_PINS E0_STEP_PIN,E0_DIR_PIN,E0_ENABLE_PIN, #define E1_PINS #ifdef RAMPS_V_1_0 // RAMPS_V_1_0 #define HEATER_0_PIN 12 // RAMPS 1.0 #define HEATER_1_PIN -1 // RAMPS 1.0 #define FAN_PIN 11 // RAMPS 1.0 #else // RAMPS_V_1_1 or RAMPS_V_1_2 #define HEATER_0_PIN 10 // RAMPS 1.1 #define HEATER_1_PIN 8 // RAMPS 1.1 #define FAN_PIN 9 // RAMPS 1.1 #endif #define TEMP_0_PIN 2 // MUST USE ANALOG INPUT NUMBERING NOT DIGITAL OUTPUT NUMBERING!!!!!!!!! #define TEMP_1_PIN 1 // MUST USE ANALOG INPUT NUMBERING NOT DIGITAL OUTPUT NUMBERING!!!!!!!!! #endif // SPI for Max6675 Thermocouple // these pins are defined in the SD library if building with SD support #define SCK_PIN 52 #define MISO_PIN 50 #define MOSI_PIN 51 #define MAX6675_SS 53 #ifdef AZTEEG_X3 #define SDSUPPORT true #define SDCARDDETECTINVERTED false #define SDCARDDETECT -1 #define FAN_PIN 4 #define FAN2_PIN 5 #define LIGHT_PIN 6 #define BEEPER_PIN 33 // Activate beeper on extension shield #define BEEPER_TYPE 1 #endif #endif