Document toolboxDocument toolbox

SA380TX push digital data to server

How to push digital channel data to server using web configuration tool or the raw XML confuguration.

 Using web config tool

When you have direct access to the logger:

  1. Enter the logger’s IP address into your browser eg. http://10.0.1.1/config

  2. Navigate to Real Channels

Real Channels configuration tab

3. Click on the tick-box in Push to Server column.

4. Click Set Config on Logger to send all the configuration changes back to the logger.

Using XML configuration

When logger is connected to Centrix and able to retrieve the XML configuration:

  1. Visit the logger in centrix.org

  2. Go to the READ/WRITE CONFIG tab

  3. Press Read Device Config to retrieve the latest configuration from the logger

  4. Click on Open As XML

  5. Scroll down until you find the <ConfigDip> part

  6. Add the channels you wish to be pushed to server by their ID:

    <dip id="384" push="1" />

7. Click Write Device Config to send the changes back to the logger.

Channel numbering:

id=0 to 26 belong to the master logger

id=384 to 767 belong to the first slave unit

id=768 to 1151 belong to the second

id=1152 to 1535 to the third

id=1536 to 1921 to the fourth

id=1922 to 2305 to the fifth

id=2306 to 2689 to the sixth

id=2690 to 3074 to the seventh slave unit

Let’s say you want to push the second channel on the first slave unit:

Channel ID = 384+1

In the XML configuration:

<digIn> <uid>385</uid> <name>TXL1-Relay 02</name> <invert>false</invert> <debounce>40</debounce> </digIn>

uid=384, the same id is needed in the DipCfg:

<ConfigDip> <dip id="0" push="1" off="128"/> <dip id="1" push="1" off="129"/> <dip id="2" push="1" off="130"/> <dip id="3" push="1" off="131"/> <dip id="4" push="1" off="132"/> <dip id="5" push="1" off="133"/> <dip id="6" push="1" off="134"/> <dip id="7" push="1" off="135"/> <dip id="8" push="1" off="136"/> <dip id="9" push="1" off="137"/> <dip id="385" push="1" /> </ConfigDip>