Multitech
Creation procedure
Import steps
Payload Management → Sensor Definitions → Import Manufacturer: MClimate Sensor Type: XX XX - the specific name of the sensor you are currently importing
Select both files:
mclimate-aqi-codec.jsmclimate-aqi-definition.json
Click Import, then Save & Apply – the gateway will create read-only Input objects for telemetry and writable Value objects for every
"downlink": trueproperty.
Take note the example file below ends with 2 lines, that are the "decoder", "encoder" variable names. These are an example and need to match the names you have given them when actually importing them in the Multitech Gateway.
In order for the BACnet integration to work, you would need to import both the code below for the Codec file (in the form of a JS file) and the code for the Definition file after it (in the form of a JSON file).
Multitech BACnet Codec file
// DataCake
function Decoder(bytes, port){
var decoded = decodeUplink({ bytes: bytes, fPort: port }).data;
return decoded;
}
// Milesight
function Decode(port, bytes){
var decoded = decodeUplink({ bytes: bytes, fPort: port }).data;
return decoded;
}
// The Things Industries / Main
function decodeUplink(input) {
try {
var bytes = input.bytes;
var data = {};
function handleKeepalive(bytes, data) {
// Temperature sign and internal temperature
var isNegative = (bytes[1] & 0x80) !== 0; // Check the 7th bit for the sign
var temperature = bytes[1] & 0x7F; // Mask out the 7th bit to get the temperature value
data.internalTemperature = isNegative ? -temperature : temperature;
// Relay state
data.relayState = bytes[2] === 0x01 ? "ON" : "OFF";
return data;
}
function handleResponse(bytes, data) {
var commands = bytes.map(function (byte) {
return ("0" + byte.toString(16)).substr(-2);
});
var command_len = 0;
commands.forEach(function (command, i) {
switch (command) {
case '04': {
command_len = 2;
var hardwareVersion = commands[i + 1];
var softwareVersion = commands[i + 2];
data.deviceVersions = {
hardware: Number(hardwareVersion),
software: Number(softwareVersion),
};
break;
}
case '12': {
command_len = 1;
data.keepAliveTime = parseInt(commands[i + 1], 16);
break;
}
case '19': {
command_len = 1;
var commandResponse = parseInt(commands[i + 1], 16);
var periodInMinutes = (commandResponse * 5) / 60;
data.joinRetryPeriod = periodInMinutes;
break;
}
case '1b': {
command_len = 1;
data.uplinkType = parseInt(commands[i + 1], 16);
break;
}
case '1d': {
command_len = 2;
var wdpC = commands[i + 1] === '00' ? false : parseInt(commands[i + 1], 16);
var wdpUc = commands[i + 2] === '00' ? false : parseInt(commands[i + 2], 16);
data.watchDogParams = { wdpC: wdpC, wdpUc: wdpUc };
break;
}
case '1f': {
command_len = 2;
data.overheatingThresholds = {
trigger: parseInt(commands[i + 1], 16),
recovery: parseInt(commands[i + 2], 16),
};
break;
}
case '5a': {
command_len = 1;
data.afterOverheatingProtectionRecovery = parseInt(commands[i + 1], 16);
break;
}
case '5c': {
command_len = 1;
data.ledIndicationMode = parseInt(commands[i + 1], 16);
break;
}
case '5d': {
command_len = 1;
data.manualChangeRelayState = parseInt(commands[i + 1], 16) === 0x01;
break;
}
case '5f': {
command_len = 1;
data.relayRecoveryState = parseInt(commands[i + 1], 16);
break;
}
case '60': {
command_len = 2;
data.overheatingEvents = {
events: parseInt(commands[i + 1], 16),
temperature: parseInt(commands[i + 2], 16),
};
break;
}
case '70': {
command_len = 2;
data.overheatingRecoveryTime = (parseInt(commands[i + 1], 16) << 8) | parseInt(commands[i + 2], 16);
break;
}
case 'b1': {
command_len = 1;
data.relayState = parseInt(commands[i + 1], 16) === 0x01;
break;
}
case 'a0': {
command_len = 4;
var fuota_address = (parseInt(commands[i + 1], 16) << 24) |
(parseInt(commands[i + 2], 16) << 16) |
(parseInt(commands[i + 3], 16) << 8) |
parseInt(commands[i + 4], 16);
var fuota_address_raw = commands[i + 1] + commands[i + 2] +
commands[i + 3] + commands[i + 4];
data.fuota = { fuota_address: fuota_address, fuota_address_raw: fuota_address_raw };
break;
}
case 'a4': {
command_len = 1;
data.region = parseInt(commands[i + 1], 16);
break;
}
default:
break;
}
commands.splice(i, command_len);
});
return data;
};
if (bytes[0] === 1) {
data = handleKeepalive(bytes, data);
} else {
data = handleResponse(bytes, data);
bytes = bytes.slice(-3);
data = handleKeepalive(bytes, data);
}
return { data: data };
} catch (e) {
console.log(e);
throw new Error('Unhandled data');
}
}
function encodeDownlink(input) {
var bytes = [];
var key, i;
for (key in input.data) {
if (input.data.hasOwnProperty(key)) {
switch (key) {
case "setKeepAlive":
bytes.push(0x02);
bytes.push(input.data.setKeepAlive);
break;
case "getKeepAliveTime":
bytes.push(0x12);
break;
case "getDeviceVersions":
bytes.push(0x04);
break;
case "setJoinRetryPeriod":
var periodToPass = Math.floor((input.data.setJoinRetryPeriod * 60) / 5);
bytes.push(0x10);
bytes.push(periodToPass);
break;
case "getJoinRetryPeriod":
bytes.push(0x19);
break;
case "setUplinkType":
bytes.push(0x11);
bytes.push(input.data.setUplinkType);
break;
case "getUplinkType":
bytes.push(0x1b);
break;
case "setWatchDogParams":
bytes.push(0x1c);
bytes.push(input.data.setWatchDogParams.confirmedUplinks);
bytes.push(input.data.setWatchDogParams.unconfirmedUplinks);
break;
case "getWatchDogParams":
bytes.push(0x1d);
break;
case "setOverheatingThresholds":
bytes.push(0x1e);
bytes.push(input.data.setOverheatingThresholds.trigger);
bytes.push(input.data.setOverheatingThresholds.recovery);
break;
case "getOverheatingThresholds":
bytes.push(0x1f);
break;
case "getRelayStateChangeReason":
bytes.push(0x54);
break;
case "setRelayTimerMiliseconds":
var state = input.data.setRelayTimerMiliseconds.state;
var time = input.data.setRelayTimerMiliseconds.time;
var timeLowByte = time & 0xFF;
var timeHighByte = (time >> 8) & 0xFF;
bytes.push(0x55);
bytes.push(state);
bytes.push(timeHighByte);
bytes.push(timeLowByte);
break;
case "getRelayTimerMiliseconds":
bytes.push(0x56);
break;
case "setRelayTimerSeconds":
var state = input.data.setRelayTimerSeconds.state;
var time = input.data.setRelayTimerSeconds.time;
var timeLowByte = time & 0xFF;
var timeHighByte = (time >> 8) & 0xFF;
bytes.push(0x57);
bytes.push(state);
bytes.push(timeHighByte);
bytes.push(timeLowByte);
break;
case "getRelayTimerSeconds":
bytes.push(0x58);
break;
case "setAfterOverheatingProtectionRecovery":
bytes.push(0x59);
bytes.push(input.data.setAfterOverheatingProtectionRecovery);
break;
case "getAfterOverheatingProtectionRecovery":
bytes.push(0x5a);
break;
case "setLedIndicationMode":
bytes.push(0x5b);
bytes.push(input.data.setLedIndicationMode);
break;
case "getLedIndicationMode":
bytes.push(0x5c);
break;
case "setRelayRecoveryState":
bytes.push(0x5e);
bytes.push(input.data.setRelayRecoveryState);
break;
case "getRelayRecoveryState":
bytes.push(0x5f);
break;
case "setRelayState":
bytes.push(0xc1);
bytes.push(input.data.setRelayState);
break;
case "getRelayState":
bytes.push(0xb1);
break;
case "getOverheatingEvents":
bytes.push(0x60);
break;
case "getOverheatingRecoveryTime":
bytes.push(0x70);
break;
case "sendCustomHexCommand":
var sendCustomHexCommand = input.data.sendCustomHexCommand;
for (i = 0; i < sendCustomHexCommand.length; i += 2) {
var byte = parseInt(sendCustomHexCommand.substr(i, 2), 16);
bytes.push(byte);
}
break;
default:
break;
}
}
}
return {
bytes: bytes,
fPort: 1,
warnings: [],
errors: [],
};
}
function decodeDownlink(input) {
return {
data: {
bytes: input.bytes,
},
warnings: [],
errors: [],
};
}
// example downlink commands
// {"setRelayState":1} --> 0xC101
// {"getDeviceVersions": ""} -->0x04
// {"getKeepAliveTime": ""} --> 0x12
// {"setRelayTimerMiliseconds": {state: 1, time: 500}} --> 0x550001F4
// {"setAfterOverheatingProtectionRecovery": 1} --> 0x5901
// {"setLedIndicationMode": 1} --> 0x5B01
// {"getLedIndicationMode": ""} --> 0x5C
Multitech BACnet Definition file
{
"description": "MClimate 16A Dry Switch (16ADS) – BACnet mapping",
"properties": {
"internalTemperature": { "type": "int8", "units": "celsius" },
"relayState": { "type": "string" },
"deviceVersions": { "type": "object" },
"keepAliveTime": { "type": "uint8", "units": "minutes" },
"joinRetryPeriod": { "type": "float", "units": "minutes" },
"uplinkType": { "type": "uint8" },
"watchDogParams": { "type": "object" },
"overheatingThresholds": { "type": "object" },
"afterOverheatingProtectionRecovery": { "type": "uint8" },
"ledIndicationMode": { "type": "uint8" },
"manualChangeRelayState": { "type": "bool" },
"relayRecoveryState": { "type": "uint8" },
"overheatingEvents": { "type": "object" },
"overheatingRecoveryTime": { "type": "uint16" },
"region": { "type": "uint8" },
"fuota": { "type": "object" },
"setKeepAlive": { "type": "uint8", "units": "minutes", "downlink": true },
"setJoinRetryPeriod": { "type": "float", "units": "minutes", "downlink": true },
"setUplinkType": { "type": "uint8", "downlink": true },
"setWatchDogParams": { "type": "object", "downlink": true },
"setOverheatingThresholds": { "type": "object", "downlink": true },
"setRelayTimerMiliseconds": { "type": "object", "downlink": true },
"setRelayTimerSeconds": { "type": "object", "downlink": true },
"setAfterOverheatingProtectionRecovery": { "type": "uint8", "downlink": true },
"setLedIndicationMode": { "type": "uint8", "downlink": true },
"setRelayRecoveryState": { "type": "uint8", "downlink": true },
"setRelayState": { "type": "uint8", "downlink": true },
"sendCustomHexCommand": { "type": "string", "downlink": true }
},
"decoder": "mclimate-16ads-codec.js",
"encoder": "mclimate-16ads-codec.js"
}Last updated
Was this helpful?