mirror of
https://github.com/yoboujon/dumber.git
synced 2025-06-09 14:20:50 +02:00
11 lines
173 B
C
11 lines
173 B
C
#ifndef XBEE_H
|
|
#define XBEE_H
|
|
|
|
#include "stm32f1xx_hal.h"
|
|
|
|
int xbeeSend(int addr_destination, char *str);
|
|
void xbee_debug_send(int address, char *str);
|
|
|
|
#endif
|
|
|
|
|