I also got this watermeter. I can't figure out which sensor is used for this. Anyone who can tell me?
Search found 8 matches
- Sunday 02 April 2017 0:23
- Forum: Others
- Topic: watermeter Elster V200 PR6P:1
- Replies: 74
- Views: 42245
- Sunday 13 March 2016 1:08
- Forum: Design, usability and languages
- Topic: FlatZ Frontpage
- Replies: 237
- Views: 101958
Re: FlatZ Frontpage
Is it possible to use virtual switches/dimmers? I'm using a lot of esp8266 custom made hardware, which I can control through scripts. Those scripts are controlled by virtual dummy switches: Screen Shot 2016-03-13 at 01.06.59.png I've tried several different ways, yet none made it work Anyone who can ...
- Wednesday 27 January 2016 9:00
- Forum: Suggestions
- Topic: [689] Hyperion integration
- Replies: 37
- Views: 11046
- Tuesday 26 January 2016 21:04
- Forum: Suggestions
- Topic: [689] Hyperion integration
- Replies: 37
- Views: 11046
Re: [689] Hyperion integration
Got a New probleme, For fun i want some switch to load and stop effect : Base on iMars elements i made this script, no lua error but no reaction from hyperion : commandArray = {} DomDevice = 'Hyperion Arc en Ciel' --name device IP = '192.168.0.245' -- ip address hyperion Port = '19444' if ...
- Friday 22 January 2016 11:19
- Forum: Suggestions
- Topic: [689] Hyperion integration
- Replies: 37
- Views: 11046
Re: [689] Hyperion integration
Next step ? Get a "color picker" Set One Dummy dimmer for each color who write on variable is value. Set One Dummy dimmer for "lighting level" (Value variable for Hyperion remote / Level Variable for domoticz dimmer) When Moving one of the dummy color slider it send to hyperion Red Dimmer + Blue ...
- Friday 22 January 2016 7:15
- Forum: Suggestions
- Topic: [689] Hyperion integration
- Replies: 37
- Views: 11046
Re: [689] Hyperion integration
Got a solution : sending clearall when dimmer is off, freeing v4l2 led strip. Now have to know how set this on lua script Use my script, and instead of color 0,0,0 > use echo '{ "command": "clear", "priority": 100 }' | nc x.x.x.x 19444 commandArray = {} DomDevice = 'MoodLight' --name device IP = 'x ...
- Thursday 21 January 2016 15:00
- Forum: Suggestions
- Topic: [689] Hyperion integration
- Replies: 37
- Views: 11046
Re: [689] Hyperion integration
Ofcourse a full integration would be even better! Or a dummy rgb dimmer, which can pass the corrosponding hex code to a LUA script, that combining my script would make it possible to have ONE switch for all kinds of colors
- Thursday 21 January 2016 14:39
- Forum: Suggestions
- Topic: [689] Hyperion integration
- Replies: 37
- Views: 11046
Re: [689] Hyperion integration
With the following commands you can change the effect/color: echo '{ "command": "effect", "effect": {"name": "Full color mood blobs"}, "priority": 100 }' | nc x.x.x.x 19444 echo '{ "command": "clear", "priority": 100 }' | nc x.x.x.x 19444 echo '{ "command": "color", "color": [255,255,255], "priority ...