10 lines
165 B
C++
10 lines
165 B
C++
#ifndef KART_MESSAGE_HPP
|
|
#define KART_MESSAGE_HPP
|
|
#include "Arduino.h"
|
|
|
|
typedef struct {
|
|
uint32_t kart_id;
|
|
uint32_t transmision;
|
|
} kart_msg;
|
|
|
|
#endif |