Search found 8 matches

by iMars
Sunday 02 April 2017 0:23
Forum: Others
Topic: watermeter Elster V200 PR6P:1
Replies: 74
Views: 42245

Re: watermeter Elster V200 PR6P:1

I also got this watermeter. I can't figure out which sensor is used for this. Anyone who can tell me?

Image
by iMars
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 ...
by iMars
Wednesday 27 January 2016 9:00
Forum: Suggestions
Topic: [689] Hyperion integration
Replies: 37
Views: 11046

Re: [689] Hyperion integration

deennoo wrote:Thanks for this what mean "nc" ?
Google is your friend ;)

The "|" sign pipes the output (the echo '...') to the nc command, which is used to talk to the ip of hyperion
by iMars
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 ...
by iMars
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 ...
by iMars
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 ...
by iMars
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 :idea:
by iMars
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 ...