1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-13 11:29:53 +03:00

Merge remote-tracking branch 'origin/master' into dzikuvx-settings-sliders

This commit is contained in:
Pawel Spychalski (DzikuVx) 2022-05-11 09:56:13 +02:00
commit c67e97518a
11 changed files with 248 additions and 15 deletions

View file

@ -63,4 +63,4 @@ function scaleRangeInt(x, srcMin, srcMax, destMin, destMax) {
let a = (destMax - destMin) * (x - srcMin);
let b = srcMax - srcMin;
return Math.round((a / b) + destMin);
}
}