RUI3 (RAK Unified Interface 3) - RAK4631

Functions

const String get ()
 

Detailed Description

Function Documentation

◆ get()

const String get ( )
Description
This api allow user to get the api version
Syntax
api.system.apiVersion.get()
Returns
api version(Type: String)
Example
    void setup()
    {
      Serial.begin(115200);
    }

    void loop()
    {
      Serial.printf("RUI API Version: %s\r\n", api.system.apiVersion.get().c_str());
      delay(1000);
    }