Re: Repetier Firmware and Host December 26, 2011 09:05AM |
Registered: 12 years ago Posts: 62 |
Re: Repetier Firmware and Host December 28, 2011 12:29PM |
Registered: 11 years ago Posts: 2,705 |
#define HAVE_HEATED_BED false #define HEATED_BED_SENSOR_TYPE 1 // 1-101 depending on sensor type
Re: Repetier Firmware and Host January 01, 2012 01:42PM |
Registered: 12 years ago Posts: 117 |
Re: Repetier Firmware and Host January 01, 2012 02:19PM |
Registered: 11 years ago Posts: 2,705 |
Re: Repetier Firmware and Host January 01, 2012 03:50PM |
Registered: 12 years ago Posts: 117 |
Re: Repetier Firmware and Host January 03, 2012 08:49PM |
ddexd
Re: Repetier Firmware and Host January 03, 2012 10:04PM |
Re: Repetier Firmware and Host January 04, 2012 10:56AM |
Registered: 11 years ago Posts: 2,705 |
#define COMPAT_PRE1
Re: Repetier Firmware and Host January 04, 2012 05:21PM |
Registered: 11 years ago Posts: 70 |
ddexdd
Re: Repetier Firmware and Host January 04, 2012 07:31PM |
Re: Repetier Firmware and Host January 05, 2012 03:21AM |
Registered: 11 years ago Posts: 2,705 |
Re: Repetier Firmware and Host January 06, 2012 09:12AM |
Registered: 12 years ago Posts: 62 |
Re: Repetier Firmware and Host January 06, 2012 09:34AM |
Registered: 11 years ago Posts: 2,705 |
Re: Repetier Firmware and Host January 06, 2012 09:34AM |
Registered: 13 years ago Posts: 80 |
Re: Repetier Firmware and Host January 06, 2012 11:31AM |
Re: Repetier Firmware and Host January 07, 2012 06:46AM |
Registered: 12 years ago Posts: 62 |
Re: Repetier Firmware and Host January 08, 2012 12:45AM |
Registered: 12 years ago Posts: 62 |
Re: Repetier Firmware and Host January 08, 2012 12:36PM |
Registered: 11 years ago Posts: 2,705 |
Re: Repetier Firmware and Host January 09, 2012 01:42PM |
Registered: 11 years ago Posts: 120 |
Re: Repetier Firmware and Host January 09, 2012 05:01PM |
Registered: 11 years ago Posts: 2,705 |
Re: Repetier Firmware and Host January 09, 2012 08:26PM |
Registered: 11 years ago Posts: 120 |
Re: Repetier Firmware and Host January 10, 2012 09:04AM |
Registered: 11 years ago Posts: 49 |
Re: Repetier Firmware and Host February 03, 2012 01:54PM |
Registered: 12 years ago Posts: 216 |
#define TEMP_0_PIN PINA1 //Yes strange, but I couldn't use the usual pin 30, don't know why. #define TEMP_1_PIN PINA2 //not working #define HEATER_0_PIN 3 #define HEATER_1_PIN 4 //not working
#define HAVE_HEATED_BED true #if HAVE_HEATED_BED==true // 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 /** Index of analog sensor to read temperature of heated bed. look at ANALOG_INPUT_CHANNELS for the position or to add the Arduino pin id there. */ #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 5000 #else #define HEATED_BED_SENSOR_TYPE 5 #define HEATED_BED_SENSOR_PIN -1 #define HEATED_BED_HEATER_PIN -1 #endif // uncomment to use AREF for reference voltage // on a GEN6 you want AVCC #define USE_AVCC_FOR_TEMP // how many samples do we want per reading. 1 sample takes 1/125000 seconds. // more samples get more reliable values, but take more time. #define ANALOG_SUPERSAMPLE 10 /** The number of analog sensors, we need to read out. These are the thermistors used for temperature reading of the extruder and heated bed. */ #if HAVE_HEATED_BED==true #define NUM_ANALOG_SENSORS 2 #else #define NUM_ANALOG_SENSORS 1 #endif /** Number of digital temp. sensors like MAX6675 */ #define NUM_DIGITAL_SENSORS 0 #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 5 //// 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 275 /** \brief number of analog input signals. Normally 1 for each temperature sensor */ #define ANALOG_INPUTS NUM_ANALOG_SENSORS #if ANALOG_INPUTS>0 /** Channels are the MUX-part of ADMUX register Put all the pin numbers for the analog sensors (temp. sensor for extruder and heated bed) in here. In the configs of the sensor, use the index in this array. For the typical combination of one extruder with heated bed, write: #define ANALOG_INPUT_CHANNELS {TEMP_0_PIN,TEMP_1_PIN} */ #if HAVE_HEATED_BED==true #define ANALOG_INPUT_CHANNELS {TEMP_0_PIN,TEMP_1_PIN} #else #define ANALOG_INPUT_CHANNELS {TEMP_0_PIN} #endif
Re: Repetier Firmware and Host February 03, 2012 05:02PM |
Registered: 11 years ago Posts: 2,705 |
Re: Repetier Firmware and Host February 03, 2012 05:54PM |
Registered: 12 years ago Posts: 216 |
Re: Repetier Firmware and Host February 04, 2012 04:48PM |
Registered: 11 years ago Posts: 13 |
Re: Repetier Firmware and Host February 04, 2012 06:22PM |
Registered: 11 years ago Posts: 2,705 |
Re: Repetier Firmware and Host February 05, 2012 08:43AM |
Registered: 11 years ago Posts: 13 |
Re: Repetier Firmware and Host February 05, 2012 09:10AM |
Registered: 11 years ago Posts: 2,705 |
Re: Repetier Firmware and Host February 05, 2012 09:34AM |
Registered: 11 years ago Posts: 13 |
I believe you completely.Quote
Selecting only special layers for printing is not easy as you think