Invert PID for cooling
Hey,
I'm fairly new to to 3D Printing and don't have much knowledge about coding.
What I'm looking for is a way to invert the PID for the heated bed (which I don't need) to use this connector for cooling.
What I found is this
Can anyone help me and tell me how to do it? Or got other ideas how to do it?
Would be so grateful.
I'm fairly new to to 3D Printing and don't have much knowledge about coding.
What I'm looking for is a way to invert the PID for the heated bed (which I don't need) to use this connector for cooling.
What I found is this
SetControllerDirection()
but absolutely don't know where to put it (didn't find it anywhere either).Can anyone help me and tell me how to do it? Or got other ideas how to do it?
Would be so grateful.
Comments
Main problem is that heaters and heater logic is just that - it expects power to increase temperature and disable power to lower temperature, so that will not really work. So the best solution would be to use the 100ms timer event we provide and add your cooling logic in that function. On github we have some sample event systems if you need to know how to do that.