more G-Labs products

Author Topic: Trouble with MultiChannel ZWave Module, switching State Programmatically in r512  (Read 731 times)

January 17, 2016, 10:35:59 PM
Read 731 times

matthieu

  • *
  • Information
  • Newbie
  • Posts: 1
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

May 12, 2016, 01:14:23 PM
Reply #1

willsmit

  • *
  • Information
  • Newbie
  • Posts: 2
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