Hi Andreas, da ist aber richtig etwas "schief" gegangen bei der Umstellung von LGPLv3 auf LGPLv2. Vielen Dank für den Hinweis. Die LICENSE.txt enthält jetzt den richtigen Lizenztext.
Also generell ist die Lizenz von RevPiModIO ab Version 2.6.0 LGPLv2 - Diese sollte eigentlich keine Probleme verursachen. Kannst du mir bitte die genauen Stellen nennen, wo es nicht passt? Diese Stellen müssen vermutlich angepasst werden. RevPiModIO2 = LGPLv2 RevPiPyLoad = GPLv2 RevPiCommander = GPL...
An RC version for fixing the bug is now available on GitHub and as a Debian package. https://github.com/naruxde/revpimodio2/tree/fix/shared-procimg-values http://revpimodio.org/dnl/python3-revpimodio2_2.6.1~1-1_all.deb It would be nice if it could be tested. The installation of the Debian package ca...
And it's running now? Are the sections [MQTT], [XMLRPC], etc. also double in your configuration file? If so, please delete the duplicate occurrences completely. The value `plcprogram_watchdog = 1` is not good! The number is the timeout in seconds. If you activate the software watchdog, it must also ...
Hi Alex! It could really be that `shared_procimg=True` cause that problems. I just have a similar problem report with the flag on GitHub. If you do not need the `shared_procimg=True` because no other Python processes access the process image, I would ask you to remove it / set it to False. If you co...
Hi kimgama! You are using the "Memory-Values", which just define the type of your analog inputs. Just change your Code like this: # Change RTD_Value_* to AIn_* ai_value = rpi.io['AIn_1'].value / 10 ai_value2 = rpi.io['AIn_2'].value / 10 Now you get the temperature with a decimal place. Gre...