Next Monday, 2020-07-20 we are planning to install an update for Ruptela protocol, that introduces the following changes in channel commands:
- custom command will have new schema
{
"address": [
"connection"
],
"description": "Send command over GPRS",
"name": "custom",
"schema": {
"additionalProperties": false,
"description": "Send command over GPRS",
"properties": {
"command_id": {
"maximum": 256,
"minimum": 100,
"title": "Command ID",
"type": "integer"
},
"hex": {
"default": false,
"title": "Command payload is encoded as HEX string",
"type": "boolean"
},
"payload": {
"maxLength": 1000,
"minLength": 0,
"title": "Command payload",
"type": "string"
}
},
"required": [
"command_id",
"payload"
],
"title": "Custom Command",
"type": "object",
"x-view-order": [
"command_id",
"payload",
"hex"
]
},
"title": "Custom Command"
}
- commands garmin_data, garmin_status, dtc_codes will be removed (custom command may be used instead now)
You may contact us with any concerns or suggestions on this matter.