27 lines
319 B
C
Executable File
27 lines
319 B
C
Executable File
#ifndef METER_ZIGBEE_H_
|
|
#define METER_ZIGBEE_H_
|
|
|
|
#include "driver/uart.h"
|
|
|
|
/**
|
|
* @brief Send Data
|
|
*
|
|
*/
|
|
int meter_zigbee_send_data(const char *data);
|
|
|
|
|
|
/**
|
|
* @brief Start serial MT
|
|
*
|
|
*/
|
|
void meter_zigbee_start();
|
|
|
|
|
|
/**
|
|
* @brief Stop serial MT
|
|
*
|
|
*/
|
|
void meter_zigbee_stop(void);
|
|
|
|
#endif /* METER_ZIGBEE_H_ */
|