Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion cores/arduino/WMath.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,15 @@ long random(long howsmall, long howbig)
return random(diff) + howsmall;
}

// well-defined for in_min < in_max, in_min <= x <= in_max,
// out_min <= out_max
long map(long x, long in_min, long in_max, long out_min, long out_max)
{
return (x - in_min) * (out_max - out_min) / (in_max - in_min) + out_min;
const long dividend = out_max - out_min;
const long divisor = in_max - in_min;
const long delta = x - in_min;

return (delta * dividend + (divisor / 2)) / divisor + out_min;
}

unsigned int makeWord(unsigned int w) { return w; }
Expand Down