0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-01-18 23:49:49 +00:00

Prevent #div0 error (#20183)

This commit is contained in:
Victor Oliveira 2020-11-17 21:44:53 -03:00 committed by Scott Lahteine
parent dc644df9bc
commit 180fe914b6

View file

@ -41,6 +41,7 @@ PrinterEventLEDs printerEventLEDs;
uint8_t PrinterEventLEDs::old_intensity = 0;
inline uint8_t pel_intensity(const float &start, const float &current, const float &target) {
if (uint16_t(start) == uint16_t(target)) return 255;
return (uint8_t)map(constrain(current, start, target), start, target, 0.f, 255.f);
}