2019-06-24 12:52:33 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialises the RFM95 LoRa radio.
|
|
|
|
*/
|
2019-06-24 13:47:14 +00:00
|
|
|
void transmit_init();
|
2019-06-24 12:52:33 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sends a specified message via LoRaWAN.
|
|
|
|
* @param data The message to send.
|
|
|
|
* @param length The length of the given message.
|
|
|
|
*/
|
2019-06-24 13:47:14 +00:00
|
|
|
bool transmit_send(byte* data, int length);
|