What's new
VORON Design

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members!

persistent config error

My search has come up empty and I'm running out of ideas. I keep getting an error:

Option 'pwm' is not valid in section 'controller_fan controller_fan'

My fan config is below. I'm running Klipper on Octopus with an EBB SB 2209/2240 Canbus. I have yet to get this working, still trying to get all the errors out of the config file.

I've tried adding pwn: true or false but not sure how to make the program happy.

#####################################################################
# Fan Control
#####################################################################

## Print Cooling Fan - FAN0
[fan]
pin: PA8
kick_start_time: 0.5
## Depending on your fan, you may need to increase this value
## if your fan will not start. Can change cycle_time (increase)
## if your fan is not able to slow down effectively
off_below: 0.10


## Hotend Fan - FAN1
[heater_fan hotend_fan]
pin: PE5
max_power: 1.0
kick_start_time: 0.5
heater: extruder
heater_temp: 50.0
## If you are experiencing back flow, you can reduce fan_speed
#fan_speed: 1.0

## Controller fan - FAN2
[controller_fan controller_fan]
pin: PD12
kick_start_time: 0.5
heater: heater_bed

## Exhaust fan - FAN3
#[heater_fan exhaust_fan]
#pin: PD13
#max_power: 1.0
#shutdown_speed: 0.0
#kick_start_time: 5.0
#heater: heater_bed
#heater_temp: 60
#fan_speed: 1.0

Any help would be appreciated.

Joel
 
Post your entire config, not just the snippet. Since everything past the controller fan section is commented out in your post, I wouldn't be surprised to find the problem is hiding somewhere even farther down...
 
EEEK,

OK, here it is. As of yet, I haven't gotten this thing to work, still trying to get config to load.

Thanks for your help.

Joel
 

Attachments

  • Configvoron.pdf
    79.7 KB · Views: 1
You commented out "[output_pin caselight]" , but not the rest of that section. So lacking a section header, all those settings down there think they're a continuation of the last section header before that....your controller fan.
 
Top