#Heater fan name does not show up in mainsail

14 messages · Page 1 of 1 (latest)

stone birch
#

Hello,
I am running the latest stable version of mainsail os (mainsail 2.5.1 / klipper v0.11.0-174-g4748dffd).
In mainsail dashboard, under miscellaneous, both my extruder fans (heater_fan in klipper) show up without any name associated to them.
How would I go to provide a name ?

Here is my config:

[heater_fan  extruder]
pin: PD13 # FAN3
cycle_time: 0.0100
hardware_pwm: false
shutdown_speed: 1
heater: extruder
heater_temp: 50.0

[heater_fan  extruder1]
pin: PD14 # FAN4
cycle_time: 0.0100
hardware_pwm: false
shutdown_speed: 1
heater: extruder1
heater_temp: 50.0

Please note the 2 fans in the screenshot without a name corresponding to the config above.

Thanks for your help

upbeat nexus
#

Can you send the complete config. My guess is that using the same name for your part fan and heater fan causes the problem but without seeing the complete picture it is like reading a Glas bowl

stone birch
#

my apologies for the late reply

#

@upbeat nexus here is the full config:

#

here are the relevant portions:

#
pin: PE5 # FAN1
cycle_time: 0.00004
off_below: 0.15
hardware_pwm: false

[fan_generic extruder1_partfan]
pin: PD12 # FAN2
cycle_time: 0.00004
off_below: 0.15
hardware_pwm: false

[heater_fan  extruder]
pin: PD13 # FAN3
cycle_time: 0.0100
hardware_pwm: false
shutdown_speed: 1
heater: extruder
heater_temp: 50.0

[heater_fan  extruder1]
pin: PD14 # FAN4
cycle_time: 0.0100
hardware_pwm: false
shutdown_speed: 1
heater: extruder1
heater_temp: 50.0```
static crypt
#

And upload your Klipper log

stone birch
#

@static crypt Thank you for the pointing this out. Here is the log file

upbeat nexus
#

Ok we understand the route cause yet. And you can solve it by yourself. There is an extra space between heater_fan and e.g extruder1. simple remove these 2 extra spaces and it will be displayed.

#

Thats the easiest fix for your issue, we internally need to discuss how we solve that as there is an inconstancy between klipper (silently removing the extra space) and moonraker (showing the extra space"

#

Personally I strongly recomand to have only a single space in each klipper configuration block ([... ...]

stone birch
#

@upbeat nexus Thank you, this indeed was the problem, I appreciate your help