-
Notifications
You must be signed in to change notification settings - Fork 43
Open
Milestone
Description
Reviewing the GenericMode, I made few questions:
- Is it necessary the CorrectFactor?
- Is it necessary to return 0?
reading *= correctFactor;
if (reading < correctMin) {
reading = 0;
} else if (reading >= correctMax) {
reading = Float.POSITIVE_INFINITY;
}
- Review consumers and the effect to remove correctFactor & return reading = Float.NEGATIVE_INFINITY