Home AMX User Forum NetLinx Studio

Setup Netink to Accress?

Setup Netink to Accress?


Hi All , I have olds system use AXC-Cardframe (accress) . Now i want to chang TP [NXT-CV10]
(netink) use NI-700 to link AXC
NI-700
TP CV10
I can't setup progarm ,Can help me to setup

Comments

  • Setup Netink to Accress?


    Hi All , I have olds system use AXC-Cardframe (accress) . Now i want to chang TP [NXT-CV10]
    (netink) use NI-700 to link AXC
    NI-700
    TP CV10
    I can't setup progarm ,Can help me to setup

    First, you have to remove the AXC-EM from the AXcess cardframe. The frame from now is managed by the NI700.

    The device addresses of the cardframe are still the same like before. If they previously have startet with slot 1 as device 1:
    // this is the NetLinx style addressing 
    DEFINE_DEVICE
    // cardframe
    Slot1 = 1:1:0
    Slot2 = 2:1:0
    Slot16 = 16:1:0
    // NI700 ports
    Ni7Com1 = 5001:1:0
    Ni7Com2 = 5001:2:0
    Ni7IR = 5001:3:0
    Ni7io = 5001:4:0
    Panel = 10001:1:0
    
    If you want to use the code previously used in the AXcess master, it may be useful to set the panel's device address to 128 to match your old code.
    You may also use the "old style" device declaration like before.
    DEFINE_DEVICE
    // cardframe
    Slot1 = 1
    Slot2 = 2
    Slot16 = 16
    // NI700 ports
    Ni7Com1 = 5001:1:0
    Ni7Com2 = 5001:2:0
    Ni7IR = 5001:3:0
    Ni7io = 5001:4:0
    Panel = 128
    
    This works fine with your cards and the panel (if it is set to the corresponding address and only uses port 1 in the design), and may prevent you from compiling problems regarding the NetLinx device addressing.But the NI ports must be addressed with Number:Port:System if you need them to control.
Sign In or Register to comment.