use of jmri.jmrix.lenz.XNetTrafficController in project JMRI by JMRI.
the class EliteAdapter method configure.
/**
* set up all of the other objects to operate with the Hornby Elite
* connected to this port
*/
@Override
public void configure() {
// connect to a packetizing traffic controller
XNetTrafficController packets = new XNetPacketizer(new HornbyEliteCommandStation());
packets.connectPort(this);
// start operation
// packets.startThreads();
this.getSystemConnectionMemo().setXNetTrafficController(packets);
new EliteXNetInitializationManager(this.getSystemConnectionMemo());
}
use of jmri.jmrix.lenz.XNetTrafficController in project JMRI by JMRI.
the class LI100Adapter method configure.
/**
* set up all of the other objects to operate with a LI100 connected to this
* port
*/
@Override
public void configure() {
// connect to a packetizing traffic controller
XNetTrafficController packets = new LI100XNetPacketizer(new LenzCommandStation());
packets.connectPort(this);
// start operation
// packets.startThreads();
this.getSystemConnectionMemo().setXNetTrafficController(packets);
new LI100XNetInitializationManager(this.getSystemConnectionMemo());
}
use of jmri.jmrix.lenz.XNetTrafficController in project JMRI by JMRI.
the class LI100Adapter method configure.
/**
* set up all of the other objects to operate with a LI100 connected to this
* port
*/
@Override
public void configure() {
// connect to a packetizing traffic controller
XNetTrafficController packets = new XNetPacketizer(new LenzCommandStation());
packets.connectPort(this);
// start operation
// packets.startThreads();
this.getSystemConnectionMemo().setXNetTrafficController(packets);
new XNetInitializationManager(this.getSystemConnectionMemo());
}
use of jmri.jmrix.lenz.XNetTrafficController in project JMRI by JMRI.
the class ZTC640Adapter method configure.
/**
* set up all of the other objects to operate with a ZTC640 connected to
* this port
*/
@Override
public void configure() {
// connect to a packetizing traffic controller
XNetTrafficController packets = new ZTC640XNetPacketizer(new LenzCommandStation());
packets.connectPort(this);
// start operation
// packets.startThreads();
this.getSystemConnectionMemo().setXNetTrafficController(packets);
new XNetInitializationManager(this.getSystemConnectionMemo());
}
use of jmri.jmrix.lenz.XNetTrafficController in project JMRI by JMRI.
the class XnTcpAdapter method configure.
/**
* set up all of the other objects to operate with a XnTcp interface
*/
@Override
public void configure() {
// connect to a packetizing traffic controller
XNetTrafficController packets = new XnTcpXNetPacketizer(new LenzCommandStation());
packets.connectPort(this);
this.getSystemConnectionMemo().setXNetTrafficController(packets);
new XNetInitializationManager(this.getSystemConnectionMemo());
}
Aggregations