mirror of
https://github.com/yoboujon/dumber.git
synced 2025-06-08 13:50:49 +02:00
16 lines
226 B
C
16 lines
226 B
C
/*
|
|
* xbee.h
|
|
*
|
|
* Created on: Sep 12, 2022
|
|
* Author: dimercur
|
|
*/
|
|
|
|
#ifndef INC_XBEE_H_
|
|
#define INC_XBEE_H_
|
|
|
|
#include "main.h"
|
|
|
|
void XBEE_Init(void);
|
|
int XBEE_SendData(char* data, int length);
|
|
|
|
#endif /* INC_XBEE_H_ */
|