HomeGenie Forum
General Category => Troubleshooting and Support => Topic started by: matthieu on January 17, 2016, 10:35:59 PM
-
Hello Everyone,
I'm trying to migrate Homegenie from r493 to r512 and i have a remaining issue with a Z-Wave MultiChannel module. (Fibaro FGS222)
When i try to change state programmaticaly on r512 it does not work but with the UI it works.
Sample code to change the switch state programmaticaly :
----
var chauffageM = Modules.WithName("ChaudiereDirect");
chauffageM.On(); // does nothing on r512 on MultiChannel module, works great on r493
Program.GoBackground();
----
as a workaround i used the same way as the UI :
----
var chauffageM = Modules.WithName("ChaudiereDirect");
//chauffageM.On();
var chauffage = chauffageM.Get();
Net.WebService("http://127.0.0.1/api/" + chauffage.Instance.Domain + "/" + chauffage.Instance.Address + "/Control.On/").GetData(); // works great
----
Did i missed something ?
Thanks
-
Did you ever resolve this?
I have FRG222 modules, but the virtual modules cannot be controlled via the scheduling tasks. When doing the manufacturer specific get, I receive the "No device info info was found for manufacturer ID 010f:0200:100a. The main module can be controlled by scheduling though.
Would love some guidance if you found anything.
Thanks
Will