This repository has been archived on 2025-06-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
compLIB/server/include/encoder.hpp
2022-03-20 21:21:54 +00:00

14 lines
No EOL
242 B
C++

#ifndef COMPLIB_SERVER_ENCODER_HPP
#define COMPLIB_SERVER_ENCODER_HPP
#include <vector>
#include <cstdint>
#define ENCODER_COUNT 4
class Encoder {
public:
static std::vector<int32_t> read_all();
};
#endif // COMPLIB_SERVER_ENCODER_HPP