Skip to content
  • OpenHardware.io
  • Categories
  • Recent
  • Tags
  • Popular
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo
  1. Home
  2. Controllers
  3. OpenHAB
  4. openHAB 2.0 binding
  • Getting Started
  • Controller
  • Build
  • Hardware
  • Download/API
  • Forum
  • Store

openHAB 2.0 binding

Scheduled Pinned Locked Moved OpenHAB
534 Posts 88 Posters 479.5k Views 99 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • T TimO

    @Jic Do you have a corresponding log for me?

    My last update value only updates if a update is received. If I don't get an update for hours the last update variable won't change.

    Maybe you receive a not tripped from the motion sensor? That will update the last update variable.

    JicJ Offline
    JicJ Offline
    Jic
    wrote on last edited by
    #327

    @TimO ok, I have discovered that my "tail" command doesn't work rigth, sorry

    My logs are

    2016-12-01 23:02:53.990 [DEBUG] [rs.internal.protocol.MySensorsReader] - 10;255;3;0;22;100788
    2016-12-01 23:07:05.190 [DEBUG] [rs.internal.protocol.MySensorsReader] - 10;255;3;0;21;0
    2016-12-01 23:17:05.248 [DEBUG] [rs.internal.protocol.MySensorsReader] - 10;255;3;0;21;0
    2016-12-01 23:27:05.326 [DEBUG] [rs.internal.protocol.MySensorsReader] - 10;255;3;0;21;0
    2016-12-01 23:37:05.409 [DEBUG] [rs.internal.protocol.MySensorsReader] - 10;255;3;0;21;0
    2016-12-01 23:47:05.486 [DEBUG] [rs.internal.protocol.MySensorsReader] - 10;255;3;0;21;0
    2016-12-01 23:57:05.562 [DEBUG] [rs.internal.protocol.MySensorsReader] - 10;255;3;0;21;0
    2016-12-02 00:07:05.639 [DEBUG] [rs.internal.protocol.MySensorsReader] - 10;255;3;0;21;0
    

    I don't understand why am I reciving this message?

    T 1 Reply Last reply
    0
    • JicJ Jic

      @TimO ok, I have discovered that my "tail" command doesn't work rigth, sorry

      My logs are

      2016-12-01 23:02:53.990 [DEBUG] [rs.internal.protocol.MySensorsReader] - 10;255;3;0;22;100788
      2016-12-01 23:07:05.190 [DEBUG] [rs.internal.protocol.MySensorsReader] - 10;255;3;0;21;0
      2016-12-01 23:17:05.248 [DEBUG] [rs.internal.protocol.MySensorsReader] - 10;255;3;0;21;0
      2016-12-01 23:27:05.326 [DEBUG] [rs.internal.protocol.MySensorsReader] - 10;255;3;0;21;0
      2016-12-01 23:37:05.409 [DEBUG] [rs.internal.protocol.MySensorsReader] - 10;255;3;0;21;0
      2016-12-01 23:47:05.486 [DEBUG] [rs.internal.protocol.MySensorsReader] - 10;255;3;0;21;0
      2016-12-01 23:57:05.562 [DEBUG] [rs.internal.protocol.MySensorsReader] - 10;255;3;0;21;0
      2016-12-02 00:07:05.639 [DEBUG] [rs.internal.protocol.MySensorsReader] - 10;255;3;0;21;0
      

      I don't understand why am I reciving this message?

      T Offline
      T Offline
      TimO
      Hero Member
      wrote on last edited by
      #328

      @Jic According to the serial API this is a I_DISCOVER_RESPONSE, but why is it sent? This seeems to update the lastUpdate channel.

      I see it this way: "lastUpdate" is the last time the node has sent something, so everything is working as expected. :D

      JicJ 1 Reply Last reply
      0
      • T TimO

        @Jic According to the serial API this is a I_DISCOVER_RESPONSE, but why is it sent? This seeems to update the lastUpdate channel.

        I see it this way: "lastUpdate" is the last time the node has sent something, so everything is working as expected. :D

        JicJ Offline
        JicJ Offline
        Jic
        wrote on last edited by
        #329

        @TimO

        Thanks. I don't know why is it sending a I_DISCOVER_RESPONSE message. Any Idea?

        T 1 Reply Last reply
        0
        • JicJ Jic

          @TimO

          Thanks. I don't know why is it sending a I_DISCOVER_RESPONSE message. Any Idea?

          T Offline
          T Offline
          TimO
          Hero Member
          wrote on last edited by
          #330

          @Jic No sorry, I've no idea. :-/

          1 Reply Last reply
          0
          • T TimO

            @bentrik said:

            I managed to find an addons directory in /usr/share/openhab2/addons, but I can´t find a way to copy the .jar file there, as I get permission denied both through WinSCP in sudo mode and terminal ssh. The folder has permission 0775.

            That is the correct directory if you installed OH2 via .deb. Seems like you are using a user in WinSCP that is not allowed to write to the directory above. To circumvent this:

            1. Copy the binding jar to /tmp.
            2. Login via ssh and execute:
            sudo cp /tmp/org.openhab.binding.mysensors-2.0.0-SNAPSHOT.jar /usr/share/openhab2/addons/
            

            and

            sudo chmod openhab.openhab /usr/share/openhab2/addons/org.openhab.binding.mysensors-2.0.0-SNAPSHOT.jar
            

            OH2 is started/stopped/restarted with

            service openhab2 start/stop/restart
            

            To log into the karaf console do:

            ssh openhab@localhost -p 8101
            

            Password is: habopen

            Follow the guide/wiki from:

            In the console enter feature:install openhab-transport-serial
            
            P Offline
            P Offline
            patrick schaerer
            wrote on last edited by
            #331

            @TimO said:

            @bentrik said:

            I managed to find an addons directory in /usr/share/openhab2/addons, but I can´t find a way to copy the .jar file there, as I get permission denied both through WinSCP in sudo mode and terminal ssh. The folder has permission 0775.

            That is the correct directory if you installed OH2 via .deb. Seems like you are using a user in WinSCP that is not allowed to write to the directory above. To circumvent this:

            1. Copy the binding jar to /tmp.
            2. Login via ssh and execute:
            sudo cp /tmp/org.openhab.binding.mysensors-2.0.0-SNAPSHOT.jar /usr/share/openhab2/addons/
            

            and

            sudo chmod openhab.openhab /usr/share/openhab2/addons/org.openhab.binding.mysensors-2.0.0-SNAPSHOT.jar
            

            OH2 is started/stopped/restarted with

            service openhab2 start/stop/restart
            

            To log into the karaf console do:

            ssh openhab@localhost -p 8101
            

            Password is: habopen

            Follow the guide/wiki from:

            In the console enter feature:install openhab-transport-serial
            

            I have installed openhab with the openhabian image. I could start the mysensors gateway too.
            I followed the github-openhab2 installation instructions.
            To this point

            In the console enter feature:install openhab-transport-serial
            

            I read a lot of posts on this thread but on get this error:

            openhab> install openhab-transport-serial
            Bundle IDs:
            Error executing command: Error installing bundles:
            	Unable to install bundle openhab-transport-serial
            

            the chmod line posted above doesn't work neither. chmod does not accept openhab.openhab

            I dont have any clue how to install the binding for openhab2 ... why isn't that possible from paperui :-(

            T 1 Reply Last reply
            0
            • tademetT Offline
              tademetT Offline
              tademet
              wrote on last edited by
              #332

              I have install the addon and am getting the error:

              17:49:40.745 [DEBUG] [al.protocol.ip.MySensorsIpConnection] - Connecting to IP bridge [null:1883]
              17:49:40.745 [ERROR] [al.protocol.ip.MySensorsIpConnection] - IP must be not null/empty
              17:49:40.752 [ERROR] [al.protocol.ip.MySensorsIpConnection] - Failed connecting to bridge...next retry in 10 seconds (Retry No.:46)
              17:49:40.753 [DEBUG] [al.protocol.ip.MySensorsIpConnection] - Disconnecting from IP bridge ...
              

              MySensors does not show up as a binding in HabMin or PaperUI.

              Where do I configure the MySensors binding if it doesn't show up in the UI?

              jogantJ 1 Reply Last reply
              0
              • tademetT tademet

                I have install the addon and am getting the error:

                17:49:40.745 [DEBUG] [al.protocol.ip.MySensorsIpConnection] - Connecting to IP bridge [null:1883]
                17:49:40.745 [ERROR] [al.protocol.ip.MySensorsIpConnection] - IP must be not null/empty
                17:49:40.752 [ERROR] [al.protocol.ip.MySensorsIpConnection] - Failed connecting to bridge...next retry in 10 seconds (Retry No.:46)
                17:49:40.753 [DEBUG] [al.protocol.ip.MySensorsIpConnection] - Disconnecting from IP bridge ...
                

                MySensors does not show up as a binding in HabMin or PaperUI.

                Where do I configure the MySensors binding if it doesn't show up in the UI?

                jogantJ Offline
                jogantJ Offline
                jogant
                wrote on last edited by
                #333

                @tademet
                as stated in the configuration wiki https://github.com/tobof/openhab2-addons/wiki/Configuration you have to define the bridge in your thing-configuration, depending on the type of your gateway serial or ethernet.

                tademetT 1 Reply Last reply
                0
                • jogantJ jogant

                  @tademet
                  as stated in the configuration wiki https://github.com/tobof/openhab2-addons/wiki/Configuration you have to define the bridge in your thing-configuration, depending on the type of your gateway serial or ethernet.

                  tademetT Offline
                  tademetT Offline
                  tademet
                  wrote on last edited by tademet
                  #334

                  @jogant
                  I have added the config to the thing file.

                  Bridge mysensors:bridge-eth:gateway [ ipAddress:"10.9.167.116", tcpPort=5003, sendDelay=200, imperial=true] {
                  
                  }
                  

                  But still getting the error:

                  08:10:25.214 [DEBUG] [al.protocol.ip.MySensorsIpConnection] - Connecting to IP bridge [null:5003]
                  08:10:25.215 [ERROR] [al.protocol.ip.MySensorsIpConnection] - IP must be not null/empty
                  08:10:25.216 [ERROR] [al.protocol.ip.MySensorsIpConnection] - Failed connecting to bridge...next retry in 10 seconds (Retry No.:3)
                  08:10:25.217 [DEBUG] [al.protocol.ip.MySensorsIpConnection] - Disconnecting from IP bridge ...
                  
                  

                  I changed the port and it recognized that change but is not recognizing ipAddress. Am I misspelling this?

                  T 1 Reply Last reply
                  0
                  • tademetT tademet

                    @jogant
                    I have added the config to the thing file.

                    Bridge mysensors:bridge-eth:gateway [ ipAddress:"10.9.167.116", tcpPort=5003, sendDelay=200, imperial=true] {
                    
                    }
                    

                    But still getting the error:

                    08:10:25.214 [DEBUG] [al.protocol.ip.MySensorsIpConnection] - Connecting to IP bridge [null:5003]
                    08:10:25.215 [ERROR] [al.protocol.ip.MySensorsIpConnection] - IP must be not null/empty
                    08:10:25.216 [ERROR] [al.protocol.ip.MySensorsIpConnection] - Failed connecting to bridge...next retry in 10 seconds (Retry No.:3)
                    08:10:25.217 [DEBUG] [al.protocol.ip.MySensorsIpConnection] - Disconnecting from IP bridge ...
                    
                    

                    I changed the port and it recognized that change but is not recognizing ipAddress. Am I misspelling this?

                    T Offline
                    T Offline
                    TimO
                    Hero Member
                    wrote on last edited by
                    #335

                    @tademet there's a ":" instead of a "=" between ipAddress and the IP adress.

                    1 Reply Last reply
                    0
                    • N Offline
                      N Offline
                      Nicklas Starkel
                      wrote on last edited by
                      #336

                      Just stumbled across this binding great work!
                      Until now I have used MQTT binding and MQTT gateway.
                      Will try this later on.
                      However, is there a reason why this binding is not part as downloadable from within OH2?
                      Cheers :)

                      T 1 Reply Last reply
                      0
                      • N Nicklas Starkel

                        Just stumbled across this binding great work!
                        Until now I have used MQTT binding and MQTT gateway.
                        Will try this later on.
                        However, is there a reason why this binding is not part as downloadable from within OH2?
                        Cheers :)

                        T Offline
                        T Offline
                        TimO
                        Hero Member
                        wrote on last edited by
                        #337

                        Hey @Nicklas-Starkel !
                        I hope it will work out for you! :-)

                        It is not yet part of OH2 and downloadable within OH2 because my pull request is still open. A OH2 developer needs to look at it. :-)

                        infragI K 2 Replies Last reply
                        2
                        • T TimO

                          Hey @Nicklas-Starkel !
                          I hope it will work out for you! :-)

                          It is not yet part of OH2 and downloadable within OH2 because my pull request is still open. A OH2 developer needs to look at it. :-)

                          infragI Offline
                          infragI Offline
                          infrag
                          wrote on last edited by
                          #338

                          @TimO

                          I've downloaded your code from github for this binding and tried to modify it a bit for my specific needs. However I'm having trouble compiling it. I've then gone back to basics and added in your unedited code to Eclipse. However it complains about:

                          @Override
                          public void bridgeHandlerDisposed(ThingHandler thingHandler, Bridge bridge)

                          Saying : The method bridgeHandlerDisposed(Thinghandler,Bridge) of type MySensorsHandler must override or implement a supertype method.

                          Do you have any advice for me on this? :)

                          Thanks for your work on this!

                          infragI 1 Reply Last reply
                          0
                          • infragI infrag

                            @TimO

                            I've downloaded your code from github for this binding and tried to modify it a bit for my specific needs. However I'm having trouble compiling it. I've then gone back to basics and added in your unedited code to Eclipse. However it complains about:

                            @Override
                            public void bridgeHandlerDisposed(ThingHandler thingHandler, Bridge bridge)

                            Saying : The method bridgeHandlerDisposed(Thinghandler,Bridge) of type MySensorsHandler must override or implement a supertype method.

                            Do you have any advice for me on this? :)

                            Thanks for your work on this!

                            infragI Offline
                            infragI Offline
                            infrag
                            wrote on last edited by
                            #339

                            @TimO

                            According to this:
                            https://www.eclipse.org/smarthome/documentation/javadoc/org/eclipse/smarthome/core/thing/binding/ThingHandler.html#bridgeStatusChanged-org.eclipse.smarthome.core.thing.ThingStatusInfo-

                            The old method of bridgeHandlerDisposed is Depreciated now.

                            T 1 Reply Last reply
                            0
                            • infragI infrag

                              @TimO

                              According to this:
                              https://www.eclipse.org/smarthome/documentation/javadoc/org/eclipse/smarthome/core/thing/binding/ThingHandler.html#bridgeStatusChanged-org.eclipse.smarthome.core.thing.ThingStatusInfo-

                              The old method of bridgeHandlerDisposed is Depreciated now.

                              T Offline
                              T Offline
                              TimO
                              Hero Member
                              wrote on last edited by
                              #340

                              Hey @infrag !

                              Switch to the MySensors branch, the master branch is outdated. :-)

                              infragI FutureCowF 2 Replies Last reply
                              0
                              • T TimO

                                Hey @infrag !

                                Switch to the MySensors branch, the master branch is outdated. :-)

                                infragI Offline
                                infragI Offline
                                infrag
                                wrote on last edited by
                                #341

                                @TimO

                                ah that explains it. Thanks! :)

                                1 Reply Last reply
                                0
                                • T TimO

                                  Hey @infrag !

                                  Switch to the MySensors branch, the master branch is outdated. :-)

                                  FutureCowF Offline
                                  FutureCowF Offline
                                  FutureCow
                                  wrote on last edited by
                                  #342

                                  @TimO
                                  I'm trying to add a CO2 sensor. What is the sensor i need to select inside OpenHAB?

                                  TSP:MSG:SEND 70-70-0-0 s=0,c=1,t=37,pt=4,l=4,sg=0,ft=0,st=ok:1162
                                  CO2 level = 1162 ppm

                                  sketch:
                                  MyMessage msg(CHILD_ID_AIQ, V_LEVEL);
                                  present(CHILD_ID_AIQ, S_AIR_QUALITY);

                                  ? 1 Reply Last reply
                                  0
                                  • FutureCowF FutureCow

                                    @TimO
                                    I'm trying to add a CO2 sensor. What is the sensor i need to select inside OpenHAB?

                                    TSP:MSG:SEND 70-70-0-0 s=0,c=1,t=37,pt=4,l=4,sg=0,ft=0,st=ok:1162
                                    CO2 level = 1162 ppm

                                    sketch:
                                    MyMessage msg(CHILD_ID_AIQ, V_LEVEL);
                                    present(CHILD_ID_AIQ, S_AIR_QUALITY);

                                    ? Offline
                                    ? Offline
                                    A Former User
                                    wrote on last edited by
                                    #343

                                    Hello everyone,
                                    In an OH2 environment with 2 nodes reporting temperature, one attached to the gateway and one on his own I receive the following error:
                                    [ERROR] [rs.internal.protocol.MySensorsReader] - (java.lang.IllegalStateException: Could not update state, because callback is missing) on reading from connection, message: class org.openhab.binding.mysensors.internal.protocol.serial.MySensorsSerialReader

                                    The node attached to the gateway works fine, his item gets updated but the other one not.
                                    The only code difference between their loop methods are calls to isTransportOK() and receiveTime() which are made by the latter node.
                                    Doesn't this version support those 2 methods or I'm missing something ?
                                    https://github.com/tobof/openhab2-addons/blob/MySensors/addons/binding/org.openhab.binding.mysensors/target/org.openhab.binding.mysensors-2.0.0-SNAPSHOT.jar

                                    Thx for all the hard work on this library :smiley:

                                    T 1 Reply Last reply
                                    0
                                    • ? A Former User

                                      Hello everyone,
                                      In an OH2 environment with 2 nodes reporting temperature, one attached to the gateway and one on his own I receive the following error:
                                      [ERROR] [rs.internal.protocol.MySensorsReader] - (java.lang.IllegalStateException: Could not update state, because callback is missing) on reading from connection, message: class org.openhab.binding.mysensors.internal.protocol.serial.MySensorsSerialReader

                                      The node attached to the gateway works fine, his item gets updated but the other one not.
                                      The only code difference between their loop methods are calls to isTransportOK() and receiveTime() which are made by the latter node.
                                      Doesn't this version support those 2 methods or I'm missing something ?
                                      https://github.com/tobof/openhab2-addons/blob/MySensors/addons/binding/org.openhab.binding.mysensors/target/org.openhab.binding.mysensors-2.0.0-SNAPSHOT.jar

                                      Thx for all the hard work on this library :smiley:

                                      T Offline
                                      T Offline
                                      TimO
                                      Hero Member
                                      wrote on last edited by
                                      #344

                                      Hey @frg !

                                      1. receiveTime() is supported by the binding and should work. In the binding log should appear a message like:
                                      I_TIME request received from 123, answering...
                                      

                                      Do you have some more log for me?

                                      1. isTransportOK() is only handled within the node, no message is send so there is nothing the binding could support. By the way, the method was renamed to isTransportReady() with the current version 2.1.0.

                                      Are there no updates from the second node? Did you check in the serial log of the node that messages were sent?

                                      ? 1 Reply Last reply
                                      0
                                      • T TimO

                                        Hey @frg !

                                        1. receiveTime() is supported by the binding and should work. In the binding log should appear a message like:
                                        I_TIME request received from 123, answering...
                                        

                                        Do you have some more log for me?

                                        1. isTransportOK() is only handled within the node, no message is send so there is nothing the binding could support. By the way, the method was renamed to isTransportReady() with the current version 2.1.0.

                                        Are there no updates from the second node? Did you check in the serial log of the node that messages were sent?

                                        ? Offline
                                        ? Offline
                                        A Former User
                                        wrote on last edited by
                                        #345

                                        @TimO
                                        Hello,
                                        Well this is bit of embarrassing...after changing the sleep time from 5 minutes to 1 minute for the troublesome node and re-uploading the sketch, it is reporting the temperature just fine. I tried all kinds of combinations trying to replicate the initial behavior, stopped the controller, rebooted the gateway, powered them off for while, moving back to 5 minutes sleep, to no avail, node registers and the temperature is reporting is showed in the paperui.

                                        On the other hand I don't see that I_TIME request received from... message in the logs (used log:set DEBUG org.openhab.binding.mysensors and log:tail) so I'm not sure if the receiveTime() is called.
                                        I suppose I can write something in the EEPROM when the callback function runs and check that.
                                        Thank you

                                        01:30:45.291 [DEBUG] [col.serial.MySensorsSerialConnection] - Bridge is connected, connection skipped
                                        01:30:50.280 [DEBUG] [rs.internal.protocol.MySensorsReader] - 2;0;1;0;0;22.0
                                        01:30:50.282 [DEBUG] [ternal.handler.MySensorsThingHandler] - Setting last update for node 2 to 2017-01-06T01:30:50.281+0200
                                        01:30:50.285 [INFO ] [marthome.event.ItemStateChangedEvent] - TemperatureOutside_LastUpdate changed from 2017-01-06T01:28:52.282+0200 to 2017-01-06T01:30:50.281+0200
                                        01:30:53.550 [DEBUG] [rs.internal.protocol.MySensorsReader] - 0;1;1;0;0;23.1
                                        01:30:55.292 [DEBUG] [col.serial.MySensorsSerialConnection] - Bridge is connected, connection skipped
                                        01:31:05.293 [DEBUG] [col.serial.MySensorsSerialConnection] - Bridge is connected, connection skipped
                                        01:31:15.293 [DEBUG] [col.serial.MySensorsSerialConnection] - Bridge is connected, connection skipped
                                        01:31:25.294 [DEBUG] [col.serial.MySensorsSerialConnection] - Bridge is connected, connection skipped
                                        01:31:35.294 [DEBUG] [col.serial.MySensorsSerialConnection] - Bridge is connected, connection skipped
                                        01:31:45.295 [DEBUG] [col.serial.MySensorsSerialConnection] - Bridge is connected, connection skipped
                                        01:31:49.287 [DEBUG] [rs.internal.protocol.MySensorsReader] - 2;0;1;0;0;22.0
                                        01:31:53.541 [DEBUG] [rs.internal.protocol.MySensorsReader] - 0;1;1;0;0;23.1
                                        01:31:53.544 [DEBUG] [ternal.handler.MySensorsThingHandler] - Setting last update for node 0 to 2017-01-06T01:31:53.543+0200
                                        01:31:53.552 [INFO ] [marthome.event.ItemStateChangedEvent] - TemperatureGateway_LastUpdate changed from 2017-01-06T01:29:53.559+0200 to 2017-01-06T01:31:53.543+0200
                                        01:31:55.295 [DEBUG] [col.serial.MySensorsSerialConnection] - Bridge is connected, connection skipped
                                        01:32:05.296 [DEBUG] [col.serial.MySensorsSerialConnection] - Bridge is connected, connection skipped
                                        01:32:15.296 [DEBUG] [col.serial.MySensorsSerialConnection] - Bridge is connected, connection skipped
                                        01:32:25.297 [DEBUG] [col.serial.MySensorsSerialConnection] - Bridge is connected, connection skipped
                                        01:32:35.298 [DEBUG] [col.serial.MySensorsSerialConnection] - Bridge is connected, connection skipped
                                        01:32:45.298 [DEBUG] [col.serial.MySensorsSerialConnection] - Bridge is connected, connection skipped
                                        01:32:48.283 [DEBUG] [rs.internal.protocol.MySensorsReader] - 2;0;1;0;0;22.0
                                        01:32:48.284 [DEBUG] [ternal.handler.MySensorsThingHandler] - Setting last update for node 2 to 2017-01-06T01:32:48.284+0200
                                        01:32:48.290 [INFO ] [marthome.event.ItemStateChangedEvent] - TemperatureOutside_LastUpdate changed from 2017-01-06T01:30:50.281+0200 to 2017-01-06T01:32:48.284+0200
                                        01:32:53.532 [DEBUG] [rs.internal.protocol.MySensorsReader] - 0;1;1;0;0;23.1
                                        01:32:55.299 [DEBUG] [col.serial.MySensorsSerialConnection] - Bridge is connected, connection skipped
                                        
                                        

                                        Node 0 is gateway attached, Node 2 is battery run -TemperatureOutside.

                                        T 1 Reply Last reply
                                        0
                                        • ? A Former User

                                          @TimO
                                          Hello,
                                          Well this is bit of embarrassing...after changing the sleep time from 5 minutes to 1 minute for the troublesome node and re-uploading the sketch, it is reporting the temperature just fine. I tried all kinds of combinations trying to replicate the initial behavior, stopped the controller, rebooted the gateway, powered them off for while, moving back to 5 minutes sleep, to no avail, node registers and the temperature is reporting is showed in the paperui.

                                          On the other hand I don't see that I_TIME request received from... message in the logs (used log:set DEBUG org.openhab.binding.mysensors and log:tail) so I'm not sure if the receiveTime() is called.
                                          I suppose I can write something in the EEPROM when the callback function runs and check that.
                                          Thank you

                                          01:30:45.291 [DEBUG] [col.serial.MySensorsSerialConnection] - Bridge is connected, connection skipped
                                          01:30:50.280 [DEBUG] [rs.internal.protocol.MySensorsReader] - 2;0;1;0;0;22.0
                                          01:30:50.282 [DEBUG] [ternal.handler.MySensorsThingHandler] - Setting last update for node 2 to 2017-01-06T01:30:50.281+0200
                                          01:30:50.285 [INFO ] [marthome.event.ItemStateChangedEvent] - TemperatureOutside_LastUpdate changed from 2017-01-06T01:28:52.282+0200 to 2017-01-06T01:30:50.281+0200
                                          01:30:53.550 [DEBUG] [rs.internal.protocol.MySensorsReader] - 0;1;1;0;0;23.1
                                          01:30:55.292 [DEBUG] [col.serial.MySensorsSerialConnection] - Bridge is connected, connection skipped
                                          01:31:05.293 [DEBUG] [col.serial.MySensorsSerialConnection] - Bridge is connected, connection skipped
                                          01:31:15.293 [DEBUG] [col.serial.MySensorsSerialConnection] - Bridge is connected, connection skipped
                                          01:31:25.294 [DEBUG] [col.serial.MySensorsSerialConnection] - Bridge is connected, connection skipped
                                          01:31:35.294 [DEBUG] [col.serial.MySensorsSerialConnection] - Bridge is connected, connection skipped
                                          01:31:45.295 [DEBUG] [col.serial.MySensorsSerialConnection] - Bridge is connected, connection skipped
                                          01:31:49.287 [DEBUG] [rs.internal.protocol.MySensorsReader] - 2;0;1;0;0;22.0
                                          01:31:53.541 [DEBUG] [rs.internal.protocol.MySensorsReader] - 0;1;1;0;0;23.1
                                          01:31:53.544 [DEBUG] [ternal.handler.MySensorsThingHandler] - Setting last update for node 0 to 2017-01-06T01:31:53.543+0200
                                          01:31:53.552 [INFO ] [marthome.event.ItemStateChangedEvent] - TemperatureGateway_LastUpdate changed from 2017-01-06T01:29:53.559+0200 to 2017-01-06T01:31:53.543+0200
                                          01:31:55.295 [DEBUG] [col.serial.MySensorsSerialConnection] - Bridge is connected, connection skipped
                                          01:32:05.296 [DEBUG] [col.serial.MySensorsSerialConnection] - Bridge is connected, connection skipped
                                          01:32:15.296 [DEBUG] [col.serial.MySensorsSerialConnection] - Bridge is connected, connection skipped
                                          01:32:25.297 [DEBUG] [col.serial.MySensorsSerialConnection] - Bridge is connected, connection skipped
                                          01:32:35.298 [DEBUG] [col.serial.MySensorsSerialConnection] - Bridge is connected, connection skipped
                                          01:32:45.298 [DEBUG] [col.serial.MySensorsSerialConnection] - Bridge is connected, connection skipped
                                          01:32:48.283 [DEBUG] [rs.internal.protocol.MySensorsReader] - 2;0;1;0;0;22.0
                                          01:32:48.284 [DEBUG] [ternal.handler.MySensorsThingHandler] - Setting last update for node 2 to 2017-01-06T01:32:48.284+0200
                                          01:32:48.290 [INFO ] [marthome.event.ItemStateChangedEvent] - TemperatureOutside_LastUpdate changed from 2017-01-06T01:30:50.281+0200 to 2017-01-06T01:32:48.284+0200
                                          01:32:53.532 [DEBUG] [rs.internal.protocol.MySensorsReader] - 0;1;1;0;0;23.1
                                          01:32:55.299 [DEBUG] [col.serial.MySensorsSerialConnection] - Bridge is connected, connection skipped
                                          
                                          

                                          Node 0 is gateway attached, Node 2 is battery run -TemperatureOutside.

                                          T Offline
                                          T Offline
                                          TimO
                                          Hero Member
                                          wrote on last edited by
                                          #346

                                          @frg Sometimes magic just happens. 😉
                                          I'm glad it is working now! :+1:

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          7

                                          Online

                                          11.7k

                                          Users

                                          11.2k

                                          Topics

                                          113.0k

                                          Posts


                                          Copyright 2019 TBD   |   Forum Guidelines   |   Privacy Policy   |   Terms of Service
                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • OpenHardware.io
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular