Files
JIMRI/jython/DispatcherSystem/actions/delay.py
T
2026-06-17 14:00:51 +02:00

13 lines
270 B
Python

# Actions in this directory or in the user directory can be called before or during a dispatch
import java
import jmri
class Delay(jmri.jmrit.automat.AbstractAutomaton):
def my_delay(self):
self.waitMsec(10000)
delay = Delay()
delay.my_delay()