Replies: 2 comments
-
Have you tried running it via systemd? |
Beta Was this translation helpful? Give feedback.
0 replies
-
was not on my radar (due to lack of knowledge...). I configured it using the service file you provided and it works right now - will check after 24 hours |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I managed to install ism7mqtt and via node-red and influxdb I present the data in grafana dashboards. Very cool.
The connectivity of the ism7 module is not very stable - various problems reported in forums, but not really resolved. Sometimes it happens every few minutes, sometimes it works for hours. The connectivity also impacts ism7mqtt. The program terminates if while it is running the ism7 connection falls down. This means you have to restart ism7mqtt - on my Raspberry I run a script with a simple loop:
while true
do
ism7mqtt ... parameters ...
sleep 30
enddo
This works in principle however when ism7 connectivity is down, ism7mqtt starts again it aborts if connectivity is still missing. The aborts lets my script ending as well.
From my view it would be great if there would be some kind of lost-connectivity-tolerance in ism7mqtt - if connection is lost it just tries again, but would not end or even abort. The behaviour could also by managed via a command line parameter.
Anyone experiencing the same problem? How did you resolve it?
Beta Was this translation helpful? Give feedback.
All reactions