Payloader AirCheq Pro 4 inch t.b.v. LoRa Gateway

Payloader AirCheq Pro 4 inch t.b.v. LoRa Gateway

Lorawan Protocol




1.     Uplink data to gateway (15 bytes)

Data uploads for devices

Example: 02 80 01 09 35 01 00 18 00 38 00 C8 00 3D 0A

CO22 bytes

0280

Room temperature: 2 bytes, 10 times the actual temperature value, for example, actual temperature value=0x0109/10=26.5 ;

0109

Humidity: 1 bytes;

35

On/off status1 byte00=OFF; 01=ON

01

PM10: 2 bytes

0018

PM25: 2 bytes

0038

VOC: 2 bytes

00C8

PM100: 2 bytes

003D

LoRa upload cycle: 1byte, Unit minute. Set enumeration 1510153060.

0A

           

2.     Download data to thermostat

Basic data format: frame header+length+data

1)       ON/OFF

frame header

length

DATA

00

01

00

00=off01=on

example00 01 01. ON.

2)       LoRa upload cycle

frame header

length

DATA

01

01

0A

Set enumeration 1510153060.

example01 01 0A.



function Decode(fPort, bytes) {
    var decoded = {};
 
  decoded.devEUI = LoRaObject.devEUI;
  decoded.rssi = LoRaObject.rxInfo[0].rssi;
  decoded.time = LoRaObject.time;
  decoded.gateway = LoRaObject.rxInfo[0].mac;
  decoded.spread = LoRaObject.txInfo.dataRate.spreadFactor;
  decoded.data = bytes;
  decoded.co2 = bytes[0] * 256 + bytes[1];
  decoded.temperature = (bytes[2] * 256 + bytes[3]) / 10;
  decoded.humidity = bytes[4];
  if(bytes.length > 7) decoded.pm1 = bytes[6] * 256 + bytes[7];
  if(bytes.length > 9) decoded.pm25 = bytes[8] * 256 + bytes[9];
  if(bytes.length > 11) decoded.voc = bytes[10] * 256 + bytes[11];
  if(bytes.length > 13) decoded.pm10 = bytes[12] * 256 + bytes[13];
  if(bytes.length > 15) decoded.bp = bytes[14] * 256 + bytes[15];
  if(bytes.length > 17) decoded.nox = bytes[16] * 256 + bytes[17];

  return decoded;
}







    • Related Articles

    • AirCheq Pro koppelen met LoRa Gateway

      1: check via de wifi er nieuwe update beschikbaar is: - verbind de sensor met wifi - Ga neer Systeem information (menu 21) - Als er een update beschikbaar is druk op update. 2: Reset de sensor naar fabrieksinstellingen (menu 23) 3: Als je nu bij menu ...
    • Wifi specificaties Gateway Milesight

      Wifi-specificaties: Geschikt voor Wi-Fi 802.11 b/g/n (2.4 GHz). Ondersteunde beveiligingen: Open/WEP/WPA/WPA2-personal (TKIP and AES). https://www.nslookup.io/dns-records/aircheq.eu Netwerk: Wi-Fi router of bekabelde internetaansluiting met ...
    • Handleiding AirCheq Pro Aero

      download hier de handleiding (in het Engels)
    • AirCheq Touch - WiFi instellen

      1: Open het menu 2: selecteer Netwerkinstellingen 3: Selecteer het netwerk en vul het wachtwoord in. 802.11 @ 2.4GHz b/g/n Wi-Fi network to operate. It is not compatible with a 5GHz network. the sensor can connect to either a dedicated 2.4 GHz Wi-Fi ...
    • Milesight Gateway Wifi verbinden

      Maak op je computer verbinding met het netwerk van de Gateway. Ga naar 192.168.10.1, u ziet dan onderstaand scherm Als de gateway nog geen internetverbinding heeft, gebruik dan 192.168.1.1 De inloggegevens voor het netwerk zijn: Gebruikersnaam: admin ...