Search found 128 matches
- Saturday 08 January 2022 18:45
- Forum: Temperature and Weather
- Topic: NodeMcu with tasmota and two sensor DHT22
- Replies: 7
- Views: 2022
Re: NodeMcu with tasmota and two sensor DHT22
Hopefully you are not on bullseye because many plugins don't work
- Wednesday 15 December 2021 11:47
- Forum: Other questions and discussions
- Topic: Assign Shelly dimmer 2 via mqtt not using plugin (Bullseye)
- Replies: 1
- Views: 552
Assign Shelly dimmer 2 via mqtt not using plugin (Bullseye)
I'm completely new to the mqtt stuff.
I looked everywhere and couldn't find something like a step by step howto how to assign a dimmmer 2 to domoticz.
I tried with node-red as well unfortunately my understanding is not sufficient.
I looked everywhere and couldn't find something like a step by step howto how to assign a dimmmer 2 to domoticz.
I tried with node-red as well unfortunately my understanding is not sufficient.
Re: Logging
Yet, -like the OP- I don't understand how to make the logging show or not show. It seems it doesn't make any difference what I specify in this logging section nor in the settings. It must be me not understanding it, but I can not get the settings so that by default dzvents scripts only show error ...
Re: Logging
no, but the reason has been, I tried to log a nil value and that prevented the logging of the other values
Removing logging the line with the nil value and everything was ok without defining the log level.
Anyway thanks for your input
Re: Logging
I tried and it didn't hurt at allwaltervl wrote: ↑Monday 13 September 2021 11:59Will never hurt to try and find out...jkimmel wrote: ↑Monday 13 September 2021 11:21No I don't have. Should I?EddyG wrote: ↑Sunday 12 September 2021 20:27 Do you have code like below at the beginning of the script, and is that code correct?Code: Select all
logging = { level = domoticz.LOG_INFO, -- level = domoticz.LOG_DEBUG, },
![]()

- Monday 13 September 2021 12:47
- Forum: dzVents
- Topic: Looking for dewpoint
- Replies: 9
- Views: 1301
Re: Looking for dewpoint
As you can see above the local variable dewpoint is defined as
Code: Select all
local dewpoint = dz.devices(TEMPERATURE_SENSOR).dewPoint
- Monday 13 September 2021 12:01
- Forum: dzVents
- Topic: Looking for dewpoint
- Replies: 9
- Views: 1301
Re: Looking for dewpoint
Both on a temphum and a temperture, humidity, barometer device the property dewPoint is available ( https://www.domoticz.com/wiki/DzVents:_next_generation_Lua_scripting , then search for dewpoint) If you've got a separate temperature and relative humidity value, you can theoretically calculate the ...
Re: Logging
No I don't have. Should I?EddyG wrote: ↑Sunday 12 September 2021 20:27 Do you have code like below at the beginning of the script, and is that code correct?Code: Select all
logging = { level = domoticz.LOG_INFO, -- level = domoticz.LOG_DEBUG, },
Logging
This is part of a working script if LOGGING then dz.log('Current temperature: ' .. temperature, dz.LOG_INFO) dz.log('Setpoint: ' .. tostring(setpoint), dz.LOG_INFO) dz.log('Current boiler state: ' .. boilerState, dz.LOG_INFO) end Despite local LOGGING = true and Domoticz settings: Errors + minimal ...
- Saturday 11 September 2021 19:25
- Forum: dzVents
- Topic: Looking for dewpoint
- Replies: 9
- Views: 1301
Re: Looking for dewpoint
Sorry, you are right. But I was looking for using the dewpoint in a dzVents Script, that's the reason. Sorry again.
- Saturday 11 September 2021 15:48
- Forum: dzVents
- Topic: Looking for dewpoint
- Replies: 9
- Views: 1301
Looking for dewpoint
I'm not sure whether my temperature sensor provides a dewpoint.
How could I check this?
How could I check this?
- Friday 28 May 2021 11:22
- Forum: Other questions and discussions
- Topic: default mosquitto.conf
- Replies: 6
- Views: 1664
Re: default mosquitto.conf
@FireWizard
Thank you for your efforts. I misplaced the mosquitto.conf. So problem solved.
Thank you for your efforts. I misplaced the mosquitto.conf. So problem solved.
- Thursday 27 May 2021 10:59
- Forum: Other questions and discussions
- Topic: default mosquitto.conf
- Replies: 6
- Views: 1664
Re: default mosquitto.conf
My version is 2.*
yes, I had pwd protection.
yes, I had pwd protection.
- Wednesday 26 May 2021 19:49
- Forum: Other questions and discussions
- Topic: default mosquitto.conf
- Replies: 6
- Views: 1664
default mosquitto.conf
I upgraded Buster on my Raspi and obviously missed something when asked about the mosquitto.conf.
Result there is no more mosquitto.conf.
Please someone provides me with a essential mosquitto.conf
Result there is no more mosquitto.conf.
Please someone provides me with a essential mosquitto.conf
- Tuesday 30 March 2021 17:48
- Forum: Python
- Topic: Python Plugin: Tasmoticz - Autodiscovery of Tasmota Devices
- Replies: 15
- Views: 8048
Re: Python Plugin: Tasmoticz - Autodiscovery of Tasmota Devices
I flashed my Shelly Dimmer 2 with Tasmota 9.3.1 and let Tasmoticz discover it.
It was discovered but only as switch and not as dimmer.
Is there anything in the Tasmota configuration I have possibly missed?
It was discovered but only as switch and not as dimmer.
Is there anything in the Tasmota configuration I have possibly missed?
- Saturday 03 October 2020 13:16
- Forum: dzVents
- Topic: Creating event [Solved]
- Replies: 1
- Views: 549
Creating event [Solved]
My heating scripts don't work anymore (winter is coming so I checked)
When checking the scripts on Settings >>> other options >>> events I see some new colors of of the on/off buttons.
What is the meaning of those colors?
When checking the scripts on Settings >>> other options >>> events I see some new colors of of the on/off buttons.
What is the meaning of those colors?
- Saturday 30 May 2020 10:47
- Forum: Blockly
- Topic: Why does one script not work while they are almost exactly the same??
- Replies: 6
- Views: 1040
Re: Why does one script not work while they are almost exactly the same??
Try
I was a bit late
because time after sunset is > 05:00I was a bit late

- Saturday 16 May 2020 11:58
- Forum: dzVents
- Topic: Syntax examples wiki [Solved]
- Replies: 1
- Views: 1364
Syntax examples wiki [Solved]
return { on = { devices = { 'myDetector', 'roomTemp' } }, execute = function(domoticz, device) if ((device.name == 'myDetector' and device.active) or (device.name == 'roomTemp' and device.temperature >= 45)) then domoticz.notify('Fire', 'The room is on fire', domoticz.PRIORITY_EMERGENCY) end end ...
- Saturday 16 May 2020 11:42
- Forum: dzVents
- Topic: Order On section [Solved]
- Replies: 1
- Views: 1235
Order On section [Solved]
Does it make a difference whether I have timer first and then devices or vice versa?
Re: Syntax [Solved]
I understand, my wording was wrong.