开云体育


Automatic Dispatching

 

I've tried several different ways to get trains to run automatically, but I keep running into ( maybe I should say "creating my own") roadblocks.? At 83, I'm not sure how many more wrong ways to do it I can afford to try.
?
I've set signal heads all around the layout.? I try to set Blocks, Sections and a Transit to run a train and I get it set to go through several Sections, but then I get to a turnout and it will allow me to set the diverging route out, but the continuing route isn't available.? I can't find what's different between the Block on he diverging leg and the one on the continuing leg of the turnout.
?
So, I read some of the JMRI documentation and decided to try using Signal Masts and letting JMRI set up Sections and Transits on the fly.? I took a portion of the Panel and deleted the signal heads around a turnout to use the Set Signal Masts menu.? It sets the Masts for both routes entering the frog end of the turnout, but there's no option to set a Mast with signals for the points end of the same turnout.
?
Before I waste any more time on rabbit holes, can someone steer me to the easiest way to set up my goals?? Or point me at the page in the JMRI documents where I can read the proper steps to take and the order to build it?
I'd like to:
1.? Be able to send a train autonomously from the modeled layout into a specific staging track.
2.? Be able to have trains scheduled to come out of staging into the modeled area at preprogrammed clock times or upon specified events.
3.? Be able to manually trigger a train in staging? by selecting either the train or the track it's on and select where it needs to go.
?
?
This forum has been so great thanks to the helpful folks here who have been so willing to share their time and experience.


Re: Internal Sensors

 

It worked fine.? Thanks for the help.


Re: java

 

Ok thanks


On Mon, Mar 24, 2025, 1:08?PM John Griffin via <johng.sst=[email protected]> wrote:
Louis,
That's Oracle for ya!

Read this?short post:




On Mon, Mar 24, 2025 at 7:55?AM Louis Grundman via <louis.grundman=[email protected]> wrote:

Do you have to have a java subscription now. It sak me to subscribe.


On Sun, Mar 16, 2025, 1:54?PM Phil G via <phil=[email protected]> wrote:
Which version of JMRI are you trying to run??

It’s likely you’ll need at least JAVA 11

See JMRI.org/java for tons of helpful advice ?

Phil G

On 16 Mar 2025, at 17:31, Louis Grundman via <louis.grundman=[email protected]> wrote:

?
I have java version 8 it comes up with message?a java Exception has occurred what do i need to do

On Tue, Feb 25, 2025 at 8:03?PM Louis Grundman via <louis.grundman=[email protected]> wrote:
Hello I have a message that says java encryption?what does that mean jmri will not open? What do I have to do ? louis



--
John Griffin

Model Railroading Topics


Locked File /ProblemsBeingWorkedOn/dsand/Demo.py uploaded #file-notice

Group Notification
 

The following items have been added to the Files area of the [email protected] group.

By: Dave Sand <ds@...>

Description:
An example of using a PropertyChange listener to invoke an AbstractAutomaton class that uses waitMsec to avoid stopping the main JMRI thread.


Re: Script output delayed #scripting

 


This provides an example of the structure that you need to use when implementing your signal logic with the timed delays.

Dave Sand



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

Thanks, I will try that....
?
Currently the code it as follows.
?
from java.util import Date
from java.text import SimpleDateFormat
from java.lang import Thread
import time
import jmri
import java
import java.beans
formatter = SimpleDateFormat("yyyy-MM-dd HH:mm:ss")
current_date_time = formatter.format(Date())
print("Current Date and Time: " + current_date_time)
print("Confirmation on the script starting. Track Detection.")
print("==================================================== ")
print(" ")
print("First Step, testing ou the ability to pause the program.")
thread.sleep(3000)
print("Did it work?")
print(" ")
print("Defining the listener to play a sound when a sensor goes active.")
class SoundListener(java.beans.PropertyChangeListener):
??
? def propertyChange(self, event):
? ? if ((event.newValue == ACTIVE) and (event.oldValue == INACTIVE)):
? ? ? ? self.snd.play()
? ? ? ? prin(" ? ?if statement is true.")
# ? ? ? ?signal_routine("Limited Clear")
? ? else:
? ? ? ? print(" ? ?no thruth to this at all!")
? ? ? ? signal_routine("Limitied Clear")
m = SoundListener()
m.snd = jmri.jmrit.Sound("resources/sounds/Crossing.wav")
print(" ? ?Finished defining the lisitener to play a sound.")
sensors.provideSensor("N4S55").addPropertyChangeListener(m)
?
def signal_routine (aspect):
? ? ##################################################################################
? ? print("Part 1")
? ? mast_1 = masts.getSignalMast('Signal Mast, Table 10, Track 5, West Bound')
? ? mast_1.setAspect('Limited Clear')
? ? print(" ? ? Signal Mast, Table 10, Track 5, West Bound is set to 'Limited Clear'.")
? ? current_date_time = formatter.format(Date())
? ? print(" ? ? Current Date and Time: " + current_date_time)
? ? ##################################################################################
? ? print("Part 2")
? ? mast_2 = masts.getSignalMast('Signal Mast, Table 12, Track 5, West Bound')
? ? mast_2.setAspect('Limited Clear')
? ? print(" ? ? Signal Mast, Table 12, Track 5, West Bound is set to 'Limited Clear'.")
? ? current_date_time = formatter.format(Date())
? ? print(" ? ? Before calling a wait statement.")
? ? self.waitMsec(3000)
? ? print(" ? ? After waiting... Current Date and Time: " + current_date_time)
? ? ##################################################################################
? ? print("Part 3")
? ? mast_3 = masts.getSignalMast('Signal Bridge, Table 12, Track 5, West Bound')
? ? mast_3.setAspect('Limited Clear')
? ? print (" ? ?Signal Bridge, Table 12, Track 5, West Bound is set to 'Limited Clear'.")
? ? current_date_time = formatter.format(Date())
? ? print(" ? ? After waiting... Current Date and Time: " + current_date_time)

? ? ##################################################################################

? ? print("Part 4")
? ? mast_4 = masts.getSignalMast('Signal Bridge, Table 11, Track 5, West Bound')
? ? mast_4.setAspect('Limited Clear')
? ? print (" ? ?Signal Bridge, Table 11, Track 5, West Bound is set to 'Limited Clear'.")
? ? current_date_time = formatter.format(Date())
? ? print(" ? ? After waiting... Current Date and Time: " + current_date_time)

? ? ?##################################################################################

? ? ##################################################################################
? ? print(" ")
? ? print("Reseting The signals.")
? ? print("=====================")
? ? print(" ")
? ? print("Part 1 - Restting")
? ? mast_1 = masts.getSignalMast('Signal Mast, Table 10, Track 5, West Bound')
? ? mast_1.setAspect('Stop Signal')
? ? print(" ? ? Signal Mast, Table 10, Track 5, West Bound is set to 'Stop Signal'.")
? ? current_date_time = formatter.format(Date())
? ? print(" ? ? Current Date and Time: " + current_date_time)

? ? ##################################################################################
? ? print("Part 2 - Resetting")
? ? mast_2 = masts.getSignalMast('Signal Mast, Table 12, Track 5, West Bound')
? ? mast_2.setAspect('Stop Signal')
? ? print(" ? ? Signal Mast, Table 12, Track 5, West Bound is set to 'Stop Signal'.")
? ? current_date_time = formatter.format(Date())
? ? print(" ? ? After waiting... Current Date and Time: " + current_date_time)

? ? ##################################################################################
? ? print("Part 3 - Resetting")
? ? mast_3 = masts.getSignalMast('Signal Bridge, Table 12, Track 5, West Bound')
? ? mast_3.setAspect('Stop Signal')
? ? print (" ? ?Signal Bridge, Table 12, Track 5, West Bound is set to 'Stop Signal'.")
? ? current_date_time = formatter.format(Date())
? ? print(" ? ? After waiting... Current Date and Time: " + current_date_time)

? ? ##################################################################################

? ? print("Part 4 - Resetting")
? ? mast_4 = masts.getSignalMast('Signal Bridge, Table 11, Track 5, West Bound')
? ? mast_4.setAspect('Stop Signal')
? ? print (" ? ?Signal Bridge, Table 11, Track 5, West Bound is set to 'Stop Signal'.")
? ? current_date_time = formatter.format(Date())
? ? print(" ? ? After waiting... Current Date and Time: " + current_date_time)

? ? ##################################################################################
print("End of the script.")
?
?
?


Re: Script help please #scripting

 

Richard,

One way to share data between Jython classes is to use sensors for states and memory variables for values.

If you really want to share the data within the Jython context, you have to use the "global" option. ?When a variable is modified within a class, the local variable will be modified. ?This will not be visible to other classes. ?If the first statement in the function is "global varname", the subsequent changes to the variable will be visible to other classes.

Here is an example:

# declaring and initializing a global variable
global_var = "I am a global variable."

def func():
??? # accessing and modifying the global variable within the function
??? global global_var
??? global_var = "I have been modified."

# calling the function to modify the global variable
func()

# printing the modified value of the global variable
print(global_var)??? # Output: "I have been modified."


Dave Sand



----- Original message -----
From: "richard.taplin via groups.io" <richard.taplin=[email protected]>
Subject: Re: [jmriusers] Script help please #scripting
Date: Monday, March 24, 2025 2:15 PM

I’m slowly learning the program

I’ve got the part to find the mode working, but have found another problem

I’m using the "TurnoutStatePersistence" script and added a new class for finding the LocoNet Simulator? mode

The script I’m using is set up as several classes.

I can set a variable with the loconet result in its class , but the value won’t show up in the other classes

I have tried using a variable set at the start of the script

This will show up in the different classes, but i can’t change it in one class and it stay changed in the next class

nothing I’ve tried semes to work

Help please



Re: Script help please #scripting

 

I’m slowly learning the program

I’ve got the part to find the mode working, but have found another problem

I’m using the "TurnoutStatePersistence" script and added a new class for finding the LocoNet Simulator? mode

The script I’m using is set up as several classes.

I can set a variable with the loconet result in its class , but the value won’t show up in the other classes

I have tried using a variable set at the start of the script

This will show up in the different classes, but i can’t change it in one class and it stay changed in the next class

nothing I’ve tried semes to work

Help please


Re: java

 

Louis,
That's Oracle for ya!

Read this?short post:




On Mon, Mar 24, 2025 at 7:55?AM Louis Grundman via <louis.grundman=[email protected]> wrote:

Do you have to have a java subscription now. It sak me to subscribe.


On Sun, Mar 16, 2025, 1:54?PM Phil G via <phil=[email protected]> wrote:
Which version of JMRI are you trying to run??

It’s likely you’ll need at least JAVA 11

See JMRI.org/java for tons of helpful advice ?

Phil G

On 16 Mar 2025, at 17:31, Louis Grundman via <louis.grundman=[email protected]> wrote:

?
I have java version 8 it comes up with message?a java Exception has occurred what do i need to do

On Tue, Feb 25, 2025 at 8:03?PM Louis Grundman via <louis.grundman=[email protected]> wrote:
Hello I have a message that says java encryption?what does that mean jmri will not open? What do I have to do ? louis



--
John Griffin

Model Railroading Topics


Re: java

 

开云体育

Take another look at the JMRI JAVA page

Short answer “no I don’t. And no you don’t have to”

Phil G

On 24 Mar 2025, at 13:55, Louis Grundman via groups.io <louis.grundman@...> wrote:

?

Do you have to have a java subscription now. It sak me to subscribe.


On Sun, Mar 16, 2025, 1:54?PM Phil G via <phil=[email protected]> wrote:
Which version of JMRI are you trying to run??

It’s likely you’ll need at least JAVA 11

See JMRI.org/java for tons of helpful advice ?

Phil G

On 16 Mar 2025, at 17:31, Louis Grundman via <louis.grundman=[email protected]> wrote:

?
I have java version 8 it comes up with message?a java Exception has occurred what do i need to do

On Tue, Feb 25, 2025 at 8:03?PM Louis Grundman via <louis.grundman=[email protected]> wrote:
Hello I have a message that says java encryption?what does that mean jmri will not open? What do I have to do ? louis


Re: WiThrottle function master list #functionlabels

 

Lou, what decoder type are you using for those 150 Roster Entries? Often decoder definitions include the function key defaults.
?
Are you comfortable editing the XML directly? If you are, you can set up one and then copy the updated block in the XML to your other 149. Then Rebuild the Roster Index.
?
--SteveT


Re: WiThrottle function master list #functionlabels

 

Mike, not understanding your reply. You made mention of a master setting but then referred to the individual locomotive.
?
How do I go about setting a master function list for all locomotives to be applied to?
?
Lou
--
Modeling Conrail’s Boston Line in HO


Re: java

 

Short answer: no. Longer answer: don't bother with Oracle's Java. There are
other options, none of which will ask for a subscription. Oracle Java (other
than version 8) is only available as a JDK and is meant for developers who are
writing Java code. Oracle wants to keep track (?) of people writing Java
programs.

Do go to JMRI.org/java and read that page carefully. There are *free*
downloads for Java runtime (JRE) for Java 11 or Java 17 from a few other
places besides Oracle.

At Mon, 24 Mar 2025 09:55:15 -0400 "Louis Grundman via groups.io" <louis.grundman@...> wrote:


Do you have to have a java subscription now. It sak me to subscribe.

On Sun, Mar 16, 2025, 1:54???PM Phil G via groups.io <phil> [email protected]> wrote:

Which version of JMRI are you trying to run??

It's likely you'll need at least JAVA 11

See JMRI.org/java for tons of helpful advice ????

Phil G

On 16 Mar 2025, at 17:31, Louis Grundman via groups.io <louis.grundman> > [email protected]> wrote:

???
I have java version 8 it comes up with message a java Exception has
occurred what do i need to do

On Tue, Feb 25, 2025 at 8:03???PM Louis Grundman via groups.io
<louis.grundman@...> wrote:

Hello I have a message that says java encryption what does that mean jmri
will not open? What do I have to do ? louis






--
Robert Heller -- Cell: 413-658-7953 GV: 978-633-5364
Deepwoods Software -- Custom Software Services
-- Linux Administration Services
heller@... -- Webhosting Services


Re: java

 

开云体育

Louis,

?

Many users have switched to Azul JAVA which does not require a subscription.? Azul also offers a JRE (JAVA Runtime Environment) installation which is much smaller than the JDK (JAVA Development Kit) installation.

?

I’m using Azul JAVA 17 on several Windows 10 and 11 computers with no issues.? I used the ‘.msi’ installer.

?

Make sure you remove your old JAVA installation before installing a new version.

?

HTH,

Ross

?

?

?

From: [email protected] <[email protected]> On Behalf Of Dave Sand
Sent: Monday, March 24, 2025 10:05 AM
To: [email protected]
Subject: Re: [jmriusers] java

?

Only if you have a reason to get it directly from Oracle.

?

?has alternative sources. ?I use Azul.com.

?

Dave Sand

?

?

----- Original message -----

From: "Louis Grundman via groups.io" <louis.grundman=[email protected]>

Subject: Re: [jmriusers] java

Date: Monday, March 24, 2025 8:55 AM

?

Do you have to have a java subscription now. It sak me to subscribe.

?

On Sun, Mar 16, 2025, 1:54?PM Phil G via <phil=[email protected]> wrote:

Which version of JMRI are you trying to run??

?

It’s likely you’ll need at least JAVA 11

?

See JMRI.org/java for tons of helpful advice ?

?

Phil G

?

?

On 16 Mar 2025, at 17:31, Louis Grundman via <louis.grundman=[email protected]> wrote:

?

I have java version 8 it comes up with message?a java Exception has occurred what do i need to do

?

On Tue, Feb 25, 2025 at 8:03?PM Louis Grundman via <louis.grundman=[email protected]> wrote:

Hello I have a message that says java encryption?what does that mean jmri will not open? What do I have to do ? louis

?

?

?

?

?


Re: java

 

Only if you have a reason to get it directly from Oracle.

?has alternative sources. ?I use Azul.com.

Dave Sand


----- Original message -----
From: "Louis Grundman via groups.io" <louis.grundman=[email protected]>
Subject: Re: [jmriusers] java
Date: Monday, March 24, 2025 8:55 AM

Do you have to have a java subscription now. It sak me to subscribe.


On Sun, Mar 16, 2025, 1:54?PM Phil G via <phil=[email protected]> wrote:
Which version of JMRI are you trying to run??

It’s likely you’ll need at least JAVA 11

See JMRI.org/java for tons of helpful advice ?

Phil G


On 16 Mar 2025, at 17:31, Louis Grundman via <louis.grundman=[email protected]> wrote:
?
I have java version 8 it comes up with message?a java Exception has occurred what do i need to do

On Tue, Feb 25, 2025 at 8:03?PM Louis Grundman via <louis.grundman=[email protected]> wrote:
Hello I have a message that says java encryption?what does that mean jmri will not open? What do I have to do ? louis







Re: java

 

Do you have to have a java subscription now. It sak me to subscribe.


On Sun, Mar 16, 2025, 1:54?PM Phil G via <phil=[email protected]> wrote:
Which version of JMRI are you trying to run??

It’s likely you’ll need at least JAVA 11

See JMRI.org/java for tons of helpful advice ?

Phil G

On 16 Mar 2025, at 17:31, Louis Grundman via <louis.grundman=[email protected]> wrote:

?
I have java version 8 it comes up with message?a java Exception has occurred what do i need to do

On Tue, Feb 25, 2025 at 8:03?PM Louis Grundman via <louis.grundman=[email protected]> wrote:
Hello I have a message that says java encryption?what does that mean jmri will not open? What do I have to do ? louis


Serial port issue with CMRI using Windows 10- JMRI crashes #cmri

 

开云体育

Tom,

Since we had an offline personal conversation about JMRI-CMRI compatibility problem 2 years ago, I am writing directly to you with CC the jmriusers? to make sure that someone sees this,

My system info:

Panel Pro 3.10.1-r28327

Java 1.8.0_421 (en.ca)

Reason for using this old software is because my JMRI panels made many years ago were incompatible with current JMRI and Java when I upgraded my home computer to a Windows 10 machine in 2023.? The panel display was badly corrupted and Tom helped me instal old versions of JMRI and Java on the new Windows 10 machine in June 23, 2023

The executable JMRI panel file is ported to an old XP machine running the CMRI signalling system composed of CMRI RS232 to RS 484 Conversion card connected to 2 SMINI’s.

?

This worked fine until the old XP machine died.? Trying to use a Windows computer running Windows 10, but when using the JMRI Panel Pro version 3.10.1 on simulation it ?works OK, but when going to Preferences to go on line and trying to connect to serial port, JMRI crashes whether saving or not. The JMRI program now has been corrupted.? Had to delete JMRI and copy in JMRI directory of files that we had saved.? Now Panel Pro starts up in Simulation mode but will not run in on line CMRI mode. Looks like the old version of JMRI executable is incompatible with Windows 10.

?

Tried to instal latest JMRI into another machine to see if I could get JMRI latest release to run online to CMRI on the Windows 10 machine and it downloads all the way to the un instal JMRI program and goes no further and hangs up. That may be an issue with this computer’s Windows setup as it cannot uninstall any other applications either.? Have seen on JMRI user that there are issues with Windows 10 and serial ports.? . This crash happens whether the UTS-TOS USB to RS485/232 is plugged into or not to a USB port on the computer.? ?Tried both the 2 com Port COM! & COM3 that were offered.?? Then Panel Pro will not start at all even after rebooting the computer. ?Will try to download latest JMRI and Java into a different computer later.

?

Thank you,? Bob Winterton

?

I included the email chain with Tom Pearson below.

On Jun 24, 2023, at 2:25 PM, bobwinterton@... wrote:

?

Tom,

Installed Java SE 8 , and JMRI 3.10.1 with your links , and all OK and up and running. The uninstall button on the JAVA in Windows 10 Settings did the job and had no problems installing Java releases.?

?I see no need to try the transitioning a release at a time to get up to date as proposed in some topic messages.? No plans to make any changes that I can't make with this old version of Panel Pro which I understand. It is serving us well with CTC and APBS? controls for 8 years.

many thanks for your clear and concise instructions, so I did not have to wade through release notes and other documentation.

?

As you noticed from my posts I did find that my Panels files were quite graphics incompatible with the current JMRI Panel Pro.??? Upgrading would be a nightmare in trying to redo the Panels.? Would have to start from scratch, about a year's worth of trial and error.? BTW, I had professional CPR railway personnel and railway documents that helped me get all the aspects for each location on Schreiber Division that we modelled correctly.? The retired railway operating guys ( not just CP) who have operated trains here in our op sessions really enjoy it immensely.? Bruce Chubb was also involved in helping us get good colour renditions for LED's, that I tested from a number of sources.??? Yes you guessed already ,? that I am an electrical engineer hardware and software developer and project manager in another life.

?

Really appreciate all the work and time you and many others have put into this project.? Thank you all? !!

Bob

?

?

?

From: Tom <Texpearson@...>
Sent: Friday, June 23, 2023 9:54 PM
To: bobwinterton@...
Subject: Re: Private: Re: [jmriusers] Problem downloading new version of JMRI and Java in new computer running Windows 10

?

One thing I forgot to mention is cleaning up and removing versions of Java you aren’t using. ?Oracle has a Java Removal tool which does a good job of this

?

?

I’m pretty sure you need to actually install Java.

?

It appears that Java 1.6 can be downloaded from the Oracle archive site

?

?

The version of JMRI you are looking for is on this page

?

?



On Jun 23, 2023, at 7:37 PM, bobwinterton@... wrote:

?

hello Tom,? thank you for contacting me,

I tried just copy /paste of the old Java folder to new computer but the install of JMRI 3.30.1 could not find Java .

Got error message " Failure Down loading JAVA? Please try manually from? http"//java.com/win offline- installer"

I expect that that old version of Java that JMRI 3.30 is looking for after all these years is not downloadable any more.? ??

?

Any suggestions so I can use my existing panels that? I spent over a year to perfect, on the new computer?

?

The suggestions by moderator Peter are quite trial and error it seems to find versions compatible with my Panels.? Updating to newer versions of JMRI may not solve my problem with the Panel files, as I have already discovered with latest JMRI and Java.? That did result in running the Panels but with lots of sensor errors initially because I forgot to set the Preferences to C/MRI to Simulation, as I am running offline.? But then I? found messed up track lines graphics and other graphic changes, likely because of many enhancements over the years.

?

?

?

?


Re: Lock Control Panel Position on Tablet

 

Vinny,
You can remove the footer using css.
1) Find the file JMRI/web/css in your JMRI installation.
2) Follow the directions in that file to copy it into your User Files location.
3) Paste the following CSS at the bottom of that file.
?
/* hide the footer, on panel pages only */
body#panel footer { ?
? display: none;
}
/* undo spacing left for footer, on panel pages only */
body#panel div#wrap { ?
? margin-bottom: 0;
? padding-bottom: 0;
}
?
4) Restart JMRI and clear your browser cache.
--SteveT
?


Re: Another Could not create JAVA virtual machine problem solved by GROK #java

 

I checked dates and my Thinkorswim installation was before JMRI and Azul so I don't know how the EXT folder with a 2011 dated file was inserted into my JAVA
--
Henry S


Chaining transits with a different locomotive #dispatcher

 

Hi,

Still continuing to test chaining of transits.

It look like if you chain a new tansit using "load traininfo”? but with a different locomotive, dispatcher doesn't use the new locomotive but continue to run the new transit with the previous locomotive.

Any idea?

JeanLouisDelestre@...


De: "Ken Heywood via groups.io" <kheywood@...>
?: [email protected]
贰苍惫辞测é: Dimanche 23 Mars 2025 07:57:36
Objet: Re: [jmriusers] Dispatcher question - chaining transits #dispatcher

I use transit actions “load traininfo” and then “terminate” at the end of a transit. This is especially useful when your train has a reversing move.
--
Ken
NYNH&H, Old Colony Division, Cape Cod Branch (1949-1959)
Loconet * JMRI 5.11.1 * OSX,Win10,Ubuntu
Blog: ?
Youtube:


--
---------------------------------------------
Jean-Louis Paris-France
---------------------------------------------
JRMI 5.9.5 on Windows
DCC EX? on Arduino Mega
Java version 17.1.12
?


Re: Sound files

 

You can load Digitrax sound files into Digitrax sound decoders with a PR3/4 and JMRI. That's the only one I know of.

--
Peter Ulvestad
Linux Mint 22.1, JMRI 5.11.3plus, Java 21.0.5
JMRI Users Group Moderator ( /g/jmriusers )
JMRI Developers Group Moderator ( )
Tam Valley Group Moderator ( )
Sprog-DCC Group Moderator ( )
Edmonton Model Railroad Association ( )