mirror of
https://github.com/Kugelschieber/arduino-c.git
synced 2026-01-18 19:10:25 +00:00
6 lines
172 B
C
6 lines
172 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);
|
|
}
|