ISTAtrol. Wenn die Heizung nervt. 26. March 2016 08:42 |
Registrierungsdatum: 14 Jahre zuvor Beiträge: 7.616 |
Generation 7 Electronics | Teacup Firmware | RepRap DIY |
Re: ISTAtrol. Wenn die Heizung nervt. 07. June 2016 04:37 |
Registrierungsdatum: 9 Jahre zuvor Beiträge: 208 |
Re: ISTAtrol. Wenn die Heizung nervt. 07. June 2016 08:48 |
Registrierungsdatum: 14 Jahre zuvor Beiträge: 7.616 |
// Extrapolation. Take care of the sign. temp_future = temp_now + 8 * (temp_now - temp_last); // Act according to the prediction. if (temp_future < (TARGET_TEMPERATURE - THERMISTOR_HYSTERESIS)) { motor_close(); } else if (temp_future > (TARGET_TEMPERATURE + THERMISTOR_HYSTERESIS)) { motor_open(); } temp_last = temp_now;
Generation 7 Electronics | Teacup Firmware | RepRap DIY |