LoRa_APRS_Tracker111/include/ble_utils.h

15 lines
200 B
C++

#ifndef BLE_UTILS_H_
#define BLE_UTILS_H_
#include <Arduino.h>
namespace BLE_Utils {
void stop();
void setup();
void sendToLoRa();
void sendToPhone(const String& packet);
}
#endif