SensESP 3.1.1
Universal Signal K sensor toolkit ESP32
Loading...
Searching...
No Matches
typecast.cpp
Go to the documentation of this file.
1#include "typecast.h"
2
3#include <cmath>
4
5namespace sensesp {
6
8 : Typecast<float, int>([](float in) -> int { return (int)round(in); }) {}
9
10} // namespace sensesp
Typecast(std::function< int(float)> cast=[](float input) -> int { return static_cast< int >(input);})
Definition typecast.h:36