Prevent #div0 error (#20183)
This commit is contained in:
parent
dc644df9bc
commit
180fe914b6
@ -41,6 +41,7 @@ PrinterEventLEDs printerEventLEDs;
|
|||||||
uint8_t PrinterEventLEDs::old_intensity = 0;
|
uint8_t PrinterEventLEDs::old_intensity = 0;
|
||||||
|
|
||||||
inline uint8_t pel_intensity(const float &start, const float ¤t, const float &target) {
|
inline uint8_t pel_intensity(const float &start, const float ¤t, 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);
|
return (uint8_t)map(constrain(current, start, target), start, target, 0.f, 255.f);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user