Hello,
I’ve been trying to set up my Elsys ERSCO2 sensor to work with my Kerlink iFemtoCell gateway through our local network and the loraserver suite of applications. After some tumbling we managed to set-up the sensor through ABP.
The only problem now is decoding the message, unfortunately the Elsys website does not provide us with a decoding script compatible with loraserver.
Now the problem is, I’m not fluent in programming language whatsoever, so I’m basically stuck with paperweights at this very moment.
We can use TTN but it would defeat the purpose of having a network locally that we can manage.
We have examples here https://www.elsys.se/en/elsys-payload/ but we cannot adapt it for loraserver, would it be possible for someone to spare a little time to help us with this issue?
This is the log I’m getting from payloads.
mag 24 09:22:17 loraserver lora-app-server[495]: time="2019-05-24T09:22:17+02:00" level=error msg="decode payload error" application_id=2 codec=CUSTOM_JS dev_eui=a81758fffe03d8a9 error="js vm error: (anonymous): Line 14:1 Unexpected reserved word (and 6 more errors)" f_cnt=6 f_port=5
mag 24 09:22:17 loraserver lora-app-server[495]: time="2019-05-24T09:22:17+02:00" level=info msg="integration/mqtt: publishing message" qos=0 topic=application/2/device/a81758fffe03d8a9/error
mag 24 09:22:17 loraserver lora-app-server[495]: time="2019-05-24T09:22:17+02:00" level=info msg="finished unary call with code OK" grpc.code=OK grpc.method=HandleUplinkData grpc.request.deadline="2019-05-24T09:22:18+02:00" grpc.service=as.ApplicationServerService grpc.start_time="2019-05-24T09:22:17+02:00" grpc.time_ms=33.846 peer.address="[::1]:47356" span.kind=server system=grpc
mag 24 09:22:17 loraserver lora-app-server[495]: time="2019-05-24T09:22:17+02:00" level=info msg="integration/mqtt: publishing message" qos=0 topic=application/2/device/a81758fffe03d8a9/rx
Thank you regardless for your time.
ChrisB
May 24, 2019, 10:34am
#2
I have some Elsys units.
What exactly are you tying to do? What have you done so far? What are you looking to decode with, the build in JS decode?
Happy to try and help out if I can - no promises of success though.
Hi, I fixed it.
I just kept the same decoder scipt but had to change the decoder function at the bottom not the first one, with the one specified by loraserver
Would you be able to share your JavaScript decoder function? It might be useful for others too
/*
______ _ _______ _______
| ____| | / ____\ \ / / ____|
| |__ | | | (___ \ \_/ / (___
| __| | | \___ \ \ / \___ \
| |____| |____ ____) | | | ____) |
|______|______|_____/ |_| |_____/
ELSYS simple payload decoder.
Use it as it is or remove the bugs :)
www.elsys.se
peter@elsys.se
*/
var TYPE_TEMP = 0x01; //temp 2 bytes -3276.8°C -->3276.7°C
var TYPE_RH = 0x02; //Humidity 1 byte 0-100%
var TYPE_ACC = 0x03; //acceleration 3 bytes X,Y,Z -128 --> 127 +/-63=1G
var TYPE_LIGHT = 0x04; //Light 2 bytes 0-->65535 Lux
var TYPE_MOTION = 0x05; //No of motion 1 byte 0-255
var TYPE_CO2 = 0x06; //Co2 2 bytes 0-65535 ppm
var TYPE_VDD = 0x07; //VDD 2byte 0-65535mV
var TYPE_ANALOG1 = 0x08; //VDD 2byte 0-65535mV
var TYPE_GPS = 0x09; //3bytes lat 3bytes long binary
var TYPE_PULSE1 = 0x0A; //2bytes relative pulse count
var TYPE_PULSE1_ABS = 0x0B; //4bytes no 0->0xFFFFFFFF
var TYPE_EXT_TEMP1 = 0x0C; //2bytes -3276.5C-->3276.5C
var TYPE_EXT_DIGITAL = 0x0D; //1bytes value 1 or 0
var TYPE_EXT_DISTANCE = 0x0E; //2bytes distance in mm
var TYPE_ACC_MOTION = 0x0F; //1byte number of vibration/motion
var TYPE_IR_TEMP = 0x10; //2bytes internal temp 2bytes external temp -3276.5C-->3276.5C
var TYPE_OCCUPANCY = 0x11; //1byte data
var TYPE_WATERLEAK = 0x12; //1byte data 0-255
var TYPE_GRIDEYE = 0x13; //65byte temperature data 1byte ref+64byte external temp
var TYPE_PRESSURE = 0x14; //4byte pressure data (hPa)
var TYPE_SOUND = 0x15; //2byte sound data (peak/avg)
var TYPE_PULSE2 = 0x16; //2bytes 0-->0xFFFF
var TYPE_PULSE2_ABS = 0x17; //4bytes no 0->0xFFFFFFFF
var TYPE_ANALOG2 = 0x18; //2bytes voltage in mV
var TYPE_EXT_TEMP2 = 0x19; //2bytes -3276.5C-->3276.5C
var TYPE_EXT_DIGITAL2 = 0x1A; // 1bytes value 1 or 0
var TYPE_DEBUG = 0x3D; // 4bytes debug
function bin16dec(bin) {
var num=bin&0xFFFF;
if (0x8000 & num)
num = - (0x010000 - num);
return num;
}
function bin8dec(bin) {
var num=bin&0xFF;
if (0x80 & num)
num = - (0x0100 - num);
return num;
}
function hexToBytes(hex) {
for (var bytes = [], c = 0; c < hex.length; c += 2)
bytes.push(parseInt(hex.substr(c, 2), 16));
return bytes;
}
function DecodeElsysPayload(data){
var obj = new Object();
for(i=0;i<data.length;i++){
//console.log(data[i]);
switch(data[i]){
case TYPE_TEMP: //Temperature
var temp=(data[i+1]<<8)|(data[i+2]);
temp=bin16dec(temp);
obj.temperature=temp/10;
i+=2;
break
case TYPE_RH: //Humidity
var rh=(data[i+1]);
obj.humidity=rh;
i+=1;
break
case TYPE_ACC: //Acceleration
obj.x=bin8dec(data[i+1]);
obj.y=bin8dec(data[i+2]);
obj.z=bin8dec(data[i+3]);
i+=3;
break
case TYPE_LIGHT: //Light
obj.light=(data[i+1]<<8)|(data[i+2]);
i+=2;
break
case TYPE_MOTION: //Motion sensor(PIR)
obj.motion=(data[i+1]);
i+=1;
break
case TYPE_CO2: //CO2
obj.co2=(data[i+1]<<8)|(data[i+2]);
i+=2;
break
case TYPE_VDD: //Battery level
obj.vdd=(data[i+1]<<8)|(data[i+2]);
i+=2;
break
case TYPE_ANALOG1: //Analog input 1
obj.analog1=(data[i+1]<<8)|(data[i+2]);
i+=2;
break
case TYPE_GPS: //gps
obj.lat=(data[i+1]<<16)|(data[i+2]<<8)|(data[i+3]);
obj.long=(data[i+4]<<16)|(data[i+5]<<8)|(data[i+6]);
i+=6;
break
case TYPE_PULSE1: //Pulse input 1
obj.pulse1=(data[i+1]<<8)|(data[i+2]);
i+=2;
break
case TYPE_PULSE1_ABS: //Pulse input 1 absolute value
var pulseAbs=(data[i+1]<<24)|(data[i+2]<<16)|(data[i+3]<<8)|(data[i+4]);
obj.pulseAbs=pulseAbs;
i+=4;
break
case TYPE_EXT_TEMP1: //External temp
var temp=(data[i+1]<<8)|(data[i+2]);
temp=bin16dec(temp);
obj.externalTemperature=temp/10;
i+=2;
break
case TYPE_EXT_DIGITAL: //Digital input
obj.digital=(data[i+1]);
i+=1;
break
case TYPE_EXT_DISTANCE: //Distance sensor input
obj.distance=(data[i+1]<<8)|(data[i+2]);
i+=2;
break
case TYPE_ACC_MOTION: //Acc motion
obj.accMotion=(data[i+1]);
i+=1;
break
case TYPE_IR_TEMP: //IR temperature
var iTemp=(data[i+1]<<8)|(data[i+2]);
iTemp=bin16dec(iTemp);
var eTemp=(data[i+3]<<8)|(data[i+4]);
eTemp=bin16dec(eTemp);
obj.irInternalTemperature=iTemp/10;
obj.irExternalTemperature=eTemp/10;
i+=4;
break
case TYPE_OCCUPANCY: //Body occupancy
obj.occupancy=(data[i+1]);
i+=1;
break
case TYPE_WATERLEAK: //Water leak
obj.waterleak=(data[i+1]);
i+=1;
break
case TYPE_GRIDEYE: //Grideye data
i+=65;
break
case TYPE_PRESSURE: //External Pressure
var temp=(data[i+1]<<24)|(data[i+2]<<16)|(data[i+3]<<8)|(data[i+4]);
obj.pressure=temp/1000;
i+=4;
break
case TYPE_SOUND: //Sound
obj.soundPeak=data[i+1];
obj.soundAvg=data[i+2];
i+=2;
break
case TYPE_PULSE2: //Pulse 2
obj.pulse2=(data[i+1]<<8)|(data[i+2]);
i+=2;
break
case TYPE_PULSE2_ABS: //Pulse input 2 absolute value
obj.pulseAbs2=(data[i+1]<<24)|(data[i+2]<<16)|(data[i+3]<<8)|(data[i+4]);
i+=4;
break
case TYPE_ANALOG2: //Analog input 2
obj.analog2=(data[i+1]<<8)|(data[i+2]);
i+=2;
break
case TYPE_EXT_TEMP2: //External temp 2
var temp=(data[i+1]<<8)|(data[i+2]);
temp=bin16dec(temp);
obj.externalTemperature2=temp/10;
i+=2;
break
case TYPE_EXT_DIGITAL2: //Digital input 2
obj.digital2=(data[i+1]);
i+=1;
break
default: //somthing is wrong with data
i=data.length;
break
}
}
return obj;
}
function Decoder(bytes, port) {
return DecodeElsysPayload(bytes);
}
function Decode(fPort, bytes) {
return DecodeElsysPayload(bytes);
}
5 Likes
@Lora_Softech do you perhaps have download encoding function for Elsys as well?
…and change const declaration to var declaration in beginning
dmorck
February 10, 2020, 2:23pm
#8
Good share. Much appreciated.