Druckproblem 26. January 2014 06:03 |
Registrierungsdatum: 11 Jahre zuvor Beiträge: 69 |
Re: Druckproblem 26. January 2014 06:12 |
Registrierungsdatum: 12 Jahre zuvor Beiträge: 531 |
Re: Druckproblem 26. January 2014 06:16 |
Registrierungsdatum: 11 Jahre zuvor Beiträge: 69 |
Re: Druckproblem 26. January 2014 07:20 |
Registrierungsdatum: 11 Jahre zuvor Beiträge: 69 |
Re: Druckproblem 30. January 2014 14:28 |
Registrierungsdatum: 13 Jahre zuvor Beiträge: 388 |
Re: Druckproblem 30. January 2014 16:03 |
Registrierungsdatum: 11 Jahre zuvor Beiträge: 69 |
/** \brief Set true if you have a heated bed conected to your board, false if not */ #define HAVE_HEATED_BED true #define HEATED_BED_MAX_TEMP 115 /** Skip M190 wait, if heated bed is already within x degrees. Fixed numbers only, 0 = off. */ #define SKIP_M190_IF_WITHIN 15 // Select type of your heated bed. It's the same as for EXT0_TEMPSENSOR_TYPE // set to 0 if you don't have a heated bed #define HEATED_BED_SENSOR_TYPE 1 /** Analog pin of analog sensor to read temperature of heated bed. */ #define HEATED_BED_SENSOR_PIN TEMP_1_PIN /** \brief Pin to enable heater for bed. */ #define HEATED_BED_HEATER_PIN HEATER_1_PIN // How often the temperature of the heated bed is set (msec) #define HEATED_BED_SET_INTERVAL 1000 /** Heat manager for heated bed: 0 = Bang Bang, fast update 1 = PID controlled 2 = Bang Bang, limited check every HEATED_BED_SET_INTERVAL. Use this with relais driven beds to save life */ #define HEATED_BED_HEAT_MANAGER 1 /** \brief The maximum value, I-gain can contribute to the output. The precise values may differ for different nozzle/resistor combination. Overridden if EEPROM activated. */ #define HEATED_BED_PID_INTEGRAL_DRIVE_MAX 255 /** \brief lower value for integral part The I state should converge to the exact heater output needed for the target temperature. To prevent a long deviation from the target zone, this value limits the lower value. A good start is 30 lower then the optimal value. You need to leave room for cooling. Overridden if EEPROM activated. */ #define HEATED_BED_PID_INTEGRAL_DRIVE_MIN 80 /** P-gain. Overridden if EEPROM activated. */ #define HEATED_BED_PID_PGAIN 255 /** I-gain Overridden if EEPROM activated.*/ #define HEATED_BED_PID_IGAIN 33.02 /** Dgain. Overridden if EEPROM activated.*/ #define HEATED_BED_PID_DGAIN 290 // maximum time the heater is can be switched on. Max = 255. Overridden if EEPROM activated. #define HEATED_BED_PID_MAX 250 /** Include PID control for all heaters. */ #define TEMP_PID true //// Experimental watchdog and minimal temp // The watchdog waits for the watchperiod in milliseconds whenever an M104 or M109 increases the target temperature // If the temperature has not increased at the end of that period, the target temperature is set to zero. It can be reset with another M104/M109 //#define WATCHPERIOD 5000 //5 seconds //// The minimal temperature defines the temperature below which the heater will not be enabled #define MINTEMP 30 //// Experimental max temp // When temperature exceeds max temp, your heater will be switched off. // This feature exists to protect your hotend from overheating accidentally, but *NOT* from thermistor short/failure! // You should use MINTEMP for thermistor short/failure protection. #define MAXTEMP 150 /** Extreme values to detect defect thermistors. */ #define MIN_DEFECT_TEMPERATURE -10 #define MAX_DEFECT_TEMPERATURE 300 /** \brief Used reference, normally ANALOG_REF_AVCC or ANALOG_REF_AREF for experts ANALOG_REF_INT_2_56 = 2.56V and ANALOG_REF_INT_1_1=1.1V inernaly generated */ #define ANALOG_REF ANALOG_REF_AVCC