SensESP 3.0.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
Converts input from one data type to another, then outputs the new type.
Definition typecast.h:34