The European Rail Traffic Management System ( ERTMS ) aims to improve interobability between the multiple systems in use by European railways, making it easier for trains to cross national borders without needing to change systems.
European Train Control System ( ETCS ) is the signalling component of ERTMS.
The Driver Machine Interface ( DMI, the in-cab screen which displays speed and signalling information to the driver ) is one of the most recognisable elements of ETCS.
The DMI can include information about speed, track conditions, and system alerts.
It is possible to simulate DMI screens and control their content programmatically, currently there is no train control logic within the DMI Panel.
The DMI follows the touch screen layout ( as apposed to the soft key layout ), as it is able to receive button and mouse clicks directly.
The icons in the resources/icons/etcs folder contain the graphics for both ETCS 3.6 and 4.0
The JMRI Fast Clock is used as the source for the time display.
DMI Displays can be launched via JMRI Jython Scripting.
import jmri
from jmri.jmrit.etcs.dmi.swing import DmiFrame
f = DmiFrame()
f.setVisible(True)
dmiPanel = f.getDmiPanel()
dmiPanel.setActualSpeed(100)
This screen is now viewable on other devices via the JMRI Web Server.
For the full list of available methods, see the DmiPanel JavaDoc.
The code for the DMI Demonstration also provides examples of how to manipulate the panel.
On the right hand side of the DMI, locate the Tool Menu Button ( a spanner icon if graphics are loaded ).
Right click on the Tool menu and one of the options will be DMI Demo, which starts the demonstration.
Thanks and congratulations to all who contributed! Contact us via the JMRI users Groups.io group.
Copyright © 1997 - 2024 JMRI Community. JMRI®, DecoderPro®, PanelPro™, DispatcherPro™, OperationsPro™, SignalPro™, SoundPro™, TrainPro™, Logix™, LogixNG™ and associated logos are our trademarks. Additional information on copyright, trademarks and licenses is linked here.
View the