mirror of
https://github.com/andreili/klipper.git
synced 2025-08-24 03:44:06 +02:00
heaters: Confirm heater setting in mcu every 3 seconds instead of 5
Increase the confirmation rate of heater enable settings. This allows the mcu to utilize faster internal speeds. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
c917bd893d
commit
0f94f6c8e3
@ -1,6 +1,6 @@
|
|||||||
# Tracking of PWM controlled heaters and their temperature control
|
# Tracking of PWM controlled heaters and their temperature control
|
||||||
#
|
#
|
||||||
# Copyright (C) 2016-2020 Kevin O'Connor <kevin@koconnor.net>
|
# Copyright (C) 2016-2025 Kevin O'Connor <kevin@koconnor.net>
|
||||||
#
|
#
|
||||||
# This file may be distributed under the terms of the GNU GPLv3 license.
|
# This file may be distributed under the terms of the GNU GPLv3 license.
|
||||||
import os, logging, threading
|
import os, logging, threading
|
||||||
@ -11,7 +11,7 @@ import os, logging, threading
|
|||||||
######################################################################
|
######################################################################
|
||||||
|
|
||||||
KELVIN_TO_CELSIUS = -273.15
|
KELVIN_TO_CELSIUS = -273.15
|
||||||
MAX_HEAT_TIME = 5.0
|
MAX_HEAT_TIME = 3.0
|
||||||
AMBIENT_TEMP = 25.
|
AMBIENT_TEMP = 25.
|
||||||
PID_PARAM_BASE = 255.
|
PID_PARAM_BASE = 255.
|
||||||
MAX_MAINTHREAD_TIME = 5.0
|
MAX_MAINTHREAD_TIME = 5.0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user