With Printoid, you can adjust the fan value (from 0% = 0 ; to 100% = 255) over the M106 command:
M106 - Set Fan SpeedTurn on one of the fans and set its speed. If no fan index is given, the print cooling fan is selected. The fan speed applies to the next block added to the planner, so it will not take effect until previous moves in the planner are done. Under manual control with an idle machine,
M106
will change the fan speed immediately.
Okay, Printoid can send commands to your fan. Great. But when I restart the app, the fan slider is back to 0%, whereas my fan is still at 100%. Why?
1. This is not a bug
No, this is not a bug. This is the expected behavior, even if it seems annoying for everyone.
In fact, there is no command to read the current fan speed in the standard GCODE syntax. And the reason is very simple.
When you want to set the printer head temperature, you can send the M104 (or M109) commands. For example, if you want to set your first printer head to 190°C, then you can send M104 S190 T0 (or M109 S190 T0 if you wanna wait for the temperature reached)
If you want to read the current printer head temperature, you can send the M105 command. Since there is a temperature sensor plugged on your heated nozzle, your firmware is able to retrieve the current value independently to the command you’ve sent.
On your 3D printer fans, you don’t have any system to “read” the current speed. And the firmware does not measure the current tension applied on the fan. This way, how to know what’s the current speed?
2. Why can I do
There is a trick to display the current fan speed in Printoid, by using the Top Temp plugin. You can read how to configure this plugin here:
One thought on “Trick #25: Why Printoid does not update the fan value?”