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 chip ID
Syntax
api.system.chipId.get()
Returns
chip ID(Type: String)
Example
    void setup()
    {
      Serial.begin(115200);
    }

    void loop()
    {
      Serial.printf("Hardware ID: %s\r\n", api.system.chipId.get().c_str());
      delay(1000);
    }