mirror of
https://github.com/Kugelschieber/arduino-c.git
synced 2026-01-18 11:00:26 +00:00
6 lines
173 B
C
6 lines
173 B
C
#include "util.h"
|
|
|
|
float map(float value, float fromLow, float fromHigh, float toLow, float toHigh) {
|
|
return fromLow+((toHigh-toLow)/(fromHigh-fromLow))*(value-fromLow);
|
|
}
|