Problem is - Nothing happens, not even an error message or something. So I need to track this problem in some way. But how to do this, if/when nothing happens.
I know the binding work for others, so I fear this might be a general problem on my setup and therefore really could need some help to track this problem.
I have check with karaf console, and there is no velux binding.
openhab> bundle:list | grep velux
openhab>
I have tried downloading a fresh copy of the jar file. Still no go.
I have check the openhab.log file as well. Nothing about velux.
something is wrong with your jar
try the following:
from the rPi3 ssh shell:
sudo su
systemctl stop openhab2
cd /tmp/
wget "https://github.com/gs4711/org.openhab.binding.velux/archive/master.zip"
unzip master.zip
chown openhab:openhab org.openhab.binding.velux-master/org.openhab.binding.velux-2.3.0-SNAPSHOT.jar
cp org.openhab.binding.velux-master/org.openhab.binding.velux-2.3.0-SNAPSHOT.jar /usr/share/openhab2/addons/
systemctl start openhab2
This works only for bindings which are a part of the distributed addons (the ones that appear also in PaperUI)
For manually deployed addons, you shouldn’t add anything in the addons.cfg (only place the jar in the addons folder)
Correct, something was wrong with the jar file, both times I downloaded the jar file. I ususal just right click on the file a choose ‘save as’. It was saved as an jar file, but for some reason OpenHab wouldn´t load it. The third time I chose direct link insted. Then it all worked.