![]() |
RUI3 (RAK Unified Interface 3) - RAK4631
|
Public Member Functions | |
uint32_t | get () |
bool | set (uint8_t value) |
uint32_t get | ( | ) |
0 | disable link check |
1 | execute link check one time |
2 | module will automatically execute one time link check after every upload of data |
void setup() { Serial.begin(115200); Serial.printf("Set Verifying network link status %s\r\n", api.lorawan.linkcheck.set(1) ? "Success" : "Fail"); } void loop() { Serial.printf("Network link status = %d\r\n", api.lorawan.linkcheck.get()); delay(1000); }
bool set | ( | uint8_t | value | ) |
value | the mode of Verifying network link status |
TRUE | for setting mode of verifying network link status success |
FALSE | for setting mode of verifying network link status failure |
void setup() { Serial.begin(115200); Serial.printf("Set Verifying network link status %s\r\n", api.lorawan.linkcheck.set(1) ? "Success" : "Fail"); } void loop() { Serial.printf("Network link status = %d\r\n", api.lorawan.linkcheck.get()); delay(1000); }