Configuration override confusion

Hi, In order to change the fixed speed of my hotend fan I copied the config/printers/v-core-3/v-core-3.cfg file into my printer config and changed the relivent commands. When I saved and restarted I got an error saying [include ../base.cfg] does not reference anything, so I commented it out. I now get this error. Both mean nothing to me and I have not changed the macros file at all. I'm guessing the root of my issue is that I commented out the [include ../base.cfg] but I am unfortunatly not experienced enough yet to know what to do. A google search got me nowhere as well as a search on this forum and the klipper documentation.
No description
4 Replies
blacksmithforlife
In order to change the fixed speed of my hotend fan I copied the config/printers/v-core-3/v-core-3.cfg file into my printer config and changed the relivent commands
this is your problem, you don't need to do that. revert back to your known good configuration (you do have a backup of that right?). Then, what fan are you trying to change the speed of? If it is actually the hotend fan that cools your hotend, all you need to add is
[heater_fan toolhead_cooling_fan]
fan_speed: 1.0
[heater_fan toolhead_cooling_fan]
fan_speed: 1.0
https://www.klipper3d.org/Config_Reference.html#heater_fan for more information
rare-sapphire
rare-sapphire2y ago
Does that not conflict with the hotend fan speed called out in the vcore-3.cfg file? Does changing the value in the printer.cfg overide that file?
blacksmithforlife
your printer.cfg will override it. See https://os.ratrig.com/docs/configuration/includes-and-overrides You probably want to rename this post. This has nothing to do with the PAUSE command
rare-sapphire
rare-sapphire2y ago
Ooooh ok thanks, that makes a lot more sense. Yes I do have a backup, I will give it a try now.