Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This is the command representation of an HNZ message.

Warning

The actual current implementation does not use a json structure, so the order of parameters is mandatory.

...

AttributeDescriptionExpected valuesMandatory
co_typemessage typeTC, TVCYES
co_addressmessage address
YES
co_valuevalue
YES
co_val_codingcoding of value0 or 1TVC only

The processing of FLEDGE commands should evolve. Below is an example of JSON format :

Example for a TC:

Code Block
languagepy
{
    "command_object":{
       "co_type":"TC",
       "co_address":325,
       "co_value":1
     }
 }

...