Search found 19 matches

by Maciek90
Sunday 03 November 2024 18:22
Forum: Heating/cooling
Topic: OpenTherm weather dependent heating control
Replies: 17
Views: 4106

Re: OpenTherm weather dependent heating control

Unfortunately my coding skills are very poor. Maybe you are planning to create such a modification? ;)
by Maciek90
Sunday 27 October 2024 13:05
Forum: Heating/cooling
Topic: OpenTherm weather dependent heating control
Replies: 17
Views: 4106

Re: OpenTherm weather dependent heating control

One more question. Can I install this firmware on WT32-ETH01? I would prefer to have a LAN connection to my boiler instead of wifi
by Maciek90
Friday 18 October 2024 16:22
Forum: Heating/cooling
Topic: OpenTherm weather dependent heating control
Replies: 17
Views: 4106

Re: OpenTherm weather dependent heating control

Is there any way to update my esp8266 via OTA, or do i have to update via arduinoide by connecting usb cable?
by Maciek90
Friday 04 October 2024 3:32
Forum: ESP8266
Topic: Pump motor control via esp8266
Replies: 1
Views: 624

Pump motor control via esp8266

I have a circulation pump at the boiler. The pump motor is single-phase 230 V. I would like to control its rotational speed. Do you know of any device (inverter) that I can connect between the motor and ESP and I will be able to control the motor via PWM?
by Maciek90
Thursday 19 September 2024 1:54
Forum: Temperature and Weather
Topic: TX20 Wind sensor with Tasmota
Replies: 22
Views: 5452

Re: TX20 Wind sensor with Tasmota

I can't find any TX20 sales offers anywhere. Could someone write where I can buy a TX20 or possibly some equivalent sensor? It must be able to connect to ESP 8266 or ESP 32.
by Maciek90
Thursday 19 September 2024 1:37
Forum: dzVents
Topic: Script subtracting measurements from two water meters
Replies: 32
Views: 1545

Re: Script subtracting measurements from two water meters

Thank you very much for you help. It works!!!
by Maciek90
Sunday 08 September 2024 18:46
Forum: dzVents
Topic: Script subtracting measurements from two water meters
Replies: 32
Views: 1545

Re: Script subtracting measurements from two water meters

I know that. I created my test3 counter exactly as you wrote, but it shows me liters, not m3. I asked if it is possible to somehow change liters to m3 so that in each counter I have m3
by Maciek90
Saturday 07 September 2024 20:37
Forum: dzVents
Topic: Script subtracting measurements from two water meters
Replies: 32
Views: 1545

Re: Script subtracting measurements from two water meters

This doesn't help, because the RFXmeter counter is a counter selected from a list. As in the screenshot below.
by Maciek90
Thursday 05 September 2024 2:36
Forum: dzVents
Topic: Script subtracting measurements from two water meters
Replies: 32
Views: 1545

Re: Script subtracting measurements from two water meters

It seems to work (thank you very much FlyingDomotic). I have one more question. Why do I get the result in liters and not m3? Is there any way to change this?
by Maciek90
Tuesday 03 September 2024 0:43
Forum: dzVents
Topic: Script subtracting measurements from two water meters
Replies: 32
Views: 1545

Re: Script subtracting measurements from two water meters

I get logs like below and TestWater meter still shows daily usage of 0 liters. Maybe the problem is the type of meter I am using? I select from the list counter and then click edit and change the type to water 2024-09-03 00:35:51.519 dzVents: Handling events for: "Garden", value ...
by Maciek90
Monday 02 September 2024 12:12
Forum: dzVents
Topic: Script subtracting measurements from two water meters
Replies: 32
Views: 1545

Re: Script subtracting measurements from two water meters

Create a water counter, name it "Test" and ceate a dzVents script containing: Just this script or should I add something else? I get these errors in the logs when I try to do this. 2024-09-02 12:05:30.577 Error: dzVents: An error occurred when calling event handler Woda chtgpt licznik dzienny 2024 ...
by Maciek90
Sunday 01 September 2024 21:41
Forum: dzVents
Topic: Script subtracting measurements from two water meters
Replies: 32
Views: 1545

Re: Script subtracting measurements from two water meters

Sorry, there is one left parenthesis too much. Please remove the "(" before the word resultCounter. Then it should work. I did it and the logs showed something like this: 2024-09-01 21:39:31.464 dzVents: Debug: Water Counter Script: Processing device-adapter for Water: Counter device adapter 2024 ...
by Maciek90
Tuesday 27 August 2024 21:21
Forum: dzVents
Topic: Script subtracting measurements from two water meters
Replies: 32
Views: 1545

Re: Script subtracting measurements from two water meters

Did you try adding this to your code? domoticz.log('resultCounterToday: ' .. (resultCounter.counterToday, domoticz.LOG_DEBUG) domoticz.log('resultCounter : ' .. (resultCounter.counter, domoticz.LOG_DEBUG) That might give some more info. This only causes errors in the logs Please *DONT* use daily ...
by Maciek90
Monday 26 August 2024 13:40
Forum: dzVents
Topic: Script subtracting measurements from two water meters
Replies: 32
Views: 1545

Re: Script subtracting measurements from two water meters

It doesn't help. The value in the logs has been multiplied, but the counter still shows 0 I multiplied in this part of the code. Is that correct? local totalDifference = count1 - count2 local dailyDifference = dailyCount1*1000 - dailyCount2*1000 domoticz.log('Total difference: ' .. tostring ...
by Maciek90
Sunday 25 August 2024 20:04
Forum: dzVents
Topic: Script subtracting measurements from two water meters
Replies: 32
Views: 1545

Re: Script subtracting measurements from two water meters

I noticed something else strange. Sometimes the daily value of the test counter shows 1000 liters as in the graph below(Pią is last friday, Sob is last saturday). Any ideas what to correct in the script? I'm sorry, but I'm quite weak in dzVents
by Maciek90
Wednesday 21 August 2024 22:35
Forum: dzVents
Topic: Script subtracting measurements from two water meters
Replies: 32
Views: 1545

Re: Script subtracting measurements from two water meters

Log looks good, like below 2024-08-21 22:27:52.274 dzVents: Handling events for: "Garden", value: "18446744073709549768" 2024-08-21 22:27:52.274 dzVents: Water Counter Script: ------ Start internal script: Water counter: Device: "Garden (Water)", Index: 1146 2024-08-21 22:27:52.275 dzVents: Debug ...
by Maciek90
Wednesday 21 August 2024 12:56
Forum: dzVents
Topic: Script subtracting measurements from two water meters
Replies: 32
Views: 1545

Script subtracting measurements from two water meters

I have two water meters at home; one main for the whole house and garden, and a separate one just for the garden. I want to calculate the difference between the readings of the main water meter and the one for the garden. I tried to write something using ChatGPT, but it didn't quite work out well. I ...
by Maciek90
Monday 06 November 2023 19:40
Forum: PHP and all others
Topic: LG TV WebOs 3.0
Replies: 72
Views: 35519

After installing the plugin and pylgtv, I receive the following errors in the logs: 2023-11-06 19:28:57 LG TV Salon: Update 1:'(<class 'TypeError'>, TypeError("wait_for() got an unexpected keyword argument 'loop'"), <traceback object at 0x7f02136fd040>) 2023-11-06 19:28:57 )' (LG TV Salon - Status ...
by Maciek90
Friday 05 March 2021 23:52
Forum: Other questions and discussions
Topic: Where/how are tariffs defined
Replies: 21
Views: 5737

Re: Where/how are tariffs defined

I have the same problem. Can you describe how did you resolve it?