Skip to content

Development driver

This driver can be used for development in the Gateway. Therefore, add your own logic and parameters while developing your new drivers.

Setup data

The setup data will give values to the parameters required and will specify the I/O variables info.

{
    "parameters": {
        "<custom_param1>": "192.168.1.23", 
        "<custom_param2>": true,
    },
    "variables": {
        "<custom_var1>": {
            "datatype": "byte", 
            "size": 1,
            "operation": "write"
        },
        "<custom_var2>": {
            "datatype": "byte", 
            "size": 1, 
            "operation": "read"
        }
    }
}