hello my name is Charles, I would like to point out an error in the firmware repetier 0.82, which concerns the generation 7 v 1.5 card, called 71 in the firmware, since in repetier host I do not read the values of the thermistor 'extruder, after several attempts I controlled as the pins were configured in pins.h and they were these:
/ / extruder pins
# define E0_STEP_PIN 19
# define E0_DIR_PIN 18
# define E0_ENABLE_PIN 25
# define TEMP_0_PIN 0
# define TEMP_1_PIN 1
# define HEATER_0_PIN 4
# define HEATER_1_PIN 3
checking atmega pinout # define TEMP_0_PIN that controls the temperature of the 'extruder is 1 not 0 and # define TEMP_1_PIN that controls the temperature of the' heatbed is 0 not 1, after I change the values in pins.h:
# define TEMP_0_PIN 1
# define TEMP_1_PIN 0
everything worked out regularly.
/ / extruder pins
# define E0_STEP_PIN 19
# define E0_DIR_PIN 18
# define E0_ENABLE_PIN 25
# define TEMP_0_PIN 0
# define TEMP_1_PIN 1
# define HEATER_0_PIN 4
# define HEATER_1_PIN 3
checking atmega pinout # define TEMP_0_PIN that controls the temperature of the 'extruder is 1 not 0 and # define TEMP_1_PIN that controls the temperature of the' heatbed is 0 not 1, after I change the values in pins.h:
# define TEMP_0_PIN 1
# define TEMP_1_PIN 0
everything worked out regularly.