könnte Hilfe gebrauchen bei der OH2 Version und dem Piface Binding. Ich finde Seiten auf denen beschrieben wird wie das Binding manuell installiert werden kann. Ich kann dem nciht ganz folgen. Zum einen finde ich kein .jar file und wenn ich es dann doch über die Paper UI installiere dann ist es doch keine manuelle Installation?
https://github.com/openhab/openhab1-add ... 38e3fcbe07
oder
https://community.openhab.org/t/openhab ... p/13363/13
oder gibt es die Probleme in der Version: 1.13.0 gar nicht mehr?
Wenn ich es über die Paper UI installieren bekomme ich im log aber ein Fehler:
Code: Alles auswählen
2019-01-04 18:09:00.108 [ERROR] [org.apache.felix.configadmin ] - [org.osgi.service.event.EventHandler, org.osgi.service.cm.ManagedService, id=374, bundle=214/mvn:org.openhab.binding/org.openhab.binding.piface/1.13.0]: Unexpected problem updating configuration org.openhab.piface
java.lang.NumberFormatException: For input string: ""
at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) ~[?:?]
at java.lang.Integer.parseInt(Integer.java:592) ~[?:?]
at java.lang.Integer.parseInt(Integer.java:615) ~[?:?]
at org.openhab.binding.piface.internal.PifaceBinding.updated(PifaceBinding.java:409) ~[?:?]
at org.apache.felix.cm.impl.helper.ManagedServiceTracker.updated(ManagedServiceTracker.java:189) ~[9:org.apache.felix.configadmin:1.9.4]
at org.apache.felix.cm.impl.helper.ManagedServiceTracker.updateService(ManagedServiceTracker.java:152) [9:org.apache.felix.configadmin:1.9.4]
at org.apache.felix.cm.impl.helper.ManagedServiceTracker.provideConfiguration(ManagedServiceTracker.java:85) [9:org.apache.felix.configadmin:1.9.4]
at org.apache.felix.cm.impl.ConfigurationManager$ManagedServiceUpdate.provide(ConfigurationManager.java:1102) [9:org.apache.felix.configadmin:1.9.4]
at org.apache.felix.cm.impl.ConfigurationManager$ManagedServiceUpdate.run(ConfigurationManager.java:1058) [9:org.apache.felix.configadmin:1.9.4]
at org.apache.felix.cm.impl.UpdateThread.run0(UpdateThread.java:138) [9:org.apache.felix.configadmin:1.9.4]
at org.apache.felix.cm.impl.UpdateThread.run(UpdateThread.java:105) [9:org.apache.felix.configadmin:1.9.4]
at java.lang.Thread.run(Thread.java:748) [?:?]
1. Create an SD card with the Raspberry Pi Wheezy image.
2. Boot the Pi and run the setup (this will probably require a reboot)
sudo raspi-config
sudo apt-get update
sudo apt-get upgrade
sudo apt-get autoremove
3. Comment out the spi module blacklist line in /etc/modprobe.d/raspi-blacklist.conf
sudo nano /etc/modprobe.d/raspi-blacklist.conf
4. Install python and git
sudo apt-get install python-dev python-gtk2-dev git
5. Get the PiFace libraries
git clone https://github.com/thomasmacpherson/piface.git
6. Install the PiFace libraries
cd ~/piface/python/
sudo python setup.py install
7. Give the 'pi' user privileges to access the PiFace board
cd ~/
sudo ./piface/scripts/spidev-setup
8. Copy the openHAB PiFace scripts
copy ohpiface.conf -> /home/pi
copy ohpiface.py -> /home/pi
copy ohpiface -> /etc/init.d/
9. Configure the scripts
chmod +x /home/pi/ohpiface.py
sudo chown root:root /etc/init.d/ohpiface
sudo chmod +x /etc/init.d/ohpiface
sudo update-rc.d ohpiface defaults
10. Reboot
sudo reboot
aber woher bekomme ich das .jar file?
Danke für eure Hilfe...