You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

912 B

API

  • Motion sensor

    Topic: motion

    Data example:

    {
    	"deviceId": 0,
    	"value": true
    }
    
  • Light sensor

    Topic: light

    Data example:

    {
    	"deviceId": 0,
    	"value": 1024
    }
    
  • Temperature sensor

    Topic: temperature

    Data example:

    {
    	"deviceId": 0,
    	"value": 20.4
    }
    
  • Sound sensor

    Topic: sound

    Data example:

    {
    	"deviceId": 0,
    	"value": 3072
    }
    
  • Door lock

    Topic: door/lock/{deviceId}/lock

  • Door unlocklock

    Topic: door/lock/{deviceId}/unlock

  • Door state changed

    Topic: door/status

    Data example:

    {
    	"deviceId": 0,
    	"open": true
    }
    
  • Alarm state

    Topic: alarm/state

    Statuses:

    • Armed
    • Disarmed
    • Triggered
    • Arming
    • Disarming

    Data example:

    {
    	"status": "Disarmed"
    }
    
  • Disarm

    Topic: disarm

    Data example:

    {
    	"deviceId": 0
    }