Hi, nice S/W.
But can I use it to start a program when CTS goes low (or high)? Any other S/W that does this stand alone?
I can't power my amps with a connection straight from the dtr line to my acc on my amp.
So, i am planning on using a relay. My question is i read about most ppl using a transistor to power the relay. Is this nesseccary to do or can i use the 12v line on my power supply molex connector to get the constant power? Or is a transistor a better way?
The reason i ask is because i tried to set it up in my car and my amp wouldn't get any signals to turn on, voltage wasn't getting sent to acc line.
For my relay i have the dtr line as my trigger, 12 volt from molex, ground from molex and amp acc.
Cheers..
Hi, nice S/W.
But can I use it to start a program when CTS goes low (or high)? Any other S/W that does this stand alone?
There's no "easy" way to make a command/program execute on CTS changes with this tool alone. However, you could make an auto-it script or a separate plugin to monitor the label/indicator from this application in order to achieve the function.
It's very likely you could find a stand alone software that could start a program like that -- I do not know of any off hand.
Ride Runner RR's Myspace
"Being happy is not about having what you want, it's about wanting what you have."
"The best things in life are always free - but that doesn't mean money can't buy you good things."
every so often, SerialSwitch doesn't resume from hibernation in my system. It's pretty odd, and I haven't dug too deep yet to see if I can get it to work... but has anyone else ever had the problem? On resume, if its having problems, I will get one of those Windows recovery windows where it asks if you want to send or not send the crash/bug info to Microsoft. Even more interesting is that the amps are actually ON (so serialswitch was working) at this point... until i press Don't Send in the error report screen... then serialswitch gets shutdown. Restarting RR always brings things back, and it will be fine for another 10 or so hibernates.
Think I should try adding serialswitch to system startup? Like I said, I haven't really tried anything yet, just putting it out there :-p
Thanks!
I am currently rewriting SerialSwitch to also have variables, so stay tuned.
SerialSwitch is a stand alone exe that happens to include the older RR SDK. It is not a Newer SDK DLL plugin, so the only control RR has over it is loading and unloading. I am looking at my options for continuing this as a standalone exe.
I may just strip the older RR SDK from the EXE and make it just that, No RR functions.
Then I will make a RR only DLL for RR users.
I hope RR will move forward and get rid of the RR compatibility EXE, so that developers will buck up and support the new SDK soon.
...JJG
RRVoice Version 1.1.0.10 BETA
RRVCConfig Version 1.0.0.69 BETA
RRMouseTrap Version 1.5 Beta
RRPointer Version 1.0 BETA Update Soon
RRTTS Testing
RRScript Testing
SerialSwitch In Development
Ride Runner RR's Myspace
"Being happy is not about having what you want, it's about wanting what you have."
"The best things in life are always free - but that doesn't mean money can't buy you good things."
Sure, I think I understand this, but isn't that what variables are for?
OK, I'm thinking here, ONCTSLOW event would be easier to trigger off of than a variable code. (ie: myvar;DTROFF<<DTRON)?
Correct me please, as I am still wrapping my head around sdk methods.
And now I am putting this all into a DLL plugin.
Any chance of new example VB6 sdk modules for exe's, like before RideRunner, as opposed to the new DLL SDK classes?
...JJG
RRVoice Version 1.1.0.10 BETA
RRVCConfig Version 1.0.0.69 BETA
RRMouseTrap Version 1.5 Beta
RRPointer Version 1.0 BETA Update Soon
RRTTS Testing
RRScript Testing
SerialSwitch In Development
With the current application it is already possible to perform different tasks based on the indicator/label state, that is when executing a command (i.e. pressing buttons). However nothing is executed when something changes (i.e. CTS or another line), so if you could monitor the line, and anytime it changes you executed a command (event), then we could for instance use that to trigger things in RR.
Code wise, it would be something like below ... (I assume you have some sort of "update timer" sub already):
If you're using the COM Object method, you could simply change the ComSend "RideRunner", "ONCTSHIGH" for SDK.Execute "ONCTSHIGH" and do the same for ONCTSLOW...Code:Private Sub UpdateTimer_Timer() Static CTSState as boolean <... do whatever ...> If CTSState <> GetCTSState() then CTSState = GetCTSState() If CTSState = True then ComSend "RideRunner", "ONCTSHIGH" else ComSend "RideRunner", "ONCTSLOW" End if End if <... do whatever ...> End Sub
I'd be more than glad to provide you with any information on the newest SDK.. or even take a look at some of the code to help you out... there's also some posted info here already:
http://www.mp3car.com/vbulletin/rr-f...cation-rr.html
Ride Runner RR's Myspace
"Being happy is not about having what you want, it's about wanting what you have."
"The best things in life are always free - but that doesn't mean money can't buy you good things."
Ahh, I see now!I just didn't get the user input part of indicator/label states. Those are not commands!
The events are done, just have to update the zip and readme now.
The timer is gone from the exe as the mscomm.ocx has events
for input lines. It is all event driven now. No timers.
I have been using the Windows Messaging API with this. I will look at how this affects hibernate as opposed to the COM OBJECT method.
Off to Work now. The one that feeds me.
...JJG
RRVoice Version 1.1.0.10 BETA
RRVCConfig Version 1.0.0.69 BETA
RRMouseTrap Version 1.5 Beta
RRPointer Version 1.0 BETA Update Soon
RRTTS Testing
RRScript Testing
SerialSwitch In Development
Here's Version 5, With events and NO timer.
Uninstall old version first.
Note all labels, commands, indicators, events changed spelling!
Check and READ first post.
Please give feedback.
...JJG
RRVoice Version 1.1.0.10 BETA
RRVCConfig Version 1.0.0.69 BETA
RRMouseTrap Version 1.5 Beta
RRPointer Version 1.0 BETA Update Soon
RRTTS Testing
RRScript Testing
SerialSwitch In Development
Bookmarks