@Maciej-Kulawik
I found it as 'Scene' switch but this example send only V_SCENE_ON the first time (the switch is still ON later)
Michal Mormon
@Michal Mormon
2
Reputation
4
Posts
351
Profile views
0
Followers
0
Following
Best posts made by Michal Mormon
-
RE: How To: Make a Simple/Cheap Scene Controller (with video)
-
RE: How To: Make a Simple/Cheap Scene Controller (with video)
I added 2 lines and works perfect with Domoticz:
MyMessage scene(KEYPAD_CHILD_ID, V_SCENE_ON);
MyMessage scene2(KEYPAD_CHILD_ID, V_SCENE_OFF); //added linegw.send(scene.set(keyInt));
gw.send(scene2.set(keyInt)); //added line
Latest posts made by Michal Mormon
-
RE: How To: Make a Simple/Cheap Scene Controller (with video)
I added 2 lines and works perfect with Domoticz:
MyMessage scene(KEYPAD_CHILD_ID, V_SCENE_ON);
MyMessage scene2(KEYPAD_CHILD_ID, V_SCENE_OFF); //added linegw.send(scene.set(keyInt));
gw.send(scene2.set(keyInt)); //added line -
RE: How To: Make a Simple/Cheap Scene Controller (with video)
@Maciej-Kulawik
I found it as 'Scene' switch but this example send only V_SCENE_ON the first time (the switch is still ON later) -
RE: How To: Make a Simple/Cheap Scene Controller (with video)
My domoticz found S_SCENE_CONTROLLER sensor but there is not any devices for such a hardware. Do you know how can I control scene with it?