HomeGenie Forum
Automation Program Plugins and Wizard Scripting => Help => Topic started by: baptist on August 09, 2014, 01:33:27 PM
-
For me HG does everything with the slight exception of RFX433. (I have a whole load of various LightwaveRF switches)
First of all I managed to adapt the 'Serial Port I/O Test' program and managed to send the correct byte data to turn on some light switches on / off. Since then, for the last few days I've been trying to adapt different programs to create modules. However with my limited C# skills, really struggling..
This is where I got to, but still getting errors var moduleDomain = "HomeGenie.RFX";
var portname = "/dev/ttyUSB0";
SerialPort
.WithName( portname )
.Connect( 38400 ); // change baud rate if needed
while (Program.IsEnabled)
//
{
When.WebServiceCallReceived("HomeGenie.RFX", ( args ) =>
{
string[] reqs = ((string)args).Split('/');
var res = "{ 'ResponseValue' : 'ERROR' }";
try
{
string command = reqs[2];
var module = Modules.InDomain("HomeGenie.RFX").WithAddress("1").Get();
switch(command)
{
case "Control.On":
byte[] message = { 0x0A, 0x14, 0x00, 0x02, 0xF4, 0x5F, 0x59, 0x01, 0x01, 0x00, 0x00 };
Program.RaiseEvent(module, "Status.Level", "1", "RFX");
res = "{ 'ResponseValue' : 'OK' }";
break;
case "Control.Off":
byte[] message2 = { 0x0A, 0x14, 0x00, 0x02, 0xF4, 0x5F, 0x59, 0x00, 0x01, 0x00, 0x00 };
Program.RaiseEvent(module, "Status.Level", "0", "RFX");
res = "{ 'ResponseValue' : 'OK' }";
break;
}
}
catch (Exception ex)
{
res = ex.Message + " " + ex.StackTrace;
}
// unable to process request
return res;
});
//
Program.GoBackground();
Any advice would be much appreciated
-
Hi baptist,
to access virtual modules from your program you've to create them first. See this:
http://www.homegenie.it/docs/automation_advanced.php (http://www.homegenie.it/docs/automation_advanced.php)
read the paragraph about virtual modules.
Anyway I was in the will of porting this https://github.com/opensourceautomation/Open-Source-Automation/blob/master/Plugins/OSAE.RFXCOM/OSAE.RFXCOM.cs (https://github.com/opensourceautomation/Open-Source-Automation/blob/master/Plugins/OSAE.RFXCOM/OSAE.RFXCOM.cs) to a MIG Interface class.
HG r408 was refactored to facilitate the process of adding interfaces to mig/homegenie, so it might be the right moment of doing this since you have hardware to test.
Still I'm looking for some users with Insteon hardware... do you know any? =)
Cheers,
g.
-
Thanks Gene, I'll try to create a Virtual module.
Sorry I don't have access to INSTEON devices.
I only have several LightwaveRF wall dimmers / mains sockets and a Lightwave PIR.
Also hard wired PIR's door contacts to MCP23017's > HG
-
Hi Gene .. Sorry but I'm still getting errors. Can you let me know where I.m going wrong, Many Thanks
Program.AddVirtualModules("Components.RFX", "Switch", "homegenie/generic/RFX", 1, 1);
var portname = "/dev/ttyUSB0";
SerialPort
.WithName( portname )
.Connect( 38400 );
When.WebServiceCallReceived("HomeGenie.RFX", ( args ) =>
{
string[] reqs = ((string)args).Split('/');
var res = "{ 'ResponseValue' : 'ERROR' }";
try
{
string command = reqs[2];
var module = Modules.InDomain("HomeGenie.RFX").WithAddress("1").Get();
switch(command)
{
case "Control.On":
byte[] message = { 0x0A, 0x14, 0x00, 0x02, 0xF4, 0x5F, 0x59, 0x01, 0x01, 0x00, 0x00 };
SerialPort.SendMessage(message);
Program.RaiseEvent(module, "Status.Level", "1", "RFX");
res = "{ 'ResponseValue' : 'OK' }";
break;
case "Control.Off":
byte[] message2 = { 0x0A, 0x14, 0x00, 0x02, 0xF4, 0x5F, 0x59, 0x00, 0x01, 0x00, 0x00 };
SerialPort.SendMessage(message2);
Program.RaiseEvent(module, "Status.Level", "0", "RFX");
res = "{ 'ResponseValue' : 'OK' }";
break;
}
}
catch (Exception ex)
{
res = ex.Message + " " + ex.StackTrace;
}
// unable to process request
return res;
});
//
Program.GoBackground();
The program saves without errors, (shows a green symbol )however when I tried to add the switch into the group, I get the question mark error icon.. Any advice much appreciated.
-
Hi baptist,
I suppose the widget specified is wrong.
Try changing "homegenie/generic/RFX" with "homegenie/generic/switch", for a list of existing widgets see:
http://www.homegenie.it/docs/automation_widgets.php (http://www.homegenie.it/docs/automation_widgets.php)
cheers,
g.
-
Thanks Gene, I now have the widget. But when I operate Control.On I don't see any activity on the RFX device. (When I modify the program 'Serial Port I/O Test' with the correct byte information it works) :'(
Program.AddVirtualModules("Components.RFX", "Switch", "homegenie/generic/switch", 1, 1);
var portname = "/dev/ttyUSB0";
SerialPort
.WithName( portname )
.Connect( 38400 );
When.WebServiceCallReceived("HomeGenie.RFX", ( args ) =>
{
string[] reqs = ((string)args).Split('/');
var res = "{ 'ResponseValue' : 'ERROR' }";
try
{
string command = reqs[2];
var module = Modules.InDomain("HomeGenie.RFX").WithAddress("1").Get();
switch(command)
{
case "Control.On":
byte[] message = { 0x0A, 0x14, 0x00, 0x02, 0xF4, 0x5F, 0x59, 0x01, 0x01, 0x00, 0x00 };
SerialPort.SendMessage(message);
Program.RaiseEvent(module, "Status.Level", "1", "RFX");
res = "{ 'ResponseValue' : 'OK' }";
break;
case "Control.Off":
byte[] message2 = { 0x0A, 0x14, 0x00, 0x02, 0xF4, 0x5F, 0x59, 0x00, 0x01, 0x00, 0x00 };
SerialPort.SendMessage(message2);
Program.RaiseEvent(module, "Status.Level", "0", "RFX");
res = "{ 'ResponseValue' : 'OK' }";
break;
}
}
catch (Exception ex)
{
res = ex.Message + " " + ex.StackTrace;
}
// unable to process request
return res;
});
//
Program.GoBackground();
-
Hi baptist,
when you click on the ON/OFF button the widget will be calling this url:
http://192.168.0.2/api/Components.RFX/1/Control.On/ (http://192.168.0.2/api/Components.RFX/1/Control.On/)
so
When.WebServiceCallReceived("HomeGenie.RFX", ( args ) =>
must be changed in order to handle api calls starting with "Components.RFX" rather than "HomeGenie.RFX"
When.WebServiceCallReceived("Components.RFX", ( args ) =>
to see if your program is responding to commands try opening the api url in your browser. It should respond with "{ResponseValue: OK}".
Cheers,
g.
-
Many Thanks Gene..
That worked.. :)
Also the Widget turns the light on / off however the animation of the switch doesn't.. ?
For anyone else who hac RFXCOM 433 + LightwaveRF Switches
Program.AddVirtualModules("Components.RFX", "Switch", "homegenie/generic/switch", 1, 1);
var portname = "/dev/ttyUSB0";
SerialPort
.WithName( portname )
.Connect( 38400 );
When.WebServiceCallReceived("Components.RFX", ( args ) =>
{
string[] reqs = ((string)args).Split('/');
var res = "{ 'ResponseValue' : 'ERROR' }";
try
{
string command = reqs[2];
var module = Modules.InDomain("HomeGenie.RFX").WithAddress("1").Get();
switch(command)
{
case "Control.On":
byte[] message = { 0x0A, 0x14, 0x00, 0x02, 0xF4, 0x5F, 0x59, 0x01, 0x01, 0x00, 0x00 };
SerialPort.SendMessage(message);
Program.RaiseEvent(module, "Status.Level", "1", "RFX");
res = "{ 'ResponseValue' : 'OK' }";
break;
case "Control.Off":
byte[] message2 = { 0x0A, 0x14, 0x00, 0x02, 0xF4, 0x5F, 0x59, 0x01, 0x00, 0x00, 0x00 };
SerialPort.SendMessage(message2);
Program.RaiseEvent(module, "Status.Level", "0", "RFX");
res = "{ 'ResponseValue' : 'OK' }";
break;
}
}
catch (Exception ex)
{
res = ex.Message + " " + ex.StackTrace;
}
// unable to process request
return res;
});
//
Program.GoBackground();
Control On
Lighting5 command:0A 14 00 02 F4 5F 59 01 01 00 00
Control Off
Lighting5 command:0A 14 00 03 F4 5F 59 01 00 00 00
-
Hi baptist... this was a very interactive session =)
Also the module domain specified in your code is wrong. Should be **"Components.RFX"** as well.
var module = Modules.InDomain("Components.RFX").WithAddress("1").Get();
so how are you using this piece of code?
Cheers,
g.
-
Thanks Again Gene, that fixed the animation on the Widget :)
Brilliant !
I used the RFXmngr software which I downloaded from http://www.rfxcom.com/downloads.htm (http://www.rfxcom.com/downloads.htm)
to work out the correct byte's to transmit
I also had to upgrade the firmware on the RFXtrx to v77 to get it work correctly with LightwaveRF.
I,ve just got work out have to add multiple switches..
-
Thanks for the fantastic support, however I'm afraid my lack of knowledge of C# is letting me down.
I managed to get a single switch to work fine, in fact the code below allows one switch to work correctly, also using the api I can get all 3 to operate but no matter how I try I can't get more than one to oporate from the GUI.. Can anyone advise, much appreciated.
Program.AddVirtualModules("Components.RFX433A", "Switch", "homegenie/generic/switch", 1, 3);
var portname = "/dev/ttyUSB0";
SerialPort
.WithName( portname )
.Connect( 38400 );
When.WebServiceCallReceived("Components.RFX433A", ( args ) =>
{
string[] reqs = ((string)args).Split('/');
var res = "{ 'ResponseValue' : 'ERROR' }";
try
{
string command = reqs[2];
var module1 = Modules.InDomain("Components.RFX433A").WithAddress("1").Get();
var module2 = Modules.InDomain("Components.RFX433A").WithAddress("2").Get();
var module3 = Modules.InDomain("Components.RFX433A").WithAddress("3").Get();
switch(command)
{
case "Control.On":
byte[] message = { 0x0A, 0x14, 0x00, 0x02, 0xF4, 0x5F, 0x59, 0x01, 0x01, 0x00, 0x00 };
SerialPort.SendMessage(message);
Program.RaiseEvent(module1, "Status.Level", "1", "RFX433A");
res = "{ 'ResponseValue' : 'OK' }";
break;
case "Control.Off":
byte[] message2 = { 0x0A, 0x14, 0x00, 0x02, 0xF4, 0x5F, 0x59, 0x01, 0x00, 0x00, 0x00 };
SerialPort.SendMessage(message2);
Program.RaiseEvent(module1, "Status.Level", "0", "RFX433A");
res = "{ 'ResponseValue' : 'OK' }";
break;
case "Control2.On":
byte[] message3 = { 0x0A, 0x14, 0x00, 0x02, 0xF3, 0x17, 0xE0, 0x08, 0x01, 0x00, 0x00 };
SerialPort.SendMessage(message3);
Program.RaiseEvent(module2, "Status.Level", "1", "RFX433A");
res = "{ 'ResponseValue' : 'OK' }";
break;
case "Control2.Off":
byte[] message4 = { 0x0A, 0x14, 0x00, 0x02, 0xF3, 0x17, 0xE0, 0x08, 0x00, 0x00, 0x00 };
SerialPort.SendMessage(message4);
Program.RaiseEvent(module2, "Status.Level", "0", "RFX433A");
res = "{ 'ResponseValue' : 'OK' }";
break;
case "Control3.On":
byte[] message5 = { 0x0A, 0x14, 0x00, 0x02, 0xF3, 0x17, 0xE0, 0x0D, 0x01, 0x00, 0x00 };
SerialPort.SendMessage(message5);
Program.RaiseEvent(module3, "Status.Level", "1", "RFX433A");
res = "{ 'ResponseValue' : 'OK' }";
break;
case "Control3.Off":
byte[] message6 = { 0x0A, 0x14, 0x00, 0x02, 0xF3, 0x17, 0xE0, 0x0D, 0x00, 0x00, 0x00 };
SerialPort.SendMessage(message6);
Program.RaiseEvent(module3, "Status.Level", "0", "RFX433A");
res = "{ 'ResponseValue' : 'OK' }";
break;
}
}
catch (Exception ex)
{
res = ex.Message + " " + ex.StackTrace;
}
// unable to process request
return res;
});
//
Program.GoBackground();
-
Hi baptist,
have a look at the source code of Philips hue. I think it will help.
Cheers,
g.
-
See attachment, let me know if this works.
g.
-
Thanks Gene, But the attached hgx file would not install :(
I editted the file ang changed
When.WebServiceCallReceived("Components.RFX433A", ( args ) =>
to
When.WebServiceCallReceived("Components.RFX433A", ( args ) =>
and it Worked .. Brilliant !!!
Attached working copy :)
Thanks Again you are the best !
-
Hi
Would it be possible to make a homebrew 433MHz RF Transceiver work with RFX433 software? Or do we need to purchase the usb dongle?
-
With all the information here, I was able to get my new RFXtrx433E to work with HomeGenie :)
Well... I've only got a single remote switch at the moment, but I managed to get HomeGenie to listen to it and switch a Hue light on and off , the code I've written is a mess though :P
Anyway I was in the will of porting this https://github.com/opensourceautomation/Open-Source-Automation/blob/master/Plugins/OSAE.RFXCOM/OSAE.RFXCOM.cs to a MIG Interface class.
Has this already been ported to HomeGenie? I'd like to help but it's a little over my head, if anyone can give me any pointers as to where I should start I'd be very happy to hear from you.
-
Yay! I got two cheap! temperature sensors (http://www.pollin.de/shop/dt/NDE0OTYxOTk-/Haustechnik/Wetterstationen_Thermometer/Thermo_Hygrosender_OREGON_SCIENTIFIC_THGR328N_433_MHz.html)working, but it's a bit of a mess...:)
What would be the best way to incorporate something like this elegantly in HomeGenie? I've attached two files:
1003-Temp_Humidity_Sensor.hgx
Virtual modules for the Temp/Humidity widgets
132-Serial_Port_I-O_Test.hgx
A modified Serial Port IO test file.
As I said earlier, it's a bit of a mess. You need to name the widget with the cryptic Id of the RFX433 device, cause I don't know how to do it another way.
If anyone can show me how to get started with making a 'proper' MIG interface I'll be glad to get it into HomeGenie.
-
Still playing around with this, I bought three Siemens PIR (http://www.ebay.co.uk/itm/Siemens-Wirefree-Indoor-PIR-For-Wireless-Doorbells-Chimes-DCACC3-/271643427267?ssPageName=ADME:L:OU:NL:3160) and managed to get them working with HomeGenie. Also managed to get a remote control working as well.
Now to get the 433 MHz smoke alarms working. Have to wait until the family is doing something else though, I don't think they'll appreciate the noise...:)
-
Hy mvdarend do you have the oportunity to improve this code?
Yay! I got two cheap! temperature sensors ([url]http://www.pollin.de/shop/dt/NDE0OTYxOTk-/Haustechnik/Wetterstationen_Thermometer/Thermo_Hygrosender_OREGON_SCIENTIFIC_THGR328N_433_MHz.html[/url])working, but it's a bit of a mess...:)
What would be the best way to incorporate something like this elegantly in HomeGenie? I've attached two files:
1003-Temp_Humidity_Sensor.hgx
Virtual modules for the Temp/Humidity widgets
132-Serial_Port_I-O_Test.hgx
A modified Serial Port IO test file.
As I said earlier, it's a bit of a mess. You need to name the widget with the cryptic Id of the RFX433 device, cause I don't know how to do it another way.
If anyone can show me how to get started with making a 'proper' MIG interface I'll be glad to get it into HomeGenie.
-
Hy mvdarend do you have the oportunity to improve this code?
I did modify it slightly months ago, but then I sold the RFX device as I've moved over to MySensors (http://www.mysensors.org/).
I can't seem to find my backups from then, if I do I'll post the modified files. But basically you don't need a custom widget for sensors. Grab the given ID from the device and use it to create a virtual module. (See CptJacks MySensor (http://www.homegenie.it/forum/index.php?topic=758.0)code for an example.)
It also looks like domotica_user has some working code. http://www.homegenie.it/forum/index.php?topic=275.msg6500 (http://www.homegenie.it/forum/index.php?topic=275.msg6500)
-
When you tell unit id what you use for it?
I'm asking because i have multiple oregon scientific sensors, but tu read the information i use an arduino in the raspberry so i can go to the serial get the info, but me arduino have a code to decode the ook format and send it as string, what identify in me case is unit id (usally two numbers) and the channel.
What is yours?
-
I used both codes as a unit Id, something like this: (untested code of the top of my head, you'll need to modify this.)
string unitId = String.Format("{0}{1}", message[4], message[5]);
var module = Modules.InDomain("RfxCom").WithAddress(unitId).Get();
if (module.Instance == null)
{
Program.AddVirtualModule("RfxCom", unitId, "Sensor", "homegenie/generic/sensor");
module = Modules.InDomain("RfxCom").WithAddress(unitId).Get();
}
if(module.Parameter(deviceType).Value != mpayload)
{
module.Parameter(deviceType).Value = mpayload;
Program.RaiseEvent(module, deviceType, mpayload, "");
}
-
Thank you for your help.
When i'm home i will try it.
I must understand first what methods i can use in c# because the string i get is something like
XXXXXXXXXXXXXXXXXXXXXXXXXX;Id:82;Channel:2;bate:90%;temp:17
I'm able to split the string whith ; char. If i can't find a better way i will do a split again with the :
Cheers
-
I opted to use Acurite for my sensors, but they are functionally similar to those Oregon Scientific sans local temperature display. I didn't use the RFX433 since I was looking at incorporating other sensors too. Rather, I opted for an Arduino + 433MHz receiver. MySensors is probably easier in that the code is designed to work this way rather than using the OEM sensors that require decoding. Decoding the protocol and writing the code to receive is potentially difficult and time consuming unless the sensor is already decoded.
-
I 'm able to get the values.
I would love to replace the code so we can use the module name as sensor name and add a module parameter for de device id, but i can't find anything in the docs to add variables do the virtual module, i'm able to do it if it was a normal module...
ANy help will be welcome
-
Hi, not sure it help because I haven't change a lot from other previous snippets but find my version attached.
It will add new virtual module as soon as this module send data.
I've prepare code for adding other type of sensor.
I've too add a parameter for define the serial port.
If anyone know how to add entry in the event history without do a "Program.Notify" which show a popup please tell me.
Note :
1 - I've try to decode some additionnal data which doesn't appear in the widget, if anyone would made a new widget to handle this data, I could update the program for use it.
2 - I have only 3 THGN122 so I hope this works with other sensor but not tested
3 - I'm not sure if I correctly decode the HumidityStatus because I've seen some strange result (Humidity = 71%, HumidityStatus=Dry ^^)
-
Hello,
Firstly, thanks for the great work on HomeGenie. I'm just getting back into some HA projects (moving home, and the new place has loads of HA friendly stuff) and came across HomeGenie. It looks really ideal for me - well thought out and flexible model, and I'm very familiar with C#/.NET so great to be able to leverage that. You've done a great job!
Anyway - like many others, I've an RFXCom device (mine is the LAN model, but the underlying messages are the same as the USB/COM Port models and it can create a virtual COM port for it).
You mentioned:
Anyway I was in the will of porting this https://github.com/opensourceautomation/Open-Source-Automation/blob/master/Plugins/OSAE.RFXCOM/OSAE.RFXCOM.cs (https://github.com/opensourceautomation/Open-Source-Automation/blob/master/Plugins/OSAE.RFXCOM/OSAE.RFXCOM.cs) to a MIG Interface class.
Have you any more thoughts about doing this?
Wile I'm willing to develop my own program (I assume I'd have to do everything in one, background running 'program') to access this device, it does seem like it would be more fitting to create a proper MIG Interface for this. I've had a look at the MIG source, but I think it's something would take me some time to get working without being familiar with the system.
I think it would need something along the lines of the ZWave with device discovery perhaps? There is a long list of devices (and therefore modules) that the RFXCom transceivers can work with, and it would be great to have this working properly rather than bodging something.
On the other hand, the fact it works with so many different device types may make it very complex for you to integrate as a general interface? If you think this is the case, perhaps it's best for me to code a program that just interfaces with the devices/modules I need? Having said that, the OSAE.RFXCOM.cs code referred to above does seem to include all those that are of interest to me.
Sorry for dragging up an old thread!
Would be great to hear your thoughts?
Thanks again,
Tim
-
Hi Deggle,
as you said, I don't think that a MIG interface is really needed here, as this can be implemented with an automation program.
See DavZero's example in the previous message:
http://www.homegenie.it/forum/index.php?topic=296.msg6616#msg6616 (http://www.homegenie.it/forum/index.php?topic=296.msg6616#msg6616)
I see that the supported device list/codes is very long, but can be possibly included with a little effort into a single automation program rather than a mig interface plugin. Or as you said, you can try to just implement the devices you need.
Cheers,
g.