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