| 867 | } |
| 868 | |
| 869 | void Tool::SetFansPwm(float f) const noexcept |
| 870 | { |
| 871 | const float pwmChange = reprap.GetFansManager().SetFansValue(fanMapping, f); |
| 872 | if (pwmChange != 0.0) |
| 873 | { |
| 874 | IterateHeaters([f](unsigned int heater) { reprap.GetHeat().SetFanFeedForwardPwm(heater, f); }); |
| 875 | } |
| 876 | } |
| 877 | |
| 878 | // Return true if this tool uses the specified heater |
| 879 | bool Tool::UsesHeater(int8_t heater) const noexcept |
no test coverage detected