Fang-Robotics-MCB
Fang Robotics Team Codebase
Loading...
Searching...
No Matches
janky_float_handler.hpp
Go to the documentation of this file.
1#pragma once
2
3#include "janky_float.hpp"
4#include "cool_serial/idata_handler.hpp"
5
7{
12 class JankyFloatHandler : public coolSerial::IDataHandler
13 {
14 public:
15 void handleData(const coolSerial::Bytes& bytes) override;
16
17 float getCurrentFloat();
18 private:
19 float currentFloat_{};
20 };
21}
Definition janky_float_handler.hpp:13
void handleData(const coolSerial::Bytes &bytes) override
Definition janky_float_handler.cpp:8
float getCurrentFloat()
Definition janky_float_handler.cpp:13
Definition janky_float.cpp:4