Skip to content

[Profile Request] Dragino SE01-LB #23

Description

@tctanner-bit

Device Vendor

Dragino

Device Model

SE01-LB

Product Manual/Datasheet Link

https://www.dragino.com/products/agriculture-weather-station/item/309-se01-nb.html

LoRaWAN Class

Class A

LoRaWAN Protocol Version

LORAWAN_1_0_3

Uplink Data Examples

fPort: 2
Base64: DfgMzAAACTQAABA=
Hex: 0D F8 0C CC 00 00 25 34 00 00 10

Decode Function (Optional)

function decodeUplink(input) {
  var bytes = input.bytes;
  var data = {};

  data.BatV = (bytes[0] << 8 | bytes[1]) / 1000;
  data.SoilMoisture = ((bytes[2] << 8) | bytes[3]) / 10;
  data.SoilTemperature = ((bytes[4] << 24 >> 16) | bytes[5]) / 10;
  data.EC = ((bytes[6] << 8) | bytes[7]);

  return { data: data };
}

BACnet Object Mapping Requirements

  • Parameter Name → BACnet Object Type (unit)
  • SoilMoisture → Analog Input (AI) – Units: %
    SoilTemperature → Analog Input (AI) – Units: °C
    EC → Analog Input (AI) – Units: µS/cm
    BatV → Analog Input (AI) – Units: Volts

Priority

⚡ Medium - Planned for near-term use

Pre-submission Checklist

  • I have provided complete device model information
  • I have provided real uplink data examples
  • I have explained the meaning of data fields
  • I have checked for duplicate profile requests

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions