Search found 266 matches

by piet66
31 May 2023 10:41
Forum: Discussions in English
Topic: MxMQTT Subscriber from piet66 | Control a switch
Replies: 12
Views: 2877

Re: MxMQTT Subscriber from piet66 | Control a switch

Hi, I don't think, that this behavior has anything to do with the latest version. I have changed only a little thing and this version is running on my system since months without problems. I tried to reproduce this on my system, but I didn't succeed. It looks like it's a problem with the TCP socket....
by piet66
30 May 2023 23:46
Forum: Diskussion in Deutsch
Topic: Stromzähler / PV auslesen / Powerfox
Replies: 14
Views: 21813

Re: Stromzähler / PV auslesen / Powerfox

Eigentlich haben alle Dateien die notwendigen Rechte. Zumindest, wenn du die zip-Datei runterlädst und auf dem Raspi entpackst. Du startest du die Skripte doch als user pi, nicht mit sudo? Unter root habe ich sie nicht getestet. Nimm aus 00_install_read_LOGAREX.bash die Zeile 33 (umask) raus und las...
by piet66
30 May 2023 16:40
Forum: Discussions in English
Topic: MxMQTT Subscriber from piet66 | Control a switch
Replies: 12
Views: 2877

Re: MxMQTT Subscriber from piet66 | Control a switch

Hi,
sorry that there are still issues in the program. But unfortunately, it has become quite complex. :cry:

I can fix the bug on this line, even if I don't know the original cause.

Do you have any clue as to why? Are there more message after these?
by piet66
26 May 2023 15:08
Forum: Diskussion in Deutsch
Topic: Stromzähler / PV auslesen / Powerfox
Replies: 14
Views: 21813

Re: Stromzähler / PV auslesen / Powerfox

Ich habe jetzt das Ganze überarbeitet. Es funktioniert nun auch ohne die Datenbankteile rauszuwerfen.
Übernimm alle Dateien mit Version >=V3.0.0 und trage in settings deine Parameter ein. Dann sollte es schon gehen.
by piet66
25 May 2023 18:57
Forum: Diskussion in Deutsch
Topic: Stromzähler / PV auslesen / Powerfox
Replies: 14
Views: 21813

Re: Stromzähler / PV auslesen / Powerfox

Ich sehe schon, für einen Linux Neuling ist das ziemlich schwierig. 11_get_procid.bash startet man im Zielverzeichnis mit ./11_get_procid.bash. Das Script zeigt das kill-Kommando und das Start-Kommando an, die du dann ausführen kannst. Vor jedem neuen Test solltest du mit 'killall -i -g read_LOGAREX...
by piet66
24 May 2023 17:33
Forum: Diskussion in Deutsch
Topic: Stromzähler / PV auslesen / Powerfox
Replies: 14
Views: 21813

Re: Stromzähler / PV auslesen / Powerfox

Mit dem curl Kommando kannst du jedes beliebiges virtuelles ZWay Gerät ansteuern und beschreiben. Siehe ZAutomation API im ZWay Manual. Du musst in ZWay für jedes Datum (Zählerstand, aktueller Verbrauch, Einspeisung, ...), dass du auslesen und weitergeben willst, ein solches Gerät erstellen, zweckmä...
by piet66
18 May 2023 10:27
Forum: Diskussion in Deutsch
Topic: Stromzähler / PV auslesen / Powerfox
Replies: 14
Views: 21813

Re: Stromzähler / PV auslesen / Powerfox

Du willst den Stromzähler per Optokoppler auslesen? Da gibt es außer Powerfox noch andere Anbieter, z.B. Weidmann Emlog, Klax, IR-Lesekopf für Smart Meter mit Tasmota-Firmware, .... Wenn dein Zähler DIN EN 62056-21 spricht (mit zeichenweiser Ausgabe), geht es auch ganz einfach: Auslesen per bash Skr...
by piet66
13 May 2023 09:38
Forum: Discussions in English
Topic: Cannot start Z-Wave binding: Error: Bad data - communication failed
Replies: 10
Views: 2779

Re: Cannot start Z-Wave binding: Error: Bad data - communication failed

Amazon.de offers only the Razberry 7 Pro with US frequency.
When will the version with EU frequency be available?
by piet66
15 Mar 2023 14:37
Forum: Discussions in English
Topic: Device reset locally
Replies: 3
Views: 1429

Re: Device reset locally

From time to time I also have this effect with Qubino Double Relay Switches. They are built into the wall without an external switch. So nobody can operate them manually. I use them to control heating appliances. As it only happens every year at the beginning of the heating season after a long perio...
by piet66
15 Mar 2023 13:38
Forum: Discussions in English
Topic: HTTP request or MQTT request
Replies: 3
Views: 1362

Re: HTTP request or MQTT request

The easiest way to bring data into Zway is with an http command, for example in a script with curl: USER_PW="username:secret" URL="http://$IP:8083/ZAutomation/api/v1/devices/" curl -sS -u ${USER_PW} ${URL}${TARGET_DEVICE}/command/exact?level=${VALUE} where ${TARGET_DEVICE} is the...