Navigation

    • Register
    • Login
    • Search
    • OpenHardware.io
    • Categories
    • Recent
    • Tags
    • Popular
    1. Home
    2. TimO
    3. Topics
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Topics created by TimO

    • TimO

      MQTT GW with RFM69 on RPi
      Troubleshooting • • TimO  

      25
      0
      Votes
      25
      Posts
      134
      Views

      Yveaux

      @joaoabs no, sorry. I didn't investigate any deeper.
    • TimO

      openHAB 2.2 binding MQTT support
      OpenHAB • • TimO  

      37
      4
      Votes
      37
      Posts
      19114
      Views

      Guillermo Schimmel

      @timo Thank you very much. I don't now how to use the marketplace, will research right now. I have followed your instructions, but you link to the 2.3.0-SNAPSHOT. Perhaps you would like to correct that. Thanks again
    • TimO

      openHAB 2.2 binding
      OpenHAB • • TimO  

      132
      3
      Votes
      132
      Posts
      58114
      Views

      Klabbe

      The 2.5-version of the binding does not work out of the box in OpenHAB 3 for me. 2020-12-22 22:53:34.555 [WARN ] [org.apache.felix.fileinstall ] - Error while starting bundle: file:/usr/share/openhab/addons/org.openhab.binding.mysensors-2.5.0-SNAPSHOT.jar org.osgi.framework.BundleException: Could not resolve module: org.openhab.binding.mysensors [272] Unresolved requirement: Import-Package: org.eclipse.smarthome.config.core at org.eclipse.osgi.container.Module.start(Module.java:444) ~[org.eclipse.osgi-3.12.100.jar:?] at org.eclipse.osgi.internal.framework.EquinoxBundle.start(EquinoxBundle.java:383) ~[org.eclipse.osgi-3.12.100.jar:?] at org.apache.felix.fileinstall.internal.DirectoryWatcher.startBundle(DirectoryWatcher.java:1260) [bundleFile:3.6.4] at org.apache.felix.fileinstall.internal.DirectoryWatcher.startBundles(DirectoryWatcher.java:1233) [bundleFile:3.6.4] at org.apache.felix.fileinstall.internal.DirectoryWatcher.doProcess(DirectoryWatcher.java:520) [bundleFile:3.6.4] at org.apache.felix.fileinstall.internal.DirectoryWatcher.process(DirectoryWatcher.java:365) [bundleFile:3.6.4] at org.apache.felix.fileinstall.internal.DirectoryWatcher.run(DirectoryWatcher.java:316) [bundleFile:3.6.4] I guess it might have something to do with this? https://community.openhab.org/t/guide-binding-development-changes-for-openhab-3-from-2-5-x/104134 Namespace change of openHAB core classes With the migration of Eclipse Smart Home to openHAB the namespace of all classes in openHAB core needed to be changed. This means all imports done by bindings that refer to org.eclipse.smarthome have been changed to org.openhab.core. With your binding code you can simply do a file level replace of this text string in the java source files to migrate the binding. On linux you can use the following commands in you src/main/java directory: find . -name *.java -exec sed -i "s/org.eclipse.smarthome.core/org.openhab.core/g" {} ; find . -name *.java -exec sed -i "s/org.eclipse.smarthome/org.openhab.core/g" {} ;
    • TimO

      Level Shifter for RFM69
      Hardware • rfm69 • • TimO  

      7
      1
      Votes
      7
      Posts
      3256
      Views

      TimO

      Amazing! Thank you @AWI!
    • TimO

      openHAB 2.0 binding
      OpenHAB • • TimO  

      534
      11
      Votes
      534
      Posts
      479456
      Views

      รอเรือ

      I get this in my log sometimes: [WARN ] [.discovery.MySensorsDiscoveryService] - Cannot automatic discover thing node: 0, child: 255 please insert it manually I use MySensors Binding 2.3.0.201801160936 on a serial gateway with mysensors 2.2.0 Where shall I insert the thing node and what should it look like?
    • TimO

      [Tutorial] openHAB with serial gateway
      OpenHAB • • TimO  

      78
      7
      Votes
      78
      Posts
      76231
      Views

      HenryWhite

      @TimO Great! Thank you!
    • TimO

      Humidity / Temperature Sensor
      My Project • humidity dht22 temp • • TimO  

      11
      2
      Votes
      11
      Posts
      9380
      Views

      GizMoCuz

      I think the comment in the routine void measureBattery() { // R1 = 1MOhm, R2 = 220 kOhm Should be void measureBattery() { // R3 = 1MOhm, R2 = 220 kOhm (R3) Is it possible to add (comment out) some lines how to calculate the battery percentage and send this via gw.sendBatteryLevel (batteryPcnt) Great sketch!