Search found 99 matches

by besix
Wednesday 13 July 2022 8:11
Forum: Design, usability and languages
Topic: machinon theme
Replies: 712
Views: 158256

Re: machinon theme

Thank you for your response . I have an identical DELL Wyse 5060 environment. Ubuntu 20.04
by besix
Tuesday 12 July 2022 9:46
Forum: Cameras
Topic: Enable lights by motion detection camera
Replies: 2
Views: 2664

Re: Enable lights by motion detection camera

This is a bad idea because the motion detection in the camera is not as good as the PIR sensor.
At night, the insects will turn on the lights every now and then
by besix
Tuesday 12 July 2022 9:25
Forum: Design, usability and languages
Topic: machinon theme
Replies: 712
Views: 158256

Re: machinon theme

Does anyone use this theme successfully in the latest domoticz beta versions? With Version: 2022.1 (build 14318) everything works. Later versions of the website are always unavailable after a few seconds, despite the fact that domoticz works Clearing the cache. Installing the theme from the ...
by besix
Tuesday 12 July 2022 9:18
Forum: Heating/cooling
Topic: IR control split
Replies: 2
Views: 584

Re: IR control split

I think Tasmota will meet your needs. It works for me with two air conditioners
https://tasmota.github.io/docs/IR-Remote/
by besix
Monday 16 May 2022 20:20
Forum: dzVents
Topic: two motion sensors together to active notification - solved [Solved]
Replies: 16
Views: 2604

Re: two motion sensors together to active notification [Solved]

Your mistake is activating notifications for each switch. You need to add a notification in the script, or add a third virtual switch that will turn on when the first two are ON Then the third switch may have an active notification DM1 = no notifications DM2 = no notifications DM3 = notification but ...
by besix
Sunday 03 April 2022 19:24
Forum: Dashticz
Topic: Dashticz v3.9.3 beta
Replies: 16
Views: 2238

Re: Dashticz v3.9.3 beta

You can change the default 10% to a different value. Use steps in the block definition. Example for 20%

Code: Select all

blocks[161] = {title: 'Roleta',
 type:'dial',
 subtype: 'updown',
 steps: 20,
 inverted: false,
 width:6}
by besix
Friday 01 April 2022 9:33
Forum: Dashticz
Topic: Dashticz Dial and gotoslide
Replies: 0
Views: 261

Dashticz Dial and gotoslide

Hello
Domoticz version last stable dashticz last beta.
Dial does not work gotoslide and gotoslideOn, gotoslideOff.
Does anyone know why?
by besix
Thursday 27 January 2022 19:46
Forum: MQTT Auto Discovery
Topic: MQTT Audo-discovery
Replies: 107
Views: 26536

Re: MQTT Audo-discovery

Thank you, it was a good direction.
Additionally, restart mosqutto after removing retained messages
by besix
Thursday 27 January 2022 15:23
Forum: MQTT Auto Discovery
Topic: MQTT Audo-discovery
Replies: 107
Views: 26536

Re: MQTT Audo-discovery

Hello, adding devices works perfectly for me domoticz ver beta (build 14112). I have a question where the plug stores information about the device? I want to remove the sonoff r3 module from tasmota, after disconnecting the module and removing all devices, for this sonoff after updating the ...
by besix
Thursday 06 January 2022 9:07
Forum: Temperature and Weather
Topic: NodeMcu with tasmota and two sensor DHT22
Replies: 7
Views: 2130

Re: NodeMcu with tasmota and two sensor DHT22

I do not have AM 2301 because it is not suitable for the outdoors. You must use the rules in tasmota. Run console and insert Rule ON tele-AM2301-14#temperature DO var1 %value% ENDON ON tele-AM2301-14#humidity DO publish domoticz/in {"idx":2,"svalue":"%var1%;%value%;1"} ENDON Then turn on the rule ...
by besix
Saturday 01 January 2022 22:16
Forum: dzVents
Topic: switch and sensor combination [Solved]
Replies: 23
Views: 8049

Re: switch and sensor combination [Solved]

Change

Code: Select all

if item == motion then
to this form

Code: Select all

if item == motion and dz.time.matchesRule('between 15 minutes after sunset and 3 minutes before sunrise') then
by besix
Wednesday 29 December 2021 11:49
Forum: Dashticz
Topic: Dashticz - v3.8.9 beta
Replies: 16
Views: 2187

Re: Dashticz - v3.8.9 beta

Perfectly
Thank you very much
by besix
Wednesday 29 December 2021 9:33
Forum: Dashticz
Topic: Dashticz - v3.8.9 beta
Replies: 16
Views: 2187

Re: Dashticz - v3.8.9 beta

Welcome I want to add the "usage" value from such a device to a regular switch Json "AddjMulti" : 1.0, "AddjMulti2" : 1.0, "AddjValue" : 0.0, "AddjValue2" : 0.0, "BatteryLevel" : 255, "CounterToday" : "0 kWh", "CustomImage" : 0, "Data" : "0.020 kWh", "Description" : "", "EnergyMeterMode" : "0 ...
by besix
Wednesday 10 November 2021 23:32
Forum: Blockly
Topic: Simple event not working
Replies: 6
Views: 1064

Re: Simple event not working

Nothing weird here. Time format. It must be in 5 minutes, not 00:05 because it's been 5 minutes past midnight
by besix
Thursday 04 November 2021 11:27
Forum: dzVents
Topic: Stop sending notifications
Replies: 24
Views: 2714

Re: Stop sending notifications

Welcome As the distance sensor reports every 30 seconds, it is better to use the timer, e.g. every 2 minutes. Then the script will not be triggered every 30 seconds. The whole thing might look like this return { on = { timer = {'every 2 minutes'}, }, logging = { level = domoticz.LOG_DEBUG, marker ...
by besix
Saturday 02 October 2021 17:47
Forum: dzVents
Topic: thermostat [Solved]
Replies: 13
Views: 2089

Re: thermostat [Solved]

I think it will help return { on = {timer = {'at 8:00', 'every 3 minutes between 9:30 and 23:00', 'at 23:01' } }, logging = { level = domoticz.LOG_DEBUG }, execute = function(dz, item) if item.isTimer then if dz.time.matchesRule('at 8:00') then dz.devices('SetPoint').updateSetPoint(24) end if dz ...
by besix
Saturday 02 October 2021 9:47
Forum: dzVents
Topic: thermostat [Solved]
Replies: 13
Views: 2089

Re: thermostat [Solved]

return { on = { timer = {'every minute'}, -- causes the script to be called every minute }, logging = { level = domoticz.LOG_DEBUG }, execute = function(domoticz,item) if (item.isTimer) then domoticz.devices('SetPoint').updateSetPoint(26) end end } Rename SetPoint to your thermostat and check
by besix
Saturday 02 October 2021 8:29
Forum: dzVents
Topic: thermostat [Solved]
Replies: 13
Views: 2089

Re: thermostat [Solved]

Change

Code: Select all

if (item.isTimer) then domoticz.devices(3).SetPoint= 26
to

Code: Select all

if (item.isTimer) then domoticz.devices(3).updateSetPoint(26)
by besix
Sunday 12 September 2021 21:05
Forum: Third party and supplementary tools
Topic: access without static ip?
Replies: 4
Views: 3220

Re: access without static ip?

It's simple, see the video or the tutorial
https://www.youtube.com/watch?v=lFmeF5xoAPI
https://pimylifeup.com/raspberry-pi-zerotier/

You don't need to open any ports.
Your Raspberry server can talk to any phone or computer that has a zerotier application and belongs to a private network.
It is safe
by besix
Sunday 12 September 2021 14:13
Forum: Third party and supplementary tools
Topic: access without static ip?
Replies: 4
Views: 3220

Re: access without static ip?

https://www.zerotier.com/

ZeroTier combines the capabilities of VPN and SD-WAN, simplifying network management.
It's free and it works great for me