├── .github └── workflows │ └── validate-data-converters.yml ├── .gitignore ├── LICENSE ├── README.md ├── VENDORS ├── Bosch │ ├── Parking_Lot_Sensor │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── payload_3.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ ├── result_2.json │ │ │ │ └── result_3.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── info.json │ └── logo.svg ├── Decentlab │ ├── DL-5TM │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-ALB │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-ATM22 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-ATM41 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-BLG │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-CTD10 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-CWS │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-CWS2 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-DLR2-002 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-DLR2-003 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-DLR2-004 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-DLR2-005 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-DLR2-006 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-DLR2-008 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-DLR2-009 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-DLR2-010 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-DLR2-011 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-DLR2-012 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-DS18 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-DWS │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-GMM │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-IAM │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── payload_04.json │ │ │ │ ├── payload_05.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ ├── result_03.json │ │ │ │ ├── result_04.json │ │ │ │ └── result_05.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_3.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_3.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_02.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_02.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_02.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_02.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-IFD │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-ILT │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-ISD │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-ISF │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-ITST │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-KL66 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-LID │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-LP8P │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── payload_04.json │ │ │ │ ├── payload_05.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ ├── result_03.json │ │ │ │ ├── result_04.json │ │ │ │ └── result_05.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_3.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_3.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_02.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_02.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_02.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_02.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-LPW │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-LWS │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-MBX │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_3.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_3.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-MES5 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-NTU │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-OPTOD │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-PAR │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-PHEHT │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-PM │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── payload_04.json │ │ │ │ ├── payload_05.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ ├── result_03.json │ │ │ │ ├── result_04.json │ │ │ │ └── result_05.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_3.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_3.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_02.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_02.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_02.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_02.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-PR21 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-PR26 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-PR36 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-PR36CTD │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-PYR │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-RHC │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-SDD │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-SHT35-001 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-SHT35-002 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-SMTP │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-TBRG │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-TP │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-TRS11 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-TRS12 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-TRS21 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-WRM │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-ZN1 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ └── result_03.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ └── result_2.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── info.json │ │ └── photo.png │ ├── DL-ZN2 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── result.json │ │ │ │ └── result_01.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingPark │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingParkEnterprise │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── info.json │ │ └── photo.png │ ├── info.json │ └── logo.svg ├── Elsys │ ├── ERS2 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── ERS2_CO2 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── ERS2_CO2_Lite │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── ERS2_Lite │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── ERS2_Sound │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── ERS2_VOC │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── info.json │ └── logo.svg ├── Milesight │ ├── AM102 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── AM102L │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── AM103 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── AM103L │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── AM104 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── AM107 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── AM307 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── AM307L │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── AM308 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── AM308L │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── AM319 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── AM319L │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── AT101 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── CT101-CT103 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── payload_3.json │ │ │ │ ├── payload_4.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ ├── result_2.json │ │ │ │ ├── result_3.json │ │ │ │ └── result_4.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── payload_3.json │ │ │ │ ├── payload_4.json │ │ │ │ ├── payload_5.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ ├── result_2.json │ │ │ │ ├── result_3.json │ │ │ │ ├── result_4.json │ │ │ │ └── result_5.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── payload_3.json │ │ │ │ ├── payload_4.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ ├── result_2.json │ │ │ │ ├── result_3.json │ │ │ │ └── result_4.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── payload_3.json │ │ │ │ ├── payload_4.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ ├── result_2.json │ │ │ │ ├── result_3.json │ │ │ │ └── result_4.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── DS3604 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── EM300-CL │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── EM300-DI │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── EM300-DI_Hall │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── EM300-MCS │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── EM300-MLD │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── EM300-SLD-ZLD │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── EM300-TH │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── EM310-TILT │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── EM310-UDL │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── EM320-TH │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── EM320-TILT │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── EM400-TLD │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── EM400-UDL │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── EM410-RDL │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── EM500-CO2 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── EM500-LGT │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── EM500-PP │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── EM500-PT100 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── EM500-SMTC │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── EM500-SWL │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── EM500-UDL │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── GS101 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── GS301 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── TS101 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── TS201 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── VS121 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── VS132 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── VS133 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── VS330 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── VS34x │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── VS350 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── VS351 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── VS360 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── WS101 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── WS201 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── WS202 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── WS301 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── WS302 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── WS303 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── HTTP │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── WT201 │ │ ├── ChirpStack │ │ │ ├── downlink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── payload_04.json │ │ │ │ ├── payload_05.json │ │ │ │ ├── payload_06.json │ │ │ │ ├── payload_07.json │ │ │ │ ├── payload_08.json │ │ │ │ ├── payload_09.json │ │ │ │ ├── payload_10.json │ │ │ │ ├── payload_11.json │ │ │ │ ├── payload_12.json │ │ │ │ ├── payload_14.json │ │ │ │ ├── payload_15.json │ │ │ │ ├── payload_16.json │ │ │ │ ├── payload_17.json │ │ │ │ ├── payload_18.json │ │ │ │ ├── payload_19.json │ │ │ │ ├── payload_20.json │ │ │ │ ├── payload_21.json │ │ │ │ ├── payload_22.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ ├── result_03.json │ │ │ │ ├── result_04.json │ │ │ │ ├── result_05.json │ │ │ │ ├── result_06.json │ │ │ │ ├── result_07.json │ │ │ │ ├── result_08.json │ │ │ │ ├── result_09.json │ │ │ │ ├── result_10.json │ │ │ │ ├── result_11.json │ │ │ │ ├── result_12.json │ │ │ │ ├── result_14.json │ │ │ │ ├── result_15.json │ │ │ │ ├── result_16.json │ │ │ │ ├── result_17.json │ │ │ │ ├── result_18.json │ │ │ │ ├── result_19.json │ │ │ │ ├── result_20.json │ │ │ │ ├── result_21.json │ │ │ │ └── result_22.json │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── payload_04.json │ │ │ │ ├── payload_05.json │ │ │ │ ├── payload_06.json │ │ │ │ ├── payload_07.json │ │ │ │ ├── payload_08.json │ │ │ │ ├── payload_09.json │ │ │ │ ├── payload_10.json │ │ │ │ ├── payload_11.json │ │ │ │ ├── payload_12.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ ├── result_03.json │ │ │ │ ├── result_04.json │ │ │ │ ├── result_05.json │ │ │ │ ├── result_06.json │ │ │ │ ├── result_07.json │ │ │ │ ├── result_08.json │ │ │ │ ├── result_09.json │ │ │ │ ├── result_10.json │ │ │ │ ├── result_11.json │ │ │ │ └── result_12.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── info.json │ └── logo.svg ├── Netvox │ ├── R311A │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── payload_3.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ ├── result_2.json │ │ │ │ └── result_3.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── R716S │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── payload_3.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ ├── result_2.json │ │ │ │ └── result_3.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── R718A │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── R718AB │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── payload_3.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ ├── result_2.json │ │ │ │ └── result_3.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── R718DA │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── R718DA2 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── R718H │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── payload_3.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ ├── result_2.json │ │ │ │ └── result_3.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── R718KA │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── R718N3 │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_01.json │ │ │ │ ├── payload_02.json │ │ │ │ ├── payload_03.json │ │ │ │ ├── payload_04.json │ │ │ │ ├── payload_05.json │ │ │ │ ├── result.json │ │ │ │ ├── result_01.json │ │ │ │ ├── result_02.json │ │ │ │ ├── result_03.json │ │ │ │ ├── result_04.json │ │ │ │ └── result_05.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── R718WB │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── R719A │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── R72624 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── RA0715 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── RA0723 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── payload_3.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ ├── result_2.json │ │ │ │ └── result_3.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── info.json │ └── logo.svg ├── Nwave │ ├── G4_NCC_FM │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── G4_NCC_SM │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── G4_NPS_FM │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── payload_3.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ ├── result_2.json │ │ │ │ └── result_3.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── G4_NPS_SM │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── payload_3.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ ├── result_2.json │ │ │ │ └── result_3.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── info.json │ └── logo.svg ├── SensiEDGE │ ├── SensiLora2_0 │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── guide.md │ │ ├── info.json │ │ └── photo.png │ ├── info.json │ └── logo.svg ├── Tektelic │ ├── Aura │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── info.json │ │ └── photo.png │ ├── Clover │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── info.json │ │ └── photo.png │ ├── Comfort │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── info.json │ │ └── photo.png │ ├── Flux │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── info.json │ │ └── photo.png │ ├── Kiwi │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── payload_2.json │ │ │ │ ├── result.json │ │ │ │ ├── result_1.json │ │ │ │ └── result_2.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── info.json │ │ └── photo.png │ ├── Vivid │ │ ├── ChirpStack │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── LORIOT │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ ├── payload_1.json │ │ │ │ ├── result.json │ │ │ │ └── result_1.json │ │ ├── ThingsStackCommunity │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── ThingsStackIndustries │ │ │ └── uplink │ │ │ │ ├── converter.json │ │ │ │ ├── metadata.json │ │ │ │ ├── payload.json │ │ │ │ └── result.json │ │ ├── info.json │ │ └── photo.png │ ├── info.json │ └── logo.svg └── Yobiiq │ ├── EM2101 │ ├── ChirpStack │ │ ├── downlink │ │ │ ├── converter.json │ │ │ ├── metadata.json │ │ │ ├── payload.json │ │ │ ├── payload_01.json │ │ │ ├── payload_02.json │ │ │ ├── payload_03.json │ │ │ ├── payload_04.json │ │ │ ├── result.json │ │ │ ├── result_01.json │ │ │ ├── result_02.json │ │ │ ├── result_03.json │ │ │ └── result_04.json │ │ └── uplink │ │ │ ├── converter.json │ │ │ ├── metadata.json │ │ │ ├── payload.json │ │ │ ├── payload_01.json │ │ │ ├── payload_02.json │ │ │ ├── payload_03.json │ │ │ ├── payload_04.json │ │ │ ├── result.json │ │ │ ├── result_01.json │ │ │ ├── result_02.json │ │ │ ├── result_03.json │ │ │ └── result_04.json │ ├── LORIOT │ │ ├── downlink │ │ │ ├── converter.json │ │ │ ├── metadata.json │ │ │ ├── payload.json │ │ │ ├── payload_01.json │ │ │ ├── payload_02.json │ │ │ ├── payload_03.json │ │ │ ├── payload_04.json │ │ │ ├── result.json │ │ │ ├── result_01.json │ │ │ ├── result_02.json │ │ │ ├── result_03.json │ │ │ └── result_04.json │ │ └── uplink │ │ │ ├── converter.json │ │ │ ├── metadata.json │ │ │ ├── payload.json │ │ │ ├── payload_01.json │ │ │ ├── payload_02.json │ │ │ ├── payload_03.json │ │ │ ├── payload_04.json │ │ │ ├── payload_5.json │ │ │ ├── result.json │ │ │ ├── result_01.json │ │ │ ├── result_02.json │ │ │ ├── result_03.json │ │ │ ├── result_04.json │ │ │ └── result_5.json │ ├── ThingsStackCommunity │ │ ├── downlink │ │ │ ├── converter.json │ │ │ ├── metadata.json │ │ │ ├── payload.json │ │ │ ├── payload_01.json │ │ │ ├── payload_02.json │ │ │ ├── payload_03.json │ │ │ ├── payload_04.json │ │ │ ├── result.json │ │ │ ├── result_01.json │ │ │ ├── result_02.json │ │ │ ├── result_03.json │ │ │ └── result_04.json │ │ └── uplink │ │ │ ├── converter.json │ │ │ ├── metadata.json │ │ │ ├── payload.json │ │ │ ├── payload_01.json │ │ │ ├── payload_02.json │ │ │ ├── payload_03.json │ │ │ ├── payload_04.json │ │ │ ├── result.json │ │ │ ├── result_01.json │ │ │ ├── result_02.json │ │ │ ├── result_03.json │ │ │ └── result_04.json │ ├── ThingsStackIndustries │ │ ├── downlink │ │ │ ├── converter.json │ │ │ ├── metadata.json │ │ │ ├── payload.json │ │ │ ├── payload_01.json │ │ │ ├── payload_02.json │ │ │ ├── payload_03.json │ │ │ ├── payload_04.json │ │ │ ├── result.json │ │ │ ├── result_01.json │ │ │ ├── result_02.json │ │ │ ├── result_03.json │ │ │ └── result_04.json │ │ └── uplink │ │ │ ├── converter.json │ │ │ ├── metadata.json │ │ │ ├── payload.json │ │ │ ├── payload_01.json │ │ │ ├── payload_02.json │ │ │ ├── payload_03.json │ │ │ ├── payload_04.json │ │ │ ├── result.json │ │ │ ├── result_01.json │ │ │ ├── result_02.json │ │ │ ├── result_03.json │ │ │ └── result_04.json │ ├── guide.md │ ├── info.json │ └── photo.png │ ├── EM4301 │ ├── ChirpStack │ │ ├── downlink │ │ │ ├── converter.json │ │ │ ├── metadata.json │ │ │ ├── payload.json │ │ │ ├── payload_01.json │ │ │ ├── payload_02.json │ │ │ ├── payload_03.json │ │ │ ├── result.json │ │ │ ├── result_01.json │ │ │ ├── result_02.json │ │ │ └── result_03.json │ │ └── uplink │ │ │ ├── converter.json │ │ │ ├── metadata.json │ │ │ ├── payload.json │ │ │ ├── payload_01.json │ │ │ ├── payload_02.json │ │ │ ├── payload_03.json │ │ │ ├── result.json │ │ │ ├── result_01.json │ │ │ ├── result_02.json │ │ │ └── result_03.json │ ├── LORIOT │ │ ├── downlink │ │ │ ├── converter.json │ │ │ ├── metadata.json │ │ │ ├── payload.json │ │ │ ├── payload_01.json │ │ │ ├── payload_02.json │ │ │ ├── payload_03.json │ │ │ ├── result.json │ │ │ ├── result_01.json │ │ │ ├── result_02.json │ │ │ └── result_03.json │ │ └── uplink │ │ │ ├── converter.json │ │ │ ├── metadata.json │ │ │ ├── payload.json │ │ │ ├── payload_01.json │ │ │ ├── payload_02.json │ │ │ ├── payload_03.json │ │ │ ├── payload_4.json │ │ │ ├── result.json │ │ │ ├── result_01.json │ │ │ ├── result_02.json │ │ │ ├── result_03.json │ │ │ └── result_4.json │ ├── ThingsStackCommunity │ │ ├── downlink │ │ │ ├── converter.json │ │ │ ├── metadata.json │ │ │ ├── payload.json │ │ │ ├── payload_01.json │ │ │ ├── payload_02.json │ │ │ ├── payload_03.json │ │ │ ├── result.json │ │ │ ├── result_01.json │ │ │ ├── result_02.json │ │ │ └── result_03.json │ │ └── uplink │ │ │ ├── converter.json │ │ │ ├── metadata.json │ │ │ ├── payload.json │ │ │ ├── payload_01.json │ │ │ ├── payload_02.json │ │ │ ├── payload_03.json │ │ │ ├── result.json │ │ │ ├── result_01.json │ │ │ ├── result_02.json │ │ │ └── result_03.json │ ├── ThingsStackIndustries │ │ ├── downlink │ │ │ ├── converter.json │ │ │ ├── metadata.json │ │ │ ├── payload.json │ │ │ ├── payload_01.json │ │ │ ├── payload_02.json │ │ │ ├── payload_03.json │ │ │ ├── result.json │ │ │ ├── result_01.json │ │ │ ├── result_02.json │ │ │ └── result_03.json │ │ └── uplink │ │ │ ├── converter.json │ │ │ ├── metadata.json │ │ │ ├── payload.json │ │ │ ├── payload_01.json │ │ │ ├── payload_02.json │ │ │ ├── payload_03.json │ │ │ ├── result.json │ │ │ ├── result_01.json │ │ │ ├── result_02.json │ │ │ └── result_03.json │ ├── guide.md │ ├── info.json │ └── photo.png │ ├── RM200 │ ├── ChirpStack │ │ ├── downlink │ │ │ ├── converter.json │ │ │ ├── metadata.json │ │ │ ├── payload.json │ │ │ ├── payload_01.json │ │ │ ├── payload_02.json │ │ │ ├── payload_03.json │ │ │ ├── payload_04.json │ │ │ ├── result.json │ │ │ ├── result_01.json │ │ │ ├── result_02.json │ │ │ ├── result_03.json │ │ │ └── result_04.json │ │ └── uplink │ │ │ ├── converter.json │ │ │ ├── metadata.json │ │ │ ├── payload.json │ │ │ ├── payload_01.json │ │ │ ├── payload_02.json │ │ │ ├── payload_03.json │ │ │ ├── result.json │ │ │ ├── result_01.json │ │ │ ├── result_02.json │ │ │ └── result_03.json │ ├── LORIOT │ │ ├── downlink │ │ │ ├── converter.json │ │ │ ├── metadata.json │ │ │ ├── payload.json │ │ │ ├── payload_01.json │ │ │ ├── payload_02.json │ │ │ ├── payload_03.json │ │ │ ├── payload_04.json │ │ │ ├── result.json │ │ │ ├── result_01.json │ │ │ ├── result_02.json │ │ │ ├── result_03.json │ │ │ └── result_04.json │ │ └── uplink │ │ │ ├── converter.json │ │ │ ├── metadata.json │ │ │ ├── payload.json │ │ │ ├── payload_01.json │ │ │ ├── payload_02.json │ │ │ ├── payload_03.json │ │ │ ├── payload_4.json │ │ │ ├── result.json │ │ │ ├── result_01.json │ │ │ ├── result_02.json │ │ │ ├── result_03.json │ │ │ └── result_4.json │ ├── ThingsStackCommunity │ │ ├── downlink │ │ │ ├── converter.json │ │ │ ├── metadata.json │ │ │ ├── payload.json │ │ │ ├── payload_01.json │ │ │ ├── payload_02.json │ │ │ ├── payload_03.json │ │ │ ├── payload_04.json │ │ │ ├── result.json │ │ │ ├── result_01.json │ │ │ ├── result_02.json │ │ │ ├── result_03.json │ │ │ └── result_04.json │ │ └── uplink │ │ │ ├── converter.json │ │ │ ├── metadata.json │ │ │ ├── payload.json │ │ │ ├── payload_01.json │ │ │ ├── payload_02.json │ │ │ ├── payload_03.json │ │ │ ├── result.json │ │ │ ├── result_01.json │ │ │ ├── result_02.json │ │ │ └── result_03.json │ ├── ThingsStackIndustries │ │ ├── downlink │ │ │ ├── converter.json │ │ │ ├── metadata.json │ │ │ ├── payload.json │ │ │ ├── payload_01.json │ │ │ ├── payload_02.json │ │ │ ├── payload_03.json │ │ │ ├── payload_04.json │ │ │ ├── result.json │ │ │ ├── result_01.json │ │ │ ├── result_02.json │ │ │ ├── result_03.json │ │ │ └── result_04.json │ │ └── uplink │ │ │ ├── converter.json │ │ │ ├── metadata.json │ │ │ ├── payload.json │ │ │ ├── payload_01.json │ │ │ ├── payload_02.json │ │ │ ├── payload_03.json │ │ │ ├── result.json │ │ │ ├── result_01.json │ │ │ ├── result_02.json │ │ │ └── result_03.json │ ├── guide.md │ ├── info.json │ └── photo.png │ ├── SD1001 │ ├── ChirpStack │ │ ├── downlink │ │ │ ├── converter.json │ │ │ ├── metadata.json │ │ │ ├── payload.json │ │ │ ├── payload_01.json │ │ │ ├── result.json │ │ │ └── result_01.json │ │ └── uplink │ │ │ ├── converter.json │ │ │ ├── metadata.json │ │ │ ├── payload.json │ │ │ ├── payload_01.json │ │ │ ├── payload_02.json │ │ │ ├── payload_03.json │ │ │ ├── result.json │ │ │ ├── result_01.json │ │ │ ├── result_02.json │ │ │ └── result_03.json │ ├── LORIOT │ │ ├── downlink │ │ │ ├── converter.json │ │ │ ├── metadata.json │ │ │ ├── payload.json │ │ │ ├── payload_01.json │ │ │ ├── result.json │ │ │ └── result_01.json │ │ └── uplink │ │ │ ├── converter.json │ │ │ ├── metadata.json │ │ │ ├── payload.json │ │ │ ├── payload_01.json │ │ │ ├── payload_02.json │ │ │ ├── payload_03.json │ │ │ ├── payload_4.json │ │ │ ├── result.json │ │ │ ├── result_01.json │ │ │ ├── result_02.json │ │ │ ├── result_03.json │ │ │ └── result_4.json │ ├── ThingsStackCommunity │ │ ├── downlink │ │ │ ├── converter.json │ │ │ ├── metadata.json │ │ │ ├── payload.json │ │ │ ├── payload_01.json │ │ │ ├── result.json │ │ │ └── result_01.json │ │ └── uplink │ │ │ ├── converter.json │ │ │ ├── metadata.json │ │ │ ├── payload.json │ │ │ ├── payload_01.json │ │ │ ├── payload_02.json │ │ │ ├── payload_03.json │ │ │ ├── result.json │ │ │ ├── result_01.json │ │ │ ├── result_02.json │ │ │ └── result_03.json │ ├── ThingsStackIndustries │ │ ├── downlink │ │ │ ├── converter.json │ │ │ ├── metadata.json │ │ │ ├── payload.json │ │ │ ├── payload_01.json │ │ │ ├── result.json │ │ │ └── result_01.json │ │ └── uplink │ │ │ ├── converter.json │ │ │ ├── metadata.json │ │ │ ├── payload.json │ │ │ ├── payload_01.json │ │ │ ├── payload_02.json │ │ │ ├── payload_03.json │ │ │ ├── result.json │ │ │ ├── result_01.json │ │ │ ├── result_02.json │ │ │ └── result_03.json │ ├── guide.md │ ├── info.json │ └── photo.png │ ├── info.json │ └── logo.svg └── data_converters_validator.py /.github/workflows/validate-data-converters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/.github/workflows/validate-data-converters.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/README.md -------------------------------------------------------------------------------- /VENDORS/Bosch/Parking_Lot_Sensor/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Bosch/Parking_Lot_Sensor/guide.md -------------------------------------------------------------------------------- /VENDORS/Bosch/Parking_Lot_Sensor/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Bosch/Parking_Lot_Sensor/info.json -------------------------------------------------------------------------------- /VENDORS/Bosch/Parking_Lot_Sensor/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Bosch/Parking_Lot_Sensor/photo.png -------------------------------------------------------------------------------- /VENDORS/Bosch/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Bosch/info.json -------------------------------------------------------------------------------- /VENDORS/Bosch/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Bosch/logo.svg -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-5TM/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-5TM/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-5TM/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-5TM/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-5TM/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-5TM/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-ALB/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-ALB/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-ALB/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-ALB/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-ALB/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-ALB/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-ATM22/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-ATM22/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-ATM22/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-ATM22/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-ATM41/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-ATM41/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-ATM41/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-ATM41/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-BLG/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-BLG/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-BLG/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-BLG/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-BLG/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-BLG/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-CTD10/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-CTD10/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-CTD10/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-CTD10/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-CWS/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-CWS/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-CWS/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-CWS/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-CWS/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-CWS/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-CWS2/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-CWS2/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-CWS2/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-CWS2/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-DLR2-002/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-DLR2-002/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-DLR2-002/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-DLR2-002/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-DLR2-003/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-DLR2-003/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-DLR2-003/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-DLR2-003/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-DLR2-004/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-DLR2-004/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-DLR2-004/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-DLR2-004/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-DLR2-005/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-DLR2-005/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-DLR2-005/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-DLR2-005/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-DLR2-006/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-DLR2-006/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-DLR2-006/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-DLR2-006/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-DLR2-008/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-DLR2-008/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-DLR2-008/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-DLR2-008/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-DLR2-009/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-DLR2-009/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-DLR2-009/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-DLR2-009/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-DLR2-010/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-DLR2-010/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-DLR2-010/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-DLR2-010/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-DLR2-011/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-DLR2-011/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-DLR2-011/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-DLR2-011/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-DLR2-012/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-DLR2-012/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-DLR2-012/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-DLR2-012/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-DS18/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-DS18/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-DS18/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-DS18/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-DWS/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-DWS/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-DWS/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-DWS/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-DWS/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-DWS/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-GMM/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-GMM/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-GMM/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-GMM/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-GMM/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-GMM/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-IAM/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-IAM/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-IAM/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-IAM/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-IAM/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-IAM/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-IFD/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-IFD/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-IFD/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-IFD/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-IFD/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-IFD/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-ILT/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-ILT/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-ILT/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-ILT/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-ILT/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-ILT/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-ISD/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-ISD/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-ISD/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-ISD/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-ISD/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-ISD/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-ISF/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-ISF/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-ISF/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-ISF/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-ISF/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-ISF/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-ITST/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-ITST/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-ITST/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-ITST/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-KL66/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-KL66/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-KL66/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-KL66/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-LID/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-LID/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-LID/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-LID/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-LID/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-LID/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-LP8P/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-LP8P/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-LP8P/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-LP8P/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-LPW/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-LPW/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-LPW/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-LPW/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-LPW/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-LPW/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-LWS/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-LWS/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-LWS/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-LWS/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-LWS/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-LWS/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-MBX/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-MBX/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-MBX/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-MBX/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-MBX/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-MBX/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-MES5/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-MES5/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-MES5/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-MES5/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-NTU/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-NTU/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-NTU/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-NTU/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-NTU/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-NTU/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-OPTOD/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-OPTOD/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-OPTOD/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-OPTOD/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-PAR/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-PAR/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-PAR/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-PAR/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-PAR/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-PAR/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-PHEHT/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-PHEHT/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-PHEHT/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-PHEHT/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-PM/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-PM/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-PM/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-PM/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-PM/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-PM/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-PM/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-PM/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-PR21/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-PR21/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-PR21/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-PR21/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-PR26/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-PR26/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-PR26/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-PR26/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-PR36/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-PR36/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-PR36/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-PR36/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-PR36CTD/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-PR36CTD/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-PR36CTD/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-PR36CTD/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-PYR/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-PYR/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-PYR/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-PYR/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-PYR/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-PYR/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-RHC/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-RHC/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-RHC/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-RHC/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-RHC/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-RHC/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-SDD/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-SDD/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-SDD/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-SDD/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-SDD/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-SDD/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-SHT35-001/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-SHT35-001/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-SHT35-001/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-SHT35-001/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-SHT35-002/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-SHT35-002/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-SHT35-002/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-SHT35-002/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-SMTP/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-SMTP/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-SMTP/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-SMTP/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-TBRG/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-TBRG/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-TBRG/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-TBRG/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-TP/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-TP/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-TP/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-TP/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-TP/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-TP/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-TP/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-TP/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-TRS11/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-TRS11/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-TRS11/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-TRS11/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-TRS12/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-TRS12/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-TRS12/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-TRS12/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-TRS21/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-TRS21/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-TRS21/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-TRS21/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-WRM/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-WRM/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-WRM/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-WRM/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-WRM/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-WRM/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-ZN1/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-ZN1/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-ZN1/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-ZN1/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-ZN1/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-ZN1/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-ZN2/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-ZN2/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-ZN2/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-ZN2/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/DL-ZN2/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/DL-ZN2/photo.png -------------------------------------------------------------------------------- /VENDORS/Decentlab/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/info.json -------------------------------------------------------------------------------- /VENDORS/Decentlab/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Decentlab/logo.svg -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2/ChirpStack/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2/ChirpStack/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2/ChirpStack/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2/ChirpStack/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2/ChirpStack/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2/ChirpStack/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2/LORIOT/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2/LORIOT/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2/LORIOT/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2/LORIOT/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2/LORIOT/uplink/payload_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2/LORIOT/uplink/payload_1.json -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2/LORIOT/uplink/result_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2/LORIOT/uplink/result_1.json -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2/guide.md -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2/info.json -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2/photo.png -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2_CO2/LORIOT/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2_CO2/LORIOT/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2_CO2/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2_CO2/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2_CO2/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2_CO2/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2_CO2/LORIOT/uplink/result_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2_CO2/LORIOT/uplink/result_1.json -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2_CO2/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2_CO2/guide.md -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2_CO2/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2_CO2/info.json -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2_CO2/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2_CO2/photo.png -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2_CO2_Lite/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2_CO2_Lite/guide.md -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2_CO2_Lite/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2_CO2_Lite/info.json -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2_CO2_Lite/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2_CO2_Lite/photo.png -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2_Lite/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2_Lite/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2_Lite/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2_Lite/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2_Lite/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2_Lite/guide.md -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2_Lite/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2_Lite/info.json -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2_Lite/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2_Lite/photo.png -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2_Sound/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2_Sound/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2_Sound/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2_Sound/guide.md -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2_Sound/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2_Sound/info.json -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2_Sound/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2_Sound/photo.png -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2_VOC/LORIOT/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2_VOC/LORIOT/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2_VOC/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2_VOC/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2_VOC/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2_VOC/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2_VOC/LORIOT/uplink/result_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2_VOC/LORIOT/uplink/result_1.json -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2_VOC/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2_VOC/guide.md -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2_VOC/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2_VOC/info.json -------------------------------------------------------------------------------- /VENDORS/Elsys/ERS2_VOC/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/ERS2_VOC/photo.png -------------------------------------------------------------------------------- /VENDORS/Elsys/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/info.json -------------------------------------------------------------------------------- /VENDORS/Elsys/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Elsys/logo.svg -------------------------------------------------------------------------------- /VENDORS/Milesight/AM102/HTTP/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM102/HTTP/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM102/HTTP/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM102/HTTP/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM102/HTTP/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM102/HTTP/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM102/HTTP/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM102/HTTP/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM102/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM102/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM102/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM102/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM102/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM102/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/AM102/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM102/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM102/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM102/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/AM102L/HTTP/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM102L/HTTP/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM102L/HTTP/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM102L/HTTP/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM102L/HTTP/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM102L/HTTP/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM102L/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM102L/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM102L/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM102L/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/AM102L/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM102L/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM102L/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM102L/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/AM103/HTTP/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM103/HTTP/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM103/HTTP/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM103/HTTP/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM103/HTTP/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM103/HTTP/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM103/HTTP/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM103/HTTP/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM103/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM103/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM103/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM103/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM103/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM103/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/AM103/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM103/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM103/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM103/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/AM103L/HTTP/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM103L/HTTP/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM103L/HTTP/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM103L/HTTP/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM103L/HTTP/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM103L/HTTP/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM103L/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM103L/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM103L/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM103L/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/AM103L/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM103L/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM103L/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM103L/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/AM104/HTTP/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM104/HTTP/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM104/HTTP/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM104/HTTP/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM104/HTTP/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM104/HTTP/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM104/HTTP/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM104/HTTP/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM104/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM104/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM104/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM104/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM104/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM104/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/AM104/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM104/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM104/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM104/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/AM107/HTTP/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM107/HTTP/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM107/HTTP/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM107/HTTP/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM107/HTTP/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM107/HTTP/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM107/HTTP/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM107/HTTP/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM107/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM107/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM107/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM107/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM107/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM107/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/AM107/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM107/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM107/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM107/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/AM307/HTTP/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM307/HTTP/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM307/HTTP/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM307/HTTP/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM307/HTTP/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM307/HTTP/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM307/HTTP/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM307/HTTP/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM307/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM307/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM307/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM307/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM307/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM307/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/AM307/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM307/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM307/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM307/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/AM307L/HTTP/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM307L/HTTP/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM307L/HTTP/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM307L/HTTP/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM307L/HTTP/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM307L/HTTP/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM307L/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM307L/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM307L/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM307L/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/AM307L/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM307L/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM307L/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM307L/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/AM308/HTTP/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM308/HTTP/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM308/HTTP/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM308/HTTP/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM308/HTTP/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM308/HTTP/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM308/HTTP/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM308/HTTP/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM308/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM308/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM308/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM308/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM308/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM308/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/AM308/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM308/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM308/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM308/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/AM308L/HTTP/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM308L/HTTP/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM308L/HTTP/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM308L/HTTP/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM308L/HTTP/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM308L/HTTP/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM308L/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM308L/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM308L/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM308L/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/AM308L/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM308L/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM308L/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM308L/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/AM319/HTTP/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM319/HTTP/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM319/HTTP/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM319/HTTP/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM319/HTTP/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM319/HTTP/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM319/HTTP/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM319/HTTP/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM319/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM319/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM319/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM319/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM319/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM319/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/AM319/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM319/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM319/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM319/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/AM319L/HTTP/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM319L/HTTP/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM319L/HTTP/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM319L/HTTP/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM319L/HTTP/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM319L/HTTP/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM319L/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM319L/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM319L/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM319L/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/AM319L/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM319L/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AM319L/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AM319L/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/AT101/HTTP/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AT101/HTTP/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AT101/HTTP/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AT101/HTTP/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AT101/HTTP/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AT101/HTTP/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AT101/HTTP/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AT101/HTTP/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AT101/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AT101/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AT101/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AT101/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AT101/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AT101/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/AT101/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AT101/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/AT101/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/AT101/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/CT101-CT103/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/CT101-CT103/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/CT101-CT103/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/CT101-CT103/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/CT101-CT103/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/CT101-CT103/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/DS3604/HTTP/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/DS3604/HTTP/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Milesight/DS3604/HTTP/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/DS3604/HTTP/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/DS3604/HTTP/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/DS3604/HTTP/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/DS3604/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/DS3604/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/DS3604/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/DS3604/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/DS3604/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/DS3604/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/DS3604/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/DS3604/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/EM300-CL/HTTP/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM300-CL/HTTP/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/EM300-CL/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM300-CL/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/EM300-CL/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM300-CL/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/EM300-CL/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM300-CL/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/EM300-DI/HTTP/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM300-DI/HTTP/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/EM300-DI/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM300-DI/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/EM300-DI/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM300-DI/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/EM300-DI/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM300-DI/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/EM300-DI_Hall/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM300-DI_Hall/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/EM300-DI_Hall/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM300-DI_Hall/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/EM300-DI_Hall/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM300-DI_Hall/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/EM300-MCS/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM300-MCS/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/EM300-MCS/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM300-MCS/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/EM300-MCS/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM300-MCS/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/EM300-MLD/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM300-MLD/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/EM300-MLD/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM300-MLD/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/EM300-MLD/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM300-MLD/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/EM300-SLD-ZLD/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM300-SLD-ZLD/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/EM300-SLD-ZLD/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM300-SLD-ZLD/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/EM300-SLD-ZLD/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM300-SLD-ZLD/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/EM300-TH/HTTP/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM300-TH/HTTP/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/EM300-TH/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM300-TH/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/EM300-TH/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM300-TH/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/EM300-TH/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM300-TH/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/EM310-TILT/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM310-TILT/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/EM310-TILT/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM310-TILT/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/EM310-TILT/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM310-TILT/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/EM310-UDL/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM310-UDL/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/EM310-UDL/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM310-UDL/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/EM310-UDL/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM310-UDL/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/EM320-TH/HTTP/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM320-TH/HTTP/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/EM320-TH/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM320-TH/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/EM320-TH/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM320-TH/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/EM320-TH/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM320-TH/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/EM320-TILT/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM320-TILT/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/EM320-TILT/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM320-TILT/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/EM320-TILT/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM320-TILT/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/EM400-TLD/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM400-TLD/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/EM400-TLD/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM400-TLD/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/EM400-TLD/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM400-TLD/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/EM400-UDL/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM400-UDL/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/EM400-UDL/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM400-UDL/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/EM400-UDL/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM400-UDL/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/EM410-RDL/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM410-RDL/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/EM410-RDL/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM410-RDL/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/EM410-RDL/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM410-RDL/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/EM500-CO2/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM500-CO2/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/EM500-CO2/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM500-CO2/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/EM500-CO2/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM500-CO2/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/EM500-LGT/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM500-LGT/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/EM500-LGT/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM500-LGT/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/EM500-LGT/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM500-LGT/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/EM500-PP/HTTP/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM500-PP/HTTP/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/EM500-PP/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM500-PP/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/EM500-PP/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM500-PP/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/EM500-PP/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM500-PP/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/EM500-PT100/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM500-PT100/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/EM500-PT100/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM500-PT100/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/EM500-PT100/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM500-PT100/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/EM500-SMTC/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM500-SMTC/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/EM500-SMTC/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM500-SMTC/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/EM500-SMTC/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM500-SMTC/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/EM500-SWL/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM500-SWL/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/EM500-SWL/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM500-SWL/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/EM500-SWL/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM500-SWL/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/EM500-UDL/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM500-UDL/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/EM500-UDL/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM500-UDL/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/EM500-UDL/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/EM500-UDL/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/GS101/HTTP/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/GS101/HTTP/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Milesight/GS101/HTTP/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/GS101/HTTP/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Milesight/GS101/HTTP/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/GS101/HTTP/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/GS101/HTTP/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/GS101/HTTP/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/GS101/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/GS101/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/GS101/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/GS101/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/GS101/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/GS101/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/GS101/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/GS101/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/GS101/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/GS101/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/GS301/HTTP/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/GS301/HTTP/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Milesight/GS301/HTTP/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/GS301/HTTP/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Milesight/GS301/HTTP/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/GS301/HTTP/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/GS301/HTTP/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/GS301/HTTP/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/GS301/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/GS301/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/GS301/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/GS301/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/GS301/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/GS301/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/GS301/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/GS301/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/GS301/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/GS301/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/TS101/HTTP/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/TS101/HTTP/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Milesight/TS101/HTTP/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/TS101/HTTP/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Milesight/TS101/HTTP/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/TS101/HTTP/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/TS101/HTTP/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/TS101/HTTP/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/TS101/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/TS101/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/TS101/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/TS101/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/TS101/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/TS101/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/TS101/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/TS101/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/TS101/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/TS101/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/TS201/HTTP/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/TS201/HTTP/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Milesight/TS201/HTTP/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/TS201/HTTP/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Milesight/TS201/HTTP/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/TS201/HTTP/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/TS201/HTTP/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/TS201/HTTP/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/TS201/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/TS201/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/TS201/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/TS201/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/TS201/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/TS201/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/TS201/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/TS201/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/TS201/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/TS201/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/VS121/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS121/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/VS121/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS121/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/VS121/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS121/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/VS121/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS121/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/VS121/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS121/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/VS132/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS132/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/VS132/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS132/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/VS132/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS132/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/VS132/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS132/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/VS132/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS132/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/VS133/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS133/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/VS133/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS133/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/VS133/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS133/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/VS133/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS133/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/VS133/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS133/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/VS330/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS330/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/VS330/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS330/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/VS330/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS330/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/VS330/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS330/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/VS330/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS330/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/VS34x/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS34x/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/VS34x/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS34x/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/VS34x/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS34x/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/VS34x/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS34x/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/VS34x/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS34x/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/VS350/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS350/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/VS350/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS350/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/VS350/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS350/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/VS350/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS350/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/VS350/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS350/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/VS351/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS351/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/VS351/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS351/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/VS351/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS351/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/VS351/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS351/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/VS351/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS351/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/VS360/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS360/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/VS360/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS360/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/VS360/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS360/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/VS360/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS360/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/VS360/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/VS360/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/WS101/HTTP/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS101/HTTP/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS101/HTTP/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS101/HTTP/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS101/HTTP/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS101/HTTP/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS101/HTTP/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS101/HTTP/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS101/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS101/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS101/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS101/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS101/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS101/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/WS101/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS101/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS101/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS101/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/WS201/HTTP/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS201/HTTP/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS201/HTTP/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS201/HTTP/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS201/HTTP/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS201/HTTP/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS201/HTTP/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS201/HTTP/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS201/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS201/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS201/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS201/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS201/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS201/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/WS201/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS201/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS201/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS201/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/WS202/HTTP/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS202/HTTP/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS202/HTTP/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS202/HTTP/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS202/HTTP/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS202/HTTP/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS202/HTTP/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS202/HTTP/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS202/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS202/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS202/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS202/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS202/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS202/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/WS202/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS202/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS202/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS202/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/WS301/HTTP/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS301/HTTP/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS301/HTTP/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS301/HTTP/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS301/HTTP/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS301/HTTP/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS301/HTTP/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS301/HTTP/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS301/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS301/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS301/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS301/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS301/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS301/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/WS301/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS301/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS301/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS301/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/WS302/HTTP/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS302/HTTP/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS302/HTTP/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS302/HTTP/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS302/HTTP/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS302/HTTP/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS302/HTTP/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS302/HTTP/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS302/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS302/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS302/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS302/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS302/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS302/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/WS302/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS302/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS302/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS302/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/WS303/HTTP/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS303/HTTP/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS303/HTTP/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS303/HTTP/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS303/HTTP/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS303/HTTP/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS303/HTTP/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS303/HTTP/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS303/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS303/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS303/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS303/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS303/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS303/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/WS303/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS303/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WS303/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WS303/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/WT201/ChirpStack/downlink/payload_01.json: -------------------------------------------------------------------------------- 1 | { 2 | "reboot": 1 3 | } -------------------------------------------------------------------------------- /VENDORS/Milesight/WT201/ChirpStack/downlink/payload_02.json: -------------------------------------------------------------------------------- 1 | { 2 | "report_interval": 2 3 | } -------------------------------------------------------------------------------- /VENDORS/Milesight/WT201/ChirpStack/downlink/payload_04.json: -------------------------------------------------------------------------------- 1 | { 2 | "timezone": -4 3 | } -------------------------------------------------------------------------------- /VENDORS/Milesight/WT201/ChirpStack/downlink/payload_12.json: -------------------------------------------------------------------------------- 1 | { 2 | "fan_mode": 0 3 | } -------------------------------------------------------------------------------- /VENDORS/Milesight/WT201/ChirpStack/downlink/payload_15.json: -------------------------------------------------------------------------------- 1 | { 2 | "fan_circulate": 10 3 | } -------------------------------------------------------------------------------- /VENDORS/Milesight/WT201/ChirpStack/downlink/payload_19.json: -------------------------------------------------------------------------------- 1 | { 2 | "report_status": 1 3 | } -------------------------------------------------------------------------------- /VENDORS/Milesight/WT201/ChirpStack/downlink/payload_20.json: -------------------------------------------------------------------------------- 1 | { 2 | "system_on_off": 1 3 | } -------------------------------------------------------------------------------- /VENDORS/Milesight/WT201/ChirpStack/downlink/payload_21.json: -------------------------------------------------------------------------------- 1 | { 2 | "control_permissions": 0 3 | } -------------------------------------------------------------------------------- /VENDORS/Milesight/WT201/ChirpStack/downlink/payload_22.json: -------------------------------------------------------------------------------- 1 | { 2 | "ob_mode": 0 3 | } -------------------------------------------------------------------------------- /VENDORS/Milesight/WT201/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WT201/guide.md -------------------------------------------------------------------------------- /VENDORS/Milesight/WT201/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WT201/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/WT201/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/WT201/photo.png -------------------------------------------------------------------------------- /VENDORS/Milesight/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/info.json -------------------------------------------------------------------------------- /VENDORS/Milesight/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Milesight/logo.svg -------------------------------------------------------------------------------- /VENDORS/Netvox/R311A/ChirpStack/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R311A/ChirpStack/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R311A/LORIOT/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R311A/LORIOT/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R311A/LORIOT/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R311A/LORIOT/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R311A/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R311A/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R311A/LORIOT/uplink/payload_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R311A/LORIOT/uplink/payload_1.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R311A/LORIOT/uplink/payload_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R311A/LORIOT/uplink/payload_2.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R311A/LORIOT/uplink/payload_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R311A/LORIOT/uplink/payload_3.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R311A/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R311A/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R311A/LORIOT/uplink/result_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R311A/LORIOT/uplink/result_1.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R311A/LORIOT/uplink/result_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R311A/LORIOT/uplink/result_2.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R311A/LORIOT/uplink/result_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R311A/LORIOT/uplink/result_3.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R311A/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R311A/guide.md -------------------------------------------------------------------------------- /VENDORS/Netvox/R311A/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R311A/info.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R311A/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R311A/photo.png -------------------------------------------------------------------------------- /VENDORS/Netvox/R716S/ChirpStack/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R716S/ChirpStack/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R716S/LORIOT/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R716S/LORIOT/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R716S/LORIOT/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R716S/LORIOT/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R716S/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R716S/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R716S/LORIOT/uplink/payload_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R716S/LORIOT/uplink/payload_1.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R716S/LORIOT/uplink/payload_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R716S/LORIOT/uplink/payload_2.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R716S/LORIOT/uplink/payload_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R716S/LORIOT/uplink/payload_3.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R716S/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R716S/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R716S/LORIOT/uplink/result_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R716S/LORIOT/uplink/result_1.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R716S/LORIOT/uplink/result_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R716S/LORIOT/uplink/result_2.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R716S/LORIOT/uplink/result_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R716S/LORIOT/uplink/result_3.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R716S/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R716S/guide.md -------------------------------------------------------------------------------- /VENDORS/Netvox/R716S/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R716S/info.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R716S/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R716S/photo.png -------------------------------------------------------------------------------- /VENDORS/Netvox/R718A/ChirpStack/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718A/ChirpStack/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718A/LORIOT/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718A/LORIOT/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718A/LORIOT/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718A/LORIOT/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718A/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718A/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718A/LORIOT/uplink/payload_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718A/LORIOT/uplink/payload_1.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718A/LORIOT/uplink/payload_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718A/LORIOT/uplink/payload_2.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718A/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718A/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718A/LORIOT/uplink/result_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718A/LORIOT/uplink/result_1.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718A/LORIOT/uplink/result_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718A/LORIOT/uplink/result_2.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718A/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718A/guide.md -------------------------------------------------------------------------------- /VENDORS/Netvox/R718A/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718A/info.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718A/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718A/photo.png -------------------------------------------------------------------------------- /VENDORS/Netvox/R718AB/LORIOT/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718AB/LORIOT/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718AB/LORIOT/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718AB/LORIOT/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718AB/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718AB/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718AB/LORIOT/uplink/payload_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718AB/LORIOT/uplink/payload_1.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718AB/LORIOT/uplink/payload_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718AB/LORIOT/uplink/payload_2.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718AB/LORIOT/uplink/payload_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718AB/LORIOT/uplink/payload_3.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718AB/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718AB/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718AB/LORIOT/uplink/result_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718AB/LORIOT/uplink/result_1.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718AB/LORIOT/uplink/result_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718AB/LORIOT/uplink/result_2.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718AB/LORIOT/uplink/result_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718AB/LORIOT/uplink/result_3.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718AB/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718AB/guide.md -------------------------------------------------------------------------------- /VENDORS/Netvox/R718AB/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718AB/info.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718AB/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718AB/photo.png -------------------------------------------------------------------------------- /VENDORS/Netvox/R718DA/LORIOT/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718DA/LORIOT/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718DA/LORIOT/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718DA/LORIOT/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718DA/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718DA/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718DA/LORIOT/uplink/payload_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718DA/LORIOT/uplink/payload_1.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718DA/LORIOT/uplink/payload_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718DA/LORIOT/uplink/payload_2.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718DA/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718DA/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718DA/LORIOT/uplink/result_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718DA/LORIOT/uplink/result_1.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718DA/LORIOT/uplink/result_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718DA/LORIOT/uplink/result_2.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718DA/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718DA/guide.md -------------------------------------------------------------------------------- /VENDORS/Netvox/R718DA/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718DA/info.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718DA/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718DA/photo.png -------------------------------------------------------------------------------- /VENDORS/Netvox/R718DA2/LORIOT/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718DA2/LORIOT/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718DA2/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718DA2/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718DA2/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718DA2/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718DA2/LORIOT/uplink/result_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718DA2/LORIOT/uplink/result_1.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718DA2/LORIOT/uplink/result_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718DA2/LORIOT/uplink/result_2.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718DA2/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718DA2/guide.md -------------------------------------------------------------------------------- /VENDORS/Netvox/R718DA2/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718DA2/info.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718DA2/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718DA2/photo.png -------------------------------------------------------------------------------- /VENDORS/Netvox/R718H/ChirpStack/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718H/ChirpStack/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718H/LORIOT/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718H/LORIOT/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718H/LORIOT/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718H/LORIOT/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718H/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718H/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718H/LORIOT/uplink/payload_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718H/LORIOT/uplink/payload_1.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718H/LORIOT/uplink/payload_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718H/LORIOT/uplink/payload_2.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718H/LORIOT/uplink/payload_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718H/LORIOT/uplink/payload_3.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718H/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718H/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718H/LORIOT/uplink/result_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718H/LORIOT/uplink/result_1.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718H/LORIOT/uplink/result_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718H/LORIOT/uplink/result_2.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718H/LORIOT/uplink/result_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718H/LORIOT/uplink/result_3.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718H/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718H/guide.md -------------------------------------------------------------------------------- /VENDORS/Netvox/R718H/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718H/info.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718H/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718H/photo.png -------------------------------------------------------------------------------- /VENDORS/Netvox/R718KA/LORIOT/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718KA/LORIOT/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718KA/LORIOT/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718KA/LORIOT/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718KA/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718KA/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718KA/LORIOT/uplink/payload_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718KA/LORIOT/uplink/payload_1.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718KA/LORIOT/uplink/payload_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718KA/LORIOT/uplink/payload_2.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718KA/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718KA/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718KA/LORIOT/uplink/result_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718KA/LORIOT/uplink/result_1.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718KA/LORIOT/uplink/result_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718KA/LORIOT/uplink/result_2.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718KA/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718KA/guide.md -------------------------------------------------------------------------------- /VENDORS/Netvox/R718KA/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718KA/info.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718KA/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718KA/photo.png -------------------------------------------------------------------------------- /VENDORS/Netvox/R718N3/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718N3/guide.md -------------------------------------------------------------------------------- /VENDORS/Netvox/R718N3/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718N3/info.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718N3/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718N3/photo.png -------------------------------------------------------------------------------- /VENDORS/Netvox/R718WB/LORIOT/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718WB/LORIOT/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718WB/LORIOT/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718WB/LORIOT/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718WB/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718WB/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718WB/LORIOT/uplink/payload_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718WB/LORIOT/uplink/payload_1.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718WB/LORIOT/uplink/payload_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718WB/LORIOT/uplink/payload_2.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718WB/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718WB/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718WB/LORIOT/uplink/result_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718WB/LORIOT/uplink/result_1.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718WB/LORIOT/uplink/result_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718WB/LORIOT/uplink/result_2.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718WB/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718WB/guide.md -------------------------------------------------------------------------------- /VENDORS/Netvox/R718WB/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718WB/info.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R718WB/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R718WB/photo.png -------------------------------------------------------------------------------- /VENDORS/Netvox/R719A/ChirpStack/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R719A/ChirpStack/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R719A/LORIOT/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R719A/LORIOT/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R719A/LORIOT/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R719A/LORIOT/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R719A/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R719A/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R719A/LORIOT/uplink/payload_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R719A/LORIOT/uplink/payload_1.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R719A/LORIOT/uplink/payload_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R719A/LORIOT/uplink/payload_2.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R719A/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R719A/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R719A/LORIOT/uplink/result_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R719A/LORIOT/uplink/result_1.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R719A/LORIOT/uplink/result_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R719A/LORIOT/uplink/result_2.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R719A/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R719A/guide.md -------------------------------------------------------------------------------- /VENDORS/Netvox/R719A/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R719A/info.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R719A/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R719A/photo.png -------------------------------------------------------------------------------- /VENDORS/Netvox/R72624/LORIOT/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R72624/LORIOT/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R72624/LORIOT/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R72624/LORIOT/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R72624/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R72624/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R72624/LORIOT/uplink/payload_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R72624/LORIOT/uplink/payload_1.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R72624/LORIOT/uplink/payload_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R72624/LORIOT/uplink/payload_2.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R72624/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R72624/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R72624/LORIOT/uplink/result_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R72624/LORIOT/uplink/result_1.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R72624/LORIOT/uplink/result_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R72624/LORIOT/uplink/result_2.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R72624/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R72624/guide.md -------------------------------------------------------------------------------- /VENDORS/Netvox/R72624/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R72624/info.json -------------------------------------------------------------------------------- /VENDORS/Netvox/R72624/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/R72624/photo.png -------------------------------------------------------------------------------- /VENDORS/Netvox/RA0715/LORIOT/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/RA0715/LORIOT/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Netvox/RA0715/LORIOT/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/RA0715/LORIOT/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Netvox/RA0715/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/RA0715/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Netvox/RA0715/LORIOT/uplink/payload_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/RA0715/LORIOT/uplink/payload_1.json -------------------------------------------------------------------------------- /VENDORS/Netvox/RA0715/LORIOT/uplink/payload_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/RA0715/LORIOT/uplink/payload_2.json -------------------------------------------------------------------------------- /VENDORS/Netvox/RA0715/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/RA0715/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Netvox/RA0715/LORIOT/uplink/result_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/RA0715/LORIOT/uplink/result_1.json -------------------------------------------------------------------------------- /VENDORS/Netvox/RA0715/LORIOT/uplink/result_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/RA0715/LORIOT/uplink/result_2.json -------------------------------------------------------------------------------- /VENDORS/Netvox/RA0715/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/RA0715/guide.md -------------------------------------------------------------------------------- /VENDORS/Netvox/RA0715/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/RA0715/info.json -------------------------------------------------------------------------------- /VENDORS/Netvox/RA0715/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/RA0715/photo.png -------------------------------------------------------------------------------- /VENDORS/Netvox/RA0723/LORIOT/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/RA0723/LORIOT/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Netvox/RA0723/LORIOT/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/RA0723/LORIOT/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Netvox/RA0723/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/RA0723/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Netvox/RA0723/LORIOT/uplink/payload_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/RA0723/LORIOT/uplink/payload_1.json -------------------------------------------------------------------------------- /VENDORS/Netvox/RA0723/LORIOT/uplink/payload_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/RA0723/LORIOT/uplink/payload_2.json -------------------------------------------------------------------------------- /VENDORS/Netvox/RA0723/LORIOT/uplink/payload_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/RA0723/LORIOT/uplink/payload_3.json -------------------------------------------------------------------------------- /VENDORS/Netvox/RA0723/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/RA0723/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Netvox/RA0723/LORIOT/uplink/result_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/RA0723/LORIOT/uplink/result_1.json -------------------------------------------------------------------------------- /VENDORS/Netvox/RA0723/LORIOT/uplink/result_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/RA0723/LORIOT/uplink/result_2.json -------------------------------------------------------------------------------- /VENDORS/Netvox/RA0723/LORIOT/uplink/result_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/RA0723/LORIOT/uplink/result_3.json -------------------------------------------------------------------------------- /VENDORS/Netvox/RA0723/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/RA0723/guide.md -------------------------------------------------------------------------------- /VENDORS/Netvox/RA0723/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/RA0723/info.json -------------------------------------------------------------------------------- /VENDORS/Netvox/RA0723/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/RA0723/photo.png -------------------------------------------------------------------------------- /VENDORS/Netvox/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/info.json -------------------------------------------------------------------------------- /VENDORS/Netvox/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Netvox/logo.svg -------------------------------------------------------------------------------- /VENDORS/Nwave/G4_NCC_FM/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Nwave/G4_NCC_FM/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Nwave/G4_NCC_FM/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Nwave/G4_NCC_FM/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Nwave/G4_NCC_FM/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Nwave/G4_NCC_FM/guide.md -------------------------------------------------------------------------------- /VENDORS/Nwave/G4_NCC_FM/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Nwave/G4_NCC_FM/info.json -------------------------------------------------------------------------------- /VENDORS/Nwave/G4_NCC_FM/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Nwave/G4_NCC_FM/photo.png -------------------------------------------------------------------------------- /VENDORS/Nwave/G4_NCC_SM/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Nwave/G4_NCC_SM/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Nwave/G4_NCC_SM/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Nwave/G4_NCC_SM/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Nwave/G4_NCC_SM/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Nwave/G4_NCC_SM/guide.md -------------------------------------------------------------------------------- /VENDORS/Nwave/G4_NCC_SM/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Nwave/G4_NCC_SM/info.json -------------------------------------------------------------------------------- /VENDORS/Nwave/G4_NCC_SM/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Nwave/G4_NCC_SM/photo.png -------------------------------------------------------------------------------- /VENDORS/Nwave/G4_NPS_FM/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Nwave/G4_NPS_FM/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Nwave/G4_NPS_FM/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Nwave/G4_NPS_FM/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Nwave/G4_NPS_FM/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Nwave/G4_NPS_FM/guide.md -------------------------------------------------------------------------------- /VENDORS/Nwave/G4_NPS_FM/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Nwave/G4_NPS_FM/info.json -------------------------------------------------------------------------------- /VENDORS/Nwave/G4_NPS_FM/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Nwave/G4_NPS_FM/photo.png -------------------------------------------------------------------------------- /VENDORS/Nwave/G4_NPS_SM/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Nwave/G4_NPS_SM/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Nwave/G4_NPS_SM/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Nwave/G4_NPS_SM/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Nwave/G4_NPS_SM/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Nwave/G4_NPS_SM/guide.md -------------------------------------------------------------------------------- /VENDORS/Nwave/G4_NPS_SM/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Nwave/G4_NPS_SM/info.json -------------------------------------------------------------------------------- /VENDORS/Nwave/G4_NPS_SM/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Nwave/G4_NPS_SM/photo.png -------------------------------------------------------------------------------- /VENDORS/Nwave/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Nwave/info.json -------------------------------------------------------------------------------- /VENDORS/Nwave/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Nwave/logo.svg -------------------------------------------------------------------------------- /VENDORS/SensiEDGE/SensiLora2_0/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/SensiEDGE/SensiLora2_0/guide.md -------------------------------------------------------------------------------- /VENDORS/SensiEDGE/SensiLora2_0/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/SensiEDGE/SensiLora2_0/info.json -------------------------------------------------------------------------------- /VENDORS/SensiEDGE/SensiLora2_0/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/SensiEDGE/SensiLora2_0/photo.png -------------------------------------------------------------------------------- /VENDORS/SensiEDGE/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/SensiEDGE/info.json -------------------------------------------------------------------------------- /VENDORS/SensiEDGE/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/SensiEDGE/logo.svg -------------------------------------------------------------------------------- /VENDORS/Tektelic/Aura/LORIOT/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Aura/LORIOT/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Aura/LORIOT/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Aura/LORIOT/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Aura/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Aura/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Aura/LORIOT/uplink/payload_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Aura/LORIOT/uplink/payload_1.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Aura/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Aura/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Aura/LORIOT/uplink/result_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Aura/LORIOT/uplink/result_1.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Aura/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Aura/info.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Aura/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Aura/photo.png -------------------------------------------------------------------------------- /VENDORS/Tektelic/Clover/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Clover/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Clover/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Clover/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Clover/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Clover/info.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Clover/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Clover/photo.png -------------------------------------------------------------------------------- /VENDORS/Tektelic/Comfort/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Comfort/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Comfort/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Comfort/info.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Comfort/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Comfort/photo.png -------------------------------------------------------------------------------- /VENDORS/Tektelic/Flux/LORIOT/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Flux/LORIOT/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Flux/LORIOT/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Flux/LORIOT/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Flux/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Flux/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Flux/LORIOT/uplink/payload_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Flux/LORIOT/uplink/payload_1.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Flux/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Flux/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Flux/LORIOT/uplink/result_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Flux/LORIOT/uplink/result_1.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Flux/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Flux/info.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Flux/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Flux/photo.png -------------------------------------------------------------------------------- /VENDORS/Tektelic/Kiwi/LORIOT/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Kiwi/LORIOT/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Kiwi/LORIOT/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Kiwi/LORIOT/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Kiwi/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Kiwi/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Kiwi/LORIOT/uplink/payload_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Kiwi/LORIOT/uplink/payload_1.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Kiwi/LORIOT/uplink/payload_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Kiwi/LORIOT/uplink/payload_2.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Kiwi/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Kiwi/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Kiwi/LORIOT/uplink/result_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Kiwi/LORIOT/uplink/result_1.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Kiwi/LORIOT/uplink/result_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Kiwi/LORIOT/uplink/result_2.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Kiwi/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Kiwi/info.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Kiwi/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Kiwi/photo.png -------------------------------------------------------------------------------- /VENDORS/Tektelic/Vivid/LORIOT/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Vivid/LORIOT/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Vivid/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Vivid/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Vivid/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Vivid/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Vivid/LORIOT/uplink/result_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Vivid/LORIOT/uplink/result_1.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Vivid/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Vivid/info.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/Vivid/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/Vivid/photo.png -------------------------------------------------------------------------------- /VENDORS/Tektelic/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/info.json -------------------------------------------------------------------------------- /VENDORS/Tektelic/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Tektelic/logo.svg -------------------------------------------------------------------------------- /VENDORS/Yobiiq/EM2101/ChirpStack/uplink/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "integrationName": "Yobiiq EM2101 ChirpStack" 3 | } -------------------------------------------------------------------------------- /VENDORS/Yobiiq/EM2101/LORIOT/downlink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Yobiiq/EM2101/LORIOT/downlink/payload.json -------------------------------------------------------------------------------- /VENDORS/Yobiiq/EM2101/LORIOT/downlink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Yobiiq/EM2101/LORIOT/downlink/result.json -------------------------------------------------------------------------------- /VENDORS/Yobiiq/EM2101/LORIOT/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Yobiiq/EM2101/LORIOT/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Yobiiq/EM2101/LORIOT/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Yobiiq/EM2101/LORIOT/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Yobiiq/EM2101/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Yobiiq/EM2101/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Yobiiq/EM2101/LORIOT/uplink/payload_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Yobiiq/EM2101/LORIOT/uplink/payload_5.json -------------------------------------------------------------------------------- /VENDORS/Yobiiq/EM2101/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Yobiiq/EM2101/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Yobiiq/EM2101/LORIOT/uplink/result_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Yobiiq/EM2101/LORIOT/uplink/result_01.json -------------------------------------------------------------------------------- /VENDORS/Yobiiq/EM2101/LORIOT/uplink/result_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Yobiiq/EM2101/LORIOT/uplink/result_02.json -------------------------------------------------------------------------------- /VENDORS/Yobiiq/EM2101/LORIOT/uplink/result_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Yobiiq/EM2101/LORIOT/uplink/result_03.json -------------------------------------------------------------------------------- /VENDORS/Yobiiq/EM2101/LORIOT/uplink/result_04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Yobiiq/EM2101/LORIOT/uplink/result_04.json -------------------------------------------------------------------------------- /VENDORS/Yobiiq/EM2101/LORIOT/uplink/result_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Yobiiq/EM2101/LORIOT/uplink/result_5.json -------------------------------------------------------------------------------- /VENDORS/Yobiiq/EM2101/guide.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VENDORS/Yobiiq/EM2101/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Yobiiq/EM2101/info.json -------------------------------------------------------------------------------- /VENDORS/Yobiiq/EM2101/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Yobiiq/EM2101/photo.png -------------------------------------------------------------------------------- /VENDORS/Yobiiq/EM4301/ChirpStack/uplink/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "integrationName": "Yobiiq EM4301 ChirpStack" 3 | } -------------------------------------------------------------------------------- /VENDORS/Yobiiq/EM4301/LORIOT/downlink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Yobiiq/EM4301/LORIOT/downlink/payload.json -------------------------------------------------------------------------------- /VENDORS/Yobiiq/EM4301/LORIOT/downlink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Yobiiq/EM4301/LORIOT/downlink/result.json -------------------------------------------------------------------------------- /VENDORS/Yobiiq/EM4301/LORIOT/uplink/converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Yobiiq/EM4301/LORIOT/uplink/converter.json -------------------------------------------------------------------------------- /VENDORS/Yobiiq/EM4301/LORIOT/uplink/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Yobiiq/EM4301/LORIOT/uplink/metadata.json -------------------------------------------------------------------------------- /VENDORS/Yobiiq/EM4301/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Yobiiq/EM4301/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Yobiiq/EM4301/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Yobiiq/EM4301/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Yobiiq/EM4301/guide.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VENDORS/Yobiiq/EM4301/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Yobiiq/EM4301/info.json -------------------------------------------------------------------------------- /VENDORS/Yobiiq/EM4301/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Yobiiq/EM4301/photo.png -------------------------------------------------------------------------------- /VENDORS/Yobiiq/RM200/LORIOT/uplink/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Yobiiq/RM200/LORIOT/uplink/payload.json -------------------------------------------------------------------------------- /VENDORS/Yobiiq/RM200/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Yobiiq/RM200/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Yobiiq/RM200/guide.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VENDORS/Yobiiq/RM200/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Yobiiq/RM200/info.json -------------------------------------------------------------------------------- /VENDORS/Yobiiq/RM200/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Yobiiq/RM200/photo.png -------------------------------------------------------------------------------- /VENDORS/Yobiiq/SD1001/LORIOT/uplink/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Yobiiq/SD1001/LORIOT/uplink/result.json -------------------------------------------------------------------------------- /VENDORS/Yobiiq/SD1001/guide.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VENDORS/Yobiiq/SD1001/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Yobiiq/SD1001/info.json -------------------------------------------------------------------------------- /VENDORS/Yobiiq/SD1001/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Yobiiq/SD1001/photo.png -------------------------------------------------------------------------------- /VENDORS/Yobiiq/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Yobiiq/info.json -------------------------------------------------------------------------------- /VENDORS/Yobiiq/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/VENDORS/Yobiiq/logo.svg -------------------------------------------------------------------------------- /data_converters_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/data-converters/HEAD/data_converters_validator.py --------------------------------------------------------------------------------