Versions Compared

Key

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

...

  1. Visit the logger in centrix.org

  2. Go to the READ/WRITE CONFIG tab

    Image RemovedImage Added
  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:

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

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

Info

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:

Code Block
<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:

Code Block
<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>

...