Skip to content

Device Settings

Device Settings

All settings topics follow a .../save and .../delete pattern. Sending an empty message to .../delete resets the settings to their default values.

Wi-Fi Settings

  • Topic: <company-code>/<serial-number>/wifisettings/save
  • Message:
    {
      "wifi_state": "Enabled",
      "ssid": "My-WiFi",
      "password": "supersecret",
      "security": "WPA2",
      "ip_configuration": {
        "ip_mode": "Static",
        "ip_address": "192.168.1.50",
        "netmask": "255.255.255.0",
        "default_gateway": "192.168.1.1",
        "dns1": "8.8.8.8"
      }
    }
    

Ethernet Settings

  • Topic: <company-code>/<serial-number>/ethernetsettings/save
  • Message:
    {
      "ethernet_state": "Enabled",
      "ip_configuration": {
        "ip_mode": "Dhcp"
      }
    }
    

Date/Time Settings

  • Topic: <company-code>/<serial-number>/datetimesettings/save
  • Message:
    {
      "use_automatic_date_time": true,
      "time_zone": "America/New_York",
      "ntp_server": "time.nist.gov",
      "use_twenty_four_hour_format": false
    }
    

Language Settings

  • Topic: <company-code>/<serial-number>/language/save
  • Message: "English" or "Spanish"

Theme Settings

  • Topic: <company-code>/<serial-number>/theme/save
  • Message: "Dream", "Sky", "Vampire", etc.