Search found 11 matches

by sjoerd1953
Saturday 18 July 2020 7:43
Forum: Utility
Topic: P1 USB smart meter - Actual tariff
Replies: 11
Views: 1738

Re: P1 USB smart meter - Actual tariff

@waaren That is correct. I live in Limburg and here the change to low tariff is at 21:00
@EddyG No particular use. I was just curious if it was possible. Nice side effect is that I got introduced to dzVents by waaren. I love the way it works :D
by sjoerd1953
Friday 17 July 2020 8:31
Forum: Utility
Topic: P1 USB smart meter - Actual tariff
Replies: 11
Views: 1738

Re: P1 USB smart meter - Actual tariff

It didn't work yet. The values of highTariff and lowTariff stayed nill. I made some changes and now it seems to work: return { on = { timer = { 'every minute', }, }, logging = { level = domoticz.LOG_DEBUG, -- change to domoticz.LOG_ERROR when script is OK marker = 'tariff', }, data = { highTariff ...
by sjoerd1953
Thursday 16 July 2020 17:06
Forum: Utility
Topic: P1 USB smart meter - Actual tariff
Replies: 11
Views: 1738

Re: P1 USB smart meter - Actual tariff

Thank you waaren. At the moment I am getting High tariff as a result. Now wait until 9PM tonight to see if it changes. I am not sure yet why it works but I will figure that out the next few hours :D .
by sjoerd1953
Thursday 16 July 2020 13:21
Forum: Utility
Topic: P1 USB smart meter - Actual tariff
Replies: 11
Views: 1738

Re: P1 USB smart meter - Actual tariff

Thank you for the reply. So Domoticz has no knowledge of the actual tariff. As an alternative, is possible to write a script that gets this information from the original telegram as it is sent by the smart meter and put it in a virtual sensor. I can read the the original telegram in Node-RED using ...
by sjoerd1953
Thursday 16 July 2020 12:02
Forum: Utility
Topic: P1 USB smart meter - Actual tariff
Replies: 11
Views: 1738

P1 USB smart meter - Actual tariff

I have a smart meter for a few weeks now. It is connected to a Raspberry Pi running Domoticz. Everything works fine but the only information I am missing is the actual tariff (high or low). This information is available in the telegram as item 0-0:96.14.0(0001) or 0-0:96.14.0(0002). Domoticz ...
by sjoerd1953
Saturday 09 June 2018 15:14
Forum: Bash / PowerShell / Batch etc.
Topic: Domoticz can't send to /dev/udp
Replies: 2
Views: 1906

Re: Domoticz can't send to /dev/udp

Hi DanTheManNL,

You have to make the script executable. See this post of mine:
http://www.domoticz.com/forum/viewtopic ... 21#p139821
by sjoerd1953
Sunday 16 July 2017 20:25
Forum: Android
Topic: Geofence for Domoticz
Replies: 381
Views: 112439

Re: Geofence for Domoticz

OK, thanks.
by sjoerd1953
Tuesday 11 July 2017 7:17
Forum: Android
Topic: Geofence for Domoticz
Replies: 381
Views: 112439

Re: Geofence for Domoticz

I have a question about the server address that is required in the DomoFence app. It may have been asked before, it is a long thread. If it has I apologize beforehand. At first I entered the private IP address of my Raspberry Pi (192.168.xxx.xxx:8080) and that seemed to work fine until I left my ...
by sjoerd1953
Friday 30 June 2017 12:11
Forum: Suggestions
Topic: [667] Ability to execute script:/// from Blocky
Replies: 29
Views: 17000

Re: [667] Ability to execute script:/// from Blocky

Works great with me. Thanks a lot for this improvement. A few notes: When Domoticz is running on a Raspberry Pi and you place the bash script in a seperate folder (e.g. /home/pi/domoticz/scripts/bash) then, next to making the script executable with CHMOD 755 you also have to add the folder to your ...
by sjoerd1953
Friday 30 June 2017 10:59
Forum: Others
Topic: 868mhz tranceiver
Replies: 0
Views: 618

868mhz tranceiver

I have two door sensors and two movement detectors from an old home safety system (Essent) and they all operate on the 868mhz frequency band. I have tried to find a not too expensive tranciever on internet but I always end up on the AliExpress or Bangood sites. Is there anyone with experience with ...
by sjoerd1953
Wednesday 28 June 2017 8:21
Forum: Bash / PowerShell / Batch etc.
Topic: Can someone please help explain why this script won't run in Domoticz?
Replies: 23
Views: 6084

Re: Can someone please help explain why this script won't run in Domoticz?

I suppose you have made the script executable ( chmod 755 scriptname ) but did you add the directory where it is located to your $PATH? First check this in a terminal with: echo $PATH When your directory is not listed execute this command in the terminal: sudo export PATH=$PATH: directory name (use ...