Notice: This forum has been recovered from an old backup, so some content, links, and dates may be outdated. The forum is currently read-only while we restore sign-in and registration functionality. Details

If you find this forum valuable and would like to help keep it online, donations to help cover hosting and domain costs are greatly appreciated, but never expected. You can support the forum through Buy Me a Coffee or Ko-fi. Thank you for helping preserve the EventGhost community.

Who has a CM19a?

If you have a question or need help, this is the place to be.

Would you use the CM19a with EG if you could?

Poll ended at Tue Jul 21, 2009 6:05 pm

Yes
2
100%
No
0
No votes
 
Total votes: 2

User avatar
Livin
Experienced User
Posts: 792
Joined: Wed Oct 08, 2008 4:56 am

Who has a CM19a?

Post by Livin »

I'm wondering how many people want to use the CM19a with EG?

I have been doing some research to find code to support the CM19a and see if we could use it via EG in some way.

I've found an OCX made for Homeseer v1.7
- it has an example of how to send commands, but not docs on how to receive (it is supposed to work)
- download... http://rapidshare.com/files/236038486/c ... b.zip.html (MD5: 78B065AAD147188FD5FC03DFD9C8F3D2)

I found some more recent drivers from X10.com's support site
- link... http://www.x10.com/support/support_soft1.htm
- X10's description... X10 USB Wireless Remote Drivers: CM15A, CM19A, ALL USB Transceivers : 3.239 - Released Mar 23, 2009 - Windows XP, Vista 32/64 bit, Windows 7 32/64 bit
- download...http://rapidshare.com/files/236037747/x ... 9.exe.html (MD5: 243C7387BF3DE8FA93054623BC1B2574)

NOTES:
- Before I installed this I had "USB X10 Firecracker Interface" under 'Universal Serial Bus controllers' in Device Manager.
- After I installed the above x10drivers, I now still have the above, but ALSO have "X10 Hid Device" under Human Interface Devices


I'm going to explore as much as I can but may need a real coder (not a hack like me) to get it working.

Anyone interested?
Last edited by Livin on Sat May 23, 2009 6:06 pm, edited 2 times in total.
setup... XBMC, W7MC for DVR & Live OTA TV, JRMC for multi-zone audio, EG, MiCasaVerde Vera3, USB-UIRT IR receiver, Harmony remote, 5.2 home theater system
User avatar
Melloware
Plugin Developer
Posts: 86
Joined: Mon May 12, 2008 6:18 pm

Re: Who has a CM19a?

Post by Melloware »

Livin,

The CM19A works with the same ActiveHome SDK as the CM15A. So you should be able to use the CM15A EG plugin since I just looked at the code it and it uses the SDK COM object properly. Give it a shot.

You may need to install the COM object first which is free from X10.

http://www.x10.com/activehomepro/sdk/index.html

And if it works that plugin should probably be labeled X10 ActiveHome or something like that since it handles more than the CM15.

Let me know how it goes.
-----------------------------------
Melloware Inc.
EventPhone iPhone Application
Intelliremote - HTPC Remote Application
-----------------------------------
User avatar
Livin
Experienced User
Posts: 792
Joined: Wed Oct 08, 2008 4:56 am

Re: Who has a CM19a?

Post by Livin »

I wish it did... I tried it and it does not recognize the CM19a. Log shows stack trace & "Device not found!"
setup... XBMC, W7MC for DVR & Live OTA TV, JRMC for multi-zone audio, EG, MiCasaVerde Vera3, USB-UIRT IR receiver, Harmony remote, 5.2 home theater system
User avatar
Melloware
Plugin Developer
Posts: 86
Joined: Mon May 12, 2008 6:18 pm

Re: Who has a CM19a?

Post by Melloware »

Livin wrote:I wish it did... I tried it and it does not recognize the CM19a. Log shows stack trace & "Device not found!"
Are you sure you installed those SDK drivers I pasted the link for above? Because the only error I see in the plugin throwing Device Not Found is if the COM object "X10.ActiveHome" is not found in your registry which usually means you did not install the SDK Drivers.

Because I support the CM15 and CM19 from my iPhone app X10 Commander and it uses the exact same code as this EG CM15 plugin and I know I have users that reported it works fine with the CM19???
-----------------------------------
Melloware Inc.
EventPhone iPhone Application
Intelliremote - HTPC Remote Application
-----------------------------------
User avatar
Livin
Experienced User
Posts: 792
Joined: Wed Oct 08, 2008 4:56 am

Re: Who has a CM19a?

Post by Livin »

OK, it is working but it only Transmits - I need it to Receive.

Do you have an updated plugin that allows EG to receive from the CM19a?
setup... XBMC, W7MC for DVR & Live OTA TV, JRMC for multi-zone audio, EG, MiCasaVerde Vera3, USB-UIRT IR receiver, Harmony remote, 5.2 home theater system
User avatar
Melloware
Plugin Developer
Posts: 86
Joined: Mon May 12, 2008 6:18 pm

Re: Who has a CM19a?

Post by Melloware »

Livin wrote:OK, it is working but it only Transmits - I need it to Receive.

Do you have an updated plugin that allows EG to receive from the CM19a?
That is quite odd, because it looks like he has the receiving code in there and it looks correct.

Code: Select all

def OnRecvAction(self, actionType, address, command, data, *args):
        if actionType == "recvplc":
            cmdType = "PLC"
        elif actionType == "recvrf":
            if data == 0:
                self.plugin.TriggerEnduringEvent(
                    "%s.%s.%s" % ("RF", address.upper(), command)
                )
            elif data == -1:
                self.plugin.EndLastEvent()
            return
        else:
            cmdType = "Unknown"
        self.plugin.TriggerEvent(
            "%s.%s.%s.%s" % (cmdType, address.upper(), command, data)
        )
-----------------------------------
Melloware Inc.
EventPhone iPhone Application
Intelliremote - HTPC Remote Application
-----------------------------------
User avatar
Livin
Experienced User
Posts: 792
Joined: Wed Oct 08, 2008 4:56 am

Re: Who has a CM19a?

Post by Livin »

The light on the CM19a is off - never turns on. Should it?

I have 2 motion sensors to test with and when I trigger them, nothing shows on the EG log as receiving any commands (I assume it should?).

Is there any way to test this outside of EG?
setup... XBMC, W7MC for DVR & Live OTA TV, JRMC for multi-zone audio, EG, MiCasaVerde Vera3, USB-UIRT IR receiver, Harmony remote, 5.2 home theater system
User avatar
Melloware
Plugin Developer
Posts: 86
Joined: Mon May 12, 2008 6:18 pm

Re: Who has a CM19a?

Post by Melloware »

Livin wrote:The light on the CM19a is off - never turns on. Should it?

I have 2 motion sensors to test with and when I trigger them, nothing shows on the EG log as receiving any commands (I assume it should?).

Is there any way to test this outside of EG?
Yes I believe you can test with ActiveHome, it will tell you if your sensors are working. I am pretty sure the EG code is correct so something tells me your hardware is not working properly.
-----------------------------------
Melloware Inc.
EventPhone iPhone Application
Intelliremote - HTPC Remote Application
-----------------------------------
User avatar
Livin
Experienced User
Posts: 792
Joined: Wed Oct 08, 2008 4:56 am

Re: Who has a CM19a?

Post by Livin »

EG seems to detect it ok but it would be nice if there was a way to log things to test.

Is there a way to add a 'receive' log to your X10commander?
setup... XBMC, W7MC for DVR & Live OTA TV, JRMC for multi-zone audio, EG, MiCasaVerde Vera3, USB-UIRT IR receiver, Harmony remote, 5.2 home theater system
User avatar
Melloware
Plugin Developer
Posts: 86
Joined: Mon May 12, 2008 6:18 pm

Re: Who has a CM19a?

Post by Melloware »

Livin wrote:EG seems to detect it ok but it would be nice if there was a way to log things to test.

Is there a way to add a 'receive' log to your X10commander?
I am sure I could add log messages when messages are received. Contact me on my forums for X10 Commander and I will add it and send you a BETA EXE to try so you can test.
-----------------------------------
Melloware Inc.
EventPhone iPhone Application
Intelliremote - HTPC Remote Application
-----------------------------------
User avatar
Livin
Experienced User
Posts: 792
Joined: Wed Oct 08, 2008 4:56 am

Re: Who has a CM19a?

Post by Livin »

Melloware wrote:
Livin wrote:EG seems to detect it ok but it would be nice if there was a way to log things to test.

Is there a way to add a 'receive' log to your X10commander?
I am sure I could add log messages when messages are received. Contact me on my forums for X10 Commander and I will add it and send you a BETA EXE to try so you can test.
cool.
setup... XBMC, W7MC for DVR & Live OTA TV, JRMC for multi-zone audio, EG, MiCasaVerde Vera3, USB-UIRT IR receiver, Harmony remote, 5.2 home theater system
jaos1
Posts: 3
Joined: Mon Aug 31, 2009 3:36 am

Re: Who has a CM19a?

Post by jaos1 »

I am trying to use CM19A with EG.
Surprisingly, I have no problem with receiving the events - it will show them in the event log as X10_CM15A.RF.A1.On (for instance). [Ok, to be precise, sometimes when I start computer it does not work, but if I unplug and plug back the device, it works.]

However, I have problems with sending anything out through EG. I use X10 CM15A plugin to send, but it does not work. The led on the device does not blink, so it's not sending anything (it does not matter if i select Powerline or Radio Frequency, neither works).

On the other hand, I can send with ahcmd.exe which was installed in Program Files\AHSDK\bin directory and also in Program Files\Common Files\X10\Common. But this program does not work correctly under Vista. It will send the signal as it should but after that with 50% probability it will crash and sometimes hangs for a long time (almost 1 minute), and sometimes forever (so that I need to kill it in Task Manager).

Any ideas what could be wrong?
User avatar
breakerz
Posts: 1
Joined: Mon Mar 01, 2010 9:06 pm
Location: Quebec City, Canada

Re: Who has a CM19a?

Post by breakerz »

Where i can find the CM15 plugin ? i use EG 0.3.7, and only got the X10 generic plugin. :?:
jaos1
Posts: 3
Joined: Mon Aug 31, 2009 3:36 am

Re: Who has a CM19a?

Post by jaos1 »

X10 plugin is for X10 remote controls, it does not control CM15. You need CM15 plugin. It was previously included with EventGhotst, but it's not included in the latest version (3.7.1387). I don't know why. Try to download the oldest version available, install it, and see if there is this plugin in the plugin directory of EventGhost. If there is, save it, install new version and put it back in.
User avatar
Melloware
Plugin Developer
Posts: 86
Joined: Mon May 12, 2008 6:18 pm

Re: Who has a CM19a?

Post by Melloware »

That CM15/19 plugin can be found here:

http://www.eventghost.org/forum/viewtopic.php?f=9&t=667
-----------------------------------
Melloware Inc.
EventPhone iPhone Application
Intelliremote - HTPC Remote Application
-----------------------------------
Post Reply