|
Re: Hotend "AllinOne" May 26, 2015 06:18AM |
Registered: 12 years ago Posts: 697 |
|
Re: Hotend "AllinOne" August 26, 2015 04:38PM |
Registered: 12 years ago Posts: 320 |
|
Re: Hotend "AllinOne" August 27, 2015 01:46AM |
Registered: 12 years ago Posts: 697 |
|
Re: Hotend "AllinOne" August 27, 2015 05:33AM |
Registered: 12 years ago Posts: 320 |
|
Re: Hotend "AllinOne" September 02, 2015 03:50PM |
Registered: 12 years ago Posts: 320 |

// PID settings:
// Comment the following line to disable PID and enable bang-bang.
#define PIDTEMP
#define BANG_MAX 255 // limits current to nozzle while in bang-bang mode; 255=full current
#define PID_MAX BANG_MAX // limits current to nozzle while PID is active (see PID_FUNCTIONAL_RANGE below); 255=full current
#ifdef PIDTEMP
//#define PID_DEBUG // Sends debug data to the serial port.
//#define PID_OPENLOOP 1 // Puts PID in open loop. M104/M140 sets the output power from 0 to PID_MAX
//#define SLOW_PWM_HEATERS // PWM with very low frequency (roughly 0.125Hz=8s) and minimum state time of approximately 1s useful for heaters driven by a relay
#define PID_FUNCTIONAL_RANGE 10 // If the temperature difference between the target temperature and the actual temperature
// is more then PID_FUNCTIONAL_RANGE then the PID will be shut off and the heater will be set to min/max.
#define PID_INTEGRAL_DRIVE_MAX PID_MAX //limit for the integral term
#define K1 0.95 //smoothing factor within the PID
#define PID_dT ((OVERSAMPLENR * 10.0)/(F_CPU / 64.0 / 256.0)) //sampling period of the temperature routine
// If you are using a pre-configured hotend then you can use one of the value sets by uncommenting it
// Ultimaker
#define DEFAULT_Kp 13.25 //22.2 modif Elicend
#define DEFAULT_Ki 0.50 //1.08 modif Elicend
#define DEFAULT_Kd 87.67 //114 modif Elicend
// MakerGear
// #define DEFAULT_Kp 7.0
// #define DEFAULT_Ki 0.1
// #define DEFAULT_Kd 12
// Mendel Parts V9 on 12V
// #define DEFAULT_Kp 63.0
// #define DEFAULT_Ki 2.25
// #define DEFAULT_Kd 440
#endif // PIDTEMP
|
Re: Hotend "AllinOne" September 02, 2015 03:50PM |
Registered: 12 years ago Posts: 320 |

|
Re: Hotend "AllinOne" September 02, 2015 04:51PM |
Registered: 12 years ago Posts: 697 |
|
Re: Hotend "AllinOne" September 03, 2015 04:16PM |
Registered: 12 years ago Posts: 320 |

|
Re: Hotend "AllinOne" September 07, 2015 04:13PM |
Registered: 12 years ago Posts: 320 |
|
Re: Hotend "AllinOne" January 10, 2016 12:57AM |
Registered: 11 years ago Posts: 543 |
|
Re: Hotend "AllinOne" January 23, 2016 03:22PM |
Registered: 11 years ago Posts: 200 |
|
Re: Hotend "AllinOne" January 25, 2016 11:33AM |
Registered: 11 years ago Posts: 200 |
|
Re: Hotend "AllinOne" September 04, 2016 09:35AM |
Registered: 11 years ago Posts: 543 |