Search found 241 matches

by snellejellep
Tuesday 27 September 2022 9:38
Forum: Python
Topic: ShellyCloudPlugin
Replies: 148
Views: 31840

Re: ShellyCloudPlugin

figured it out. it was my docker install, it is not using the typical plugins folder.
so not domoticz > plugins but domoticz > userdata > plugins.
now it is working.
by snellejellep
Monday 26 September 2022 12:44
Forum: Python
Topic: ShellyCloudPlugin
Replies: 148
Views: 31840

Re: ShellyCloudPlugin

mariopeters wrote: Monday 26 September 2022 11:18 Did you check the Domoticz logging after restarting Domoticz?
If there are issues with the plugin on the startup, you should see them?
i see no errors, not even a mention of the plugin

i am using docker, maby that has something to do with it?
by snellejellep
Monday 26 September 2022 10:33
Forum: Python
Topic: ShellyCloudPlugin
Replies: 148
Views: 31840

Re: ShellyCloudPlugin

how does this work?
i installed the plugin but it does not appear in the hardware selector
am i missing something?
i followed the steps in the post of BurnoutVmax
by snellejellep
Monday 10 January 2022 14:35
Forum: Python
Topic: Python plugin: Ubiquiti Unifi Presence
Replies: 71
Views: 14225

Re: Python plugin: Ubiquiti Unifi Presence

hi, i wanted to try this, but i dont think it works. the devices i defined are created but the only log messages i see are these: 2022-01-10 14:34:28.081 Unifi: onHeartbeat: Attempting to reconnect Unifi Controller 2022-01-10 14:34:28.793 Unifi: login: Login successful into Unifi Controller the ...
by snellejellep
Friday 07 January 2022 8:14
Forum: Other questions and discussions
Topic: scd4x
Replies: 4
Views: 664

Re: scd4x

you can use an esp8266 or esp32 with tasmota.
the sensor is supported in tasmota as it is listed here on line 62: https://tasmota.github.io/docs/I2CDEVIC ... 2c-devices
by snellejellep
Thursday 06 January 2022 10:28
Forum: Other questions and discussions
Topic: Subscribe to my Vlogmoticz channel
Replies: 2
Views: 671

Re: Subscribe to my Vlogmoticz channel

nice, good to see people are making videos to help others out.
i have some tutorials too which may be helpful: https://www.youtube.com/playlist?list=P ... iyqAIR8dMA
by snellejellep
Wednesday 28 April 2021 10:57
Forum: dzVents
Topic: Script acting different after update
Replies: 3
Views: 392

Re: Script acting different after update

well, i did some further investigation regarding to the behaviour of my script i got no errors with adding a debug log rule but something else was interesting, if i add a lastUpdate to the if statement, and the trigger is the item that is checked for the lastUpdate, it ignores the lastUpdate or ...
by snellejellep
Tuesday 27 April 2021 22:46
Forum: dzVents
Topic: Script acting different after update
Replies: 3
Views: 392

Script acting different after update

Hi all, after updating to domoticz 2021.1 from 2020.1 something seems to be changed. i have the script listed below, it does the following: i have a gate, which has a dry contact relay for activating it, and a reed switch for detecting when the gate is open or closed, for when it is used with the ...
by snellejellep
Thursday 24 September 2020 15:48
Forum: dzVents
Topic: notification to one phone only [Solved]
Replies: 2
Views: 702

Re: notification to one phone only [Solved]

is it possible that it only sends a push notification to my phone only? From the dzVents wiki: "extra is notification subsystem specific. For NSS_FIREBASE you can specify the target mobile (‘midx_1’, midx_2, etc..)." ( NSS_FIREBASE and NSS_GOOGLE_CLOUD_MESSAGING ) are synonyms for the sane not ...
by snellejellep
Thursday 24 September 2020 14:06
Forum: dzVents
Topic: notification to one phone only [Solved]
Replies: 2
Views: 702

notification to one phone only [Solved]

Hi all, i want to send a notification to my phone when my 3d printer is done and use this script: return { on = { devices = { '3d printer energy' } }, execute = function(dz, device) local energy = dz.devices("3d printer energy") local notify = dz.devices("notify 3d printer") if energy.actualWatt ...
by snellejellep
Thursday 17 September 2020 18:43
Forum: Python
Topic: Python Plugin: Shelly MQTT
Replies: 504
Views: 118460

Re: Python Plugin: Shelly MQTT

Gerwin wrote: Thursday 30 July 2020 20:01 Hello,

The Shelly button is that one impemented ???
does someone knows that

Gerwin
if you mean the i3, yes it is.
just the button is a case for a shelly 1 which obviously is supported
by snellejellep
Wednesday 02 September 2020 18:58
Forum: dzVents
Topic: Rain counter
Replies: 52
Views: 9814

Re: Rain counter

I tested with below script (the reset at 0:00 is not needed as domoticz does that anyway without a script) and the upper right corner does display the total rain in mm for today BUT: if the lowest value of today in database table RAIN is > 0, the calculation in the script fails because the value of ...
by snellejellep
Wednesday 02 September 2020 18:50
Forum: dzVents
Topic: Rain counter
Replies: 52
Views: 9814

Re: Rain counter

I tested with below script (the reset at 0:00 is not needed as domoticz does that anyway without a script) and the upper right corner does display the total rain in mm for today BUT: if the lowest value of today in database table RAIN is > 0, the calculation in the script fails because the value of ...
by snellejellep
Monday 31 August 2020 20:56
Forum: dzVents
Topic: Rain counter
Replies: 52
Views: 9814

Re: Rain counter

Can you please share the script as you use it now? return { on = { timer = { "at 00:01" }, devices = { "tippingbucketrain" } }, -- Your switch device triggered by ESP bucket full logging = { level = domoticz.LOG_DEBUG, -- INFO, ERROR or DEBUG marker = "ESP test" }, -- execute = function(dz, trigger ...
by snellejellep
Monday 31 August 2020 18:58
Forum: dzVents
Topic: Rain counter
Replies: 52
Views: 9814

Re: Rain counter

The value shown on the title row of a rain device shows the latest send value minus the first value of today. So if you have send the same value it will show 0 The value will be reset to 0 at midnight. then i think i do not understand how it works. i thought the following: - the script adds the ...
by snellejellep
Monday 31 August 2020 12:44
Forum: dzVents
Topic: Rain counter
Replies: 52
Views: 9814

Re: Rain counter

i wanted to try this out for my 3d printed rainmeter but i have one issue. i have a raindevice in domoticz and a switch which switches when the bucket tips so all the same as above but now the following: i get no errors and the rain device updates but only the rain rate and not the total fallen rain ...
by snellejellep
Friday 28 August 2020 22:16
Forum: LUA
Topic: Very basic off/on with timer
Replies: 8
Views: 1083

Re: Very basic off/on with timer

you can do it in dzvents with for example <switchname>.switchOff().afterSec(5) which switches it off after 5 seconds Il look in to it, thnx this should do the trick, turning it on and off 6 times and then leaving it on at 20:00 i assumed it would be a lamp so called it that but you can fill in the ...
by snellejellep
Friday 28 August 2020 21:00
Forum: LUA
Topic: Very basic off/on with timer
Replies: 8
Views: 1083

Re: Very basic off/on with timer

you can do it in dzvents with for example <switchname>.switchOff().afterSec(5) which switches it off after 5 seconds
by snellejellep
Friday 28 August 2020 20:07
Forum: LUA
Topic: Very basic off/on with timer
Replies: 8
Views: 1083

Re: Very basic off/on with timer

does the timer function of a switch not fill your needs?
by snellejellep
Saturday 18 July 2020 21:54
Forum: dzVents
Topic: help needed: creating a wakeup light with dzvents [Solved]
Replies: 20
Views: 2650

Re: help needed: creating a wakeup light with dzvents [Solved]

it works, thanks a lot!