17 lines
245 B
C++
17 lines
245 B
C++
#ifndef KART_SENDER_HPP
|
|
#define KART_SENDER_HPP
|
|
|
|
#include "Arduino.h"
|
|
|
|
class KartSender {
|
|
public:
|
|
void Init();
|
|
void Send();
|
|
|
|
private:
|
|
uint32_t transmission_counter = 0;
|
|
};
|
|
|
|
extern KartSender kart_sender;
|
|
|
|
#endif |