Search found 12 matches

by smartypantsuk
Monday 08 May 2023 11:28
Forum: dzVents
Topic: rawData cutting off value [Solved]
Replies: 8
Views: 588

Re: rawData cutting off value [Solved]

You are welcome. Still wondering why you are doing this as you seem to want to split the again. And dzvents already does this splitting for you. When any of the three values change, I send the updated values to home assistant. Being able to monitor a single string for changes is easier and simpler ...
by smartypantsuk
Sunday 07 May 2023 22:16
Forum: dzVents
Topic: rawData cutting off value [Solved]
Replies: 8
Views: 588

Re: rawData cutting off value [Solved]

Check the dzvents documentation and then the general devices part https://www.domoticz.com/wiki/DzVents:_next_generation_Lua_scripting#Device_attributes_and_methods_for_all_devices To use example: svaluedata = domoticz.devices('your device').sValue That actually provides what I need. It reads as a ...
by smartypantsuk
Sunday 07 May 2023 18:19
Forum: dzVents
Topic: rawData cutting off value [Solved]
Replies: 8
Views: 588

Re: rawData cutting off value [Solved]

waltervl wrote: Sunday 07 May 2023 14:08 Did you try .sValue ?
No I don't know what that is
by smartypantsuk
Sunday 07 May 2023 13:11
Forum: dzVents
Topic: rawData cutting off value [Solved]
Replies: 8
Views: 588

Re: rawData cutting off value [Solved]

In this instance I'm trying to pull the whole value of the Data key which is in rawData. I am using evohome but it's not specific to evohome. I
by smartypantsuk
Sunday 07 May 2023 11:02
Forum: dzVents
Topic: rawData cutting off value [Solved]
Replies: 8
Views: 588

rawData cutting off value [Solved]

Hi, I'm trying to get the full value of rawData which should be something like "19.0 C, (5.0 C), HeatingOff" but it's only giving "19.0" and missing the rest off. Is that because it's an array or lookup table that needs to be processed differently? How can I fetch the whole value as a string or ...
by smartypantsuk
Thursday 10 February 2022 17:31
Forum: Suggestions
Topic: Option to change Evohome update frequency
Replies: 3
Views: 1416

Re: Option to change Evohome update frequency

Looking at my logs, I'm actually not sure why all the logging.
The temperature changes don't seem to coincide with the log updates, so I'm not sure why the logs are so constant.
The temperature devices are pushing updates of 0.1 degree changes though, so that is way too small and completely pointless.
by smartypantsuk
Thursday 10 February 2022 17:28
Forum: Suggestions
Topic: Option to change Evohome update frequency
Replies: 3
Views: 1416

Option to change Evohome update frequency

I am using the Evohome with a HGI80 and the update frequency of the temperature devices is constant and bombards the system because of 0.1+ degree changes in temperature. This means that any scripts which trigger on device changes are constantly firing, like multiple times a minute. Multiply that by ...
by smartypantsuk
Monday 07 February 2022 15:11
Forum: Heating/cooling
Topic: Can Domoticz control Honeywell Hometronic?
Replies: 1
Views: 572

Re: Can Domoticz control Honeywell Hometronic?

Hey,

I've no idea, but as the HGI80 is used on both systems, one would think that the protocols etc could very well be the same.
Why don't you just give it a go, you haven't anything to lose.
by smartypantsuk
Sunday 06 February 2022 15:37
Forum: Evohome
Topic: Evohome constant chatter in logs and multiple event triggers
Replies: 0
Views: 2108

Evohome constant chatter in logs and multiple event triggers

Hi, Just got my Evohome (latest version with WiFi) working with the HGI80, well, it's actually the HGS80 but seems to work the same. Anyway, I've noticed that for all the radiator valves I've imported, there is constant chatter in the logs. Whenever this happens, it seems to fire the events which I ...
by smartypantsuk
Friday 21 January 2022 21:36
Forum: dzVents
Topic: How to script an Authorization header for OpenUrl
Replies: 4
Views: 1939

Re: How to script an Authorization header for OpenUrl

For the record, when I went back to this script later today it was working properly. I have no reason why it decided to now work, but it has, so for reference, this works for me when base64 encoding is required for user:pass in the header. domoticz.openURL ( { url = 'http://x.x.x.x:xx/JSON?request ...
by smartypantsuk
Friday 21 January 2022 18:42
Forum: dzVents
Topic: How to script an Authorization header for OpenUrl
Replies: 4
Views: 1939

Re: How to script an Authorization header for OpenUrl

Solution 1 : You have a login/password for your external URL ? You can write them like this : domoticz.openURL('http://username:[email protected]/path/to/something?withparameters=1') Solution 2 : write your CURL command in a shell script and execute it with dzventz " search "Asynchronous shell ...
by smartypantsuk
Friday 21 January 2022 17:10
Forum: dzVents
Topic: How to script an Authorization header for OpenUrl
Replies: 4
Views: 1939

How to script an Authorization header for OpenUrl

Hi, Excuse my noobness, I'm very new to Domoticz and very new to Lua/Dzvents. I have a dummy switch in Domoticz that I use as a boost heating button. When it is 'On', a script updates a setpoint for 15 minutes on my Evohome. When the button is 'Off', it effectively cancels the override by returning ...