开云体育

Re: Script output delayed #scripting


 

The logic runs each time the sensor changes state.

You can modify the propertyChange function to check the new state.

class SensorListener(java.beans.PropertyChangeListener):
??? def propertyChange(self, event):
??????? if event.getNewState() == ACTIVE:
??????????? SignalLogic().start()

Use INACTIVE for the sensor becoming inactive.

You can simplify the signal mast aspect commands by combining the getSignalMast and setAspect commands.

masts.getSignalMast('Signal Mast, Table 10, Track 5, West Bound').setAspect('Limited Clear')

Dave Sand


----- Original message -----
From: "Canadian Locomotive Logistics via groups.io" <CanadianLocomotiveLogistics=[email protected]>
Subject: Re: [jmriusers] Script output delayed #scripting
Date: Thursday, March 27, 2025 8:54 PM

I'm finding the sensor trips the script, but...
?
The log? is showing multiple events....
?
I do have the 'Delay to Inactive' on the sensor set to 60000
?
With this setting, I thought the code would run through once, and then wait for the next active.
?

21:42:36,534 rit.jython.exec.AbstractAutomatonDemo INFO ?- Signal Bridge, Table 12, Track 5, West Bound set to Stop Signal [__builtin__$SignalLogic$6]
21:42:46,368 rit.jython.exec.AbstractAutomatonDemo INFO ?- Signal Bridge, Table 11, Track 5, West Bound set to Stop Signal [__builtin__$SignalLogic$6]
21:42:46,635 rit.jython.exec.AbstractAutomatonDemo INFO ?- Signal Bridge, Table 11, Track 5, West Bound set to Stop Signal [__builtin__$SignalLogic$6]
21:42:46,904 rit.jython.exec.AbstractAutomatonDemo INFO ?- Signal Bridge, Table 11, Track 5, West Bound set to Stop Signal [__builtin__$SignalLogic$6]
21:42:47,179 rit.jython.exec.AbstractAutomatonDemo INFO ?- Signal Bridge, Table 11, Track 5, West Bound set to Stop Signal [__builtin__$SignalLogic$6]
21:42:47,447 rit.jython.exec.AbstractAutomatonDemo INFO ?- Signal Bridge, Table 11, Track 5, West Bound set to Stop Signal [__builtin__$SignalLogic$6]
21:42:51,535 rit.jython.exec.AbstractAutomatonDemo INFO ?- Signal Bridge, Table 11, Track 5, West Bound set to Stop Signal [__builtin__$SignalLogic$6]
21:43:06,533 rit.jython.exec.AbstractAutomatonDemo INFO ?- Setting Signal Mast, Table 10, Track 5, West Bound set to Stop Signal [__builtin__$SignalLogic$6]
21:43:21,534 rit.jython.exec.AbstractAutomatonDemo INFO ?- Setting Signal Mast, Table 12, Track 5, West Bound set to Stop Signal [__builtin__$SignalLogic$6]
21:43:36,535 rit.jython.exec.AbstractAutomatonDemo INFO ?- Signal Bridge, Table 12, Track 5, West Bound set to Stop Signal [__builtin__$SignalLogic$6]
21:43:51,536 rit.jython.exec.AbstractAutomatonDemo INFO ?- Signal Bridge, Table 11, Track 5, West Bound set to Stop Signal [__builtin__$SignalLogic$6]?

Join [email protected] to automatically receive all group messages.