Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: Heiko Simran_Servo_2410 HYDRO-pH-BASIC NucleoBoard_1 ... more
Map.cpp
00001 #include "Map.hpp" 00002 00003 Map::Map (float inMin, float inMax, float outMin, float outMax) 00004 { 00005 _inMin = inMin; 00006 _inMax = inMax; 00007 _outMin = outMin; 00008 _outMax = outMax; 00009 } 00010 00011 float Map::Calculate(float inVal) 00012 { 00013 return ( (inVal - _inMin)*(_outMax - _outMin)/(_inMax - _inMin) + _outMin ); 00014 }
Generated on Tue Jul 12 2022 19:35:19 by
1.7.2