Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagexml
titleCustom DPT
<data_type name="Custom.001" descr="CustomeDPT" length_type="1BYTE" set_flag="T">
 <sub_type id="Scene" desc="Scene Number" start_index="0" length="6" length_type="1BYTE" input_type="EIS14" su="U" output_type="UINT8" unit="" pre_offset="0" post_offset="0" scale="1" min_max="" />
 <sub_type id="SA" desc="Scene Activation" start_index="6" length="1" length_type="1BIT" input_type="EIS1" su="" output_type="BOOL" unit="" pre_offset="0" post_offset="0" scale="1" min_max="" />
 <sub_type id="S" desc="BStorage function" start_index="7" length="1" length_type="1BIT" input_type="EIS1" su="" output_type="BOOL" unit="" pre_offset="0" post_offset="0" scale="1" min_max="" />
 </data_type>


FieldDescription

data_type name:

The name of the custom DPT,which will be used later.

data_type descr

Data type description.

data_type length_type

Type length of DPT, 1BIT, 2BIT, 4BIT, 1BYTE, 2BYTE, etc....

data_type set_flag

Set the DPT flag .


Filed

Description

sub_type id

The ID of the Sub_Type.

sub_type desc

Sub_Type description.

sub_type start_index

The start index to read from. !Attention Reading is always from Right To Left.

sub_type length

The length of the Sub_Type.

sub_type length_type

The length type of the Sub_Type.

sub_type input_type

The input type EIS1, EIS2, EIS5, etc....

sub_type su

Signed / Unsigned

sub_type output_type

The output type.

sub_type unit

The Sub_Type unit type °C, K/h, m/s, %, etc...

sub_type pre_offset

Giving a Preoffset for the Sub_Type value.

sub_type post_offset

Giving a Postoffset for the Sub_Type value.

sub_type scale

Sub_Type Scale.

sub_type min_max

define the min and max value e.g. "0:10" min is 0 and max is 10.

...