RUI3 (RAK Unified Interface 3) - RAK4631
RAKLorawan::ver

Public Member Functions

String get ()
 

Detailed Description

Description
This api allows the user to get the lorawan version

Member Function Documentation

◆ get()

String get ( )
Description
This api allows the user to get the lorawan version
Syntax
api.lorawan.ver.get()
Returns
the LoRaWan version(Type: String)
Example
void setup()
{
    Serial.begin(115200);
}

void loop()
{
    Serial.printf("The LoRaWan version is %s\r\n", api.lorawan.ver.get().c_str());
    delay(1000);
}