Skip to content

Change the update interval

GET
/devices/id/queueRtkCmd_UpdateRateMs

Parameters

Path Parameters

id*

device id

Typenumber
Required

Query Parameters

intervalMs*

eg 100ms = 10Hz (max). 1000 = 1Hz. 0 = disable. Settings are not persisted across reboots, so you may want to queue always when receiving "connected" event for a device

Typenumber
Required

Responses

Body (JSON)
JSON
{
"deviceId": 0,
"messageId": 0,
"commandType": 0,
"created": "string",
"sent": "string",
"receivedAck": "string",
"payload": "string",
"response": "string",
"id": 0
}

Samples

cURL
curl -X GET https://api.lightbug.cloud/api/devices/id/queueRtkCmd_UpdateRateMs
JavaScript
fetch("https://api.lightbug.cloud/api/devices/id/queueRtkCmd_UpdateRateMs")
  .then(response => response.json())
  .then(data => console.log(data));
PHP
file_get_contents("https://api.lightbug.cloud/api/devices/id/queueRtkCmd_UpdateRateMs");
Python
import requests
response = requests.get("https://api.lightbug.cloud/api/devices/id/queueRtkCmd_UpdateRateMs")
print(response.json())