Keyboard Shortcuts
Likes
- Jmriusers
- Messages
Search
Locked
Re: Verify Initial Setup
Attachments get stripped, so none of your logs showed up,
Cut & Paste the third log? to the thread. Marc |
Locked
Verify Initial Setup
¿ªÔÆÌåÓýI have attached three logs. The first one is with just JMRI running Decoder Pro 3, with no connection to the cab buss. The second is also with Decoder Pro running, but just connected to the cab buss - no commands attempted. The third file is with Decoder Pro running, paged mode, programming track mode, and new loco>read the decoder selected. The OS is Windows XP, and the usb is the NCE
adapter. This all worked a couple of years ago. Maybe dust
overload?? :-) Peace, Mike G.
On 12/14/2019 10:30 PM, Dave Heap
wrote:
Mike,On 15 Dec 2019, at 2:08 PM, emrldsky <azMikeG@...> wrote: By System Console - under Help - do you mean the Decoder Pro Help?Yes. There's no point making further comments until I see that. It answers a lot of questions you can't. Dave in Australia |
Locked
Trouble loading PanelPro panels
Hello all:
We are seeing a strange issue when initializing PanelPro. When we include the panels as part of the configuration start up, the panels load and display but the PanelPro main window never opens.? We have to ctrl-alt-del and end the java task. If we allow Panel Pro to load without the panels, PanelPro starts correctly. We go to the Panel menu and load the panels from there.? Everything then works correctly (and well).? What is this behavior telling me? Dan Kubarych ARHS |
Locked
Re: Engine Driver not Discovering Server
#enginedriver
Thanks Jim! I made an image file of my 'working' JMRI so I can easily go back. Then tried 'sudo apt-get dist-upgrade' in lieu of 'sudo apt upgrade'. Autoremove, then a reboot. |
Locked
Re: Routes Export
#operationspro
I downloaded 4.17.7 over the weekend and tried the Routes export function. It¡¯s perfect, Dan. Thanks.
-- Mike Heintzman Modeling the P&PU since 1953 |
Locked
Re: Test version 4.17.7 of JMRI/DecoderPro is available for download
Oops - thanks for picking that up Alan.
I've committed this update to the repository and it should turn up soon. Thanks again. Best regards, Matt H |
Locked
Re: Engine Driver not Discovering Server
#enginedriver
Scott:
Yes I saw the file manager fix but the chatter was other things were broken too... Trash wouldn't open either... That's why I wondered about your problem is mixed in the mess there. No WiFi is normal, XX, scan, blink then solid. The dist-upgrade looks at libraries and links to new ones... Further reading suggests an apt-get autoremove after the upgrade... I've seen it said that it's always nice to know that there 10 ways to do the same thing in Linux yet it's the 11th that actually works... Jim Albanowski |
Locked
Re: Test version 4.17.7 of JMRI/DecoderPro is available for download
Umm, reading through the release notes on the web page, under 'Known problems for this release' it refers to JMRI 4.11.8. I presume this is a copy and paste error and should refer to 4.18? Note the link is also to 4.11.8.
toggle quoted message
Show quoted text
-----Original Message-----
From: [email protected] <[email protected]> On Behalf Of Bob Jacobsen Sent: 13 December 2019 16:30 To: [email protected] Subject: [jmriusers] Test version 4.17.7 of JMRI/DecoderPro is available for download Test version 4.17.7 of JMRI/DecoderPro is available for download. This is the next in a series of test releases that will culminate in a production release, hopefully in early December 2019. We're getting close to the end of the development series, so we'd appreciate feedback on whether or not this release works for your layout. If you are currently using JMRI 4.9.6 or earlier, we strongly recommend that you first update to JMRI 4.12 and make sure that's running OK before updating to this test release. There have been a number of changes in serial port support, panel file format and configuration options since those earlier releases, and moving to the stable JMRI 4.12 release is a good way to work through any possible problems. <> If you use JMRI on Linux or Mac and are updating from JMRI 4.7.3 or earlier, there¡¯s a necessary migration step. (Not needed on Windows) Please see the JMRI 4.12 release note for details: <> For more information on the issues, new features and bug fixes in 4.17.7 please see the release note: <> Note that JMRI is made available under the GNU General Public License. For more information, please see our copyright and licensing page. <> The download links, along with lots of other information which we hope you'll read, can be found on the release note page: <> Bob -- Bob Jacobsen rgj1927@... |
Locked
Re: Test version 4.17.7 of JMRI/DecoderPro is available for download
toggle quoted message
Show quoted text
On Dec 15, 2019, at 10:09 PM, Dan Boudreau <daboudreau@...> wrote:
|
Locked
Re: Test version 4.17.7 of JMRI/DecoderPro is available for download
Thanks Sam,
I can reproduce, so I should be able to fix this in the next test release.? The replace also reverts the load priority, and both load messages. So the replace needs a bit of work. Dan |
Locked
Re: Test version 4.17.7 of JMRI/DecoderPro is available for download
Fairly low priority, but when replacing certain types of custom loads in Ops, the load type is not retained. This seems limited to load type "Empty".
Example: I have the custom load MT, load type Empty, for my empty loads rather than using the default "E". I am in the process of changing all MT loads over to -(Empty) using the replace function in the edit loads window. I select the old MT load and type in the new -(Empty) load. I click on the 'replace' button, affirmatively acknowledge the replacement, and -(Empty) replaces MT. The load type of -(Empty) is now a load rather than empty. It would appear that the replace load function is understandably hardwired to regard custom loads as, well, loads. Another example of an empty load that isn't a load is an idler car. Sam |
Locked
Signals using Light-Its
I use JMRI V4.17.5 with Java V1.8.0 on a laptop with Windows 10, use NCE Power Pro with V2007a, and have a separate booster for each of two accessory busses that have attached to them over 40 Switch-Its and over 100 Light-Its that drive single- and double-head masts (SHM and DHM).? Layout Editor is used for a schematic of the track along with the signals.? The signal aspect is currently set manually by the dispatcher. To make sure all signals are set to a known aspect, the following script is used with additional lines added as needed for the other SHM and DHM: ?# File: All Signals Red2.py import jmri import java class setStartup(jmri.jmrit.automat.AbstractAutomaton) :????? ?? def init(self): ???? return ?? def handle(self): ??? Normal = "Unlit"????? # single head mast ??? Normal2 = "Unlit"??? # double head mast ??? for cnt in range (1,3): ????????? if cnt==2: Normal = "Stop" ????????? if cnt==2: Normal2 = "Stop" ????????? print "Start Set Signals", Normal, Normal2 ????????? masts.getSignalMast("MP101 101LA").setAspect(Normal)??? ?????# single head mast ????????? self.waitMsec(300) ????????? masts.getSignalMast("MP101 101RAB").setAspect(Normal2)? ??# double head mast ????????? self.waitMsec(300) # additional lines like the previous 4 lines are inserted here for the remaining masts ??? print "End of Set Signals" ??? return False???????????? # all done, don't repeat again setStartup().start()?? ???# create one of these, and start it running ? The SHM and top heads of the DHM are reset.? The problem is that some of the lower heads for the DHM do not get set.? However, when these heads are exercised from the track panel or from a Pro Cab or from the Signal Mast table, the lights work.? The lower heads are not always the same ones when the script is executed again. I am wondering if this is a timing issue, that is, perhaps the lower head is sent a command by JMRI before the command station is able to respond?? What can be done to solve this problem? ?Thanks for your help. ?Ted of Iowa City |
Locked
Re: Engine Driver not Discovering Server
#enginedriver
Interesting Jim. I'm not going to gamble for now as everything is working perfectly. Although, after the last 48 hours, I am an expert on getting from a fresh SD card to my preferred JMRI status, rosters and profiles in about 20 minutes or less. Thanks, |
Locked
Re: Parse Error
The Test version JMRI 4.17.7 solved the problem. I read the info on the test version and it suggested to use the older one.
Thank you for the help. Harold |
Locked
Re: Layout editor
When you're editing routes you can select (one) turnout trigger or 3 (4?) sensor triggers.
|
Locked
Re: Layout editor
toggle quoted message
Show quoted text
On 16 Dec 2019, at 7:36 am, Dave Sand <ds@...> wrote:
|
Locked
Re: Layout editor
Actually¡ I was able to do this completely with routes:
IR1: turnout 1 closed sets turnout 2 thrown IR2:?turnout 2 thrown sets turnout 3 closed IR3:?turnout 3 closing sets turnout 1 closed (Note: easy to get a loop going here¡ don't get your states wrong¡ ;-) |
Locked
Re: Layout editor
Turnouts can also trigger Routes. Dave Sand ----- Original message ----- From: "George Warner via Groups.Io" <geowar1@...> Subject: Re: [jmriusers] Layout editor Date: Sunday, December 15, 2019 2:02 PM Or you could do both: Use Logixs (triggered by turnouts) to set routes? |
Locked
Re: Engine Driver not Discovering Server
#enginedriver
Scott:
Finding that *my* problem came back after I did update/upgrade I wonder... My problem is that the file manager won't open but rather blinks open and then closes... Researching on line there are others who had the same problem. I thought it was my adding a hardware real time clock module but no it's an update/upgrade problem. I will note that the update/upgrade fixes a lot of other stuff... especially dual monitors... Fix suggested was to do a sudo apt-get dist-upgrade and that fixed my file manager problem. I wonder if you'll gamble on breaking JMRI again the extra step then might fix your problem..? Jim Albanowski |