blob: 02ae313999a7ece1f1f78d235803cefb33aebab8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include "../shared/bin.h"
#include "../shared/modes.h"
#include "serial.h"
void w2_send_bin(w2_s_bin *data);
void w2_send_info();
void w2_send_ping();
void w2_send_mode(w2_e_mode mode);
void w2_send_dirc(uint16_t left, uint16_t right);
|