Skip to content
  • MySensors
  • 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. Announcements
  3. 1.4 Beta

1.4 Beta

Scheduled Pinned Locked Moved Announcements
1.4betahelp
129 Posts 18 Posters 87.1k Views 4 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.
  • hekH hek

    @ServiceXp

    Yes correct!

    RJ_MakeR Offline
    RJ_MakeR Offline
    RJ_Make
    Hero Member
    wrote on last edited by
    #121

    @hek

    I can only find MyConfig.h file, and DEBUG was already without the "//".

    So I noticed something VERY strange. It seems when I have the sensors connected to the computer, they start reading in Fahrenheit, and once I pull the USB cable it reverts back to Celsius with-in 30-60 seconds..

    RJ_Make

    1 Reply Last reply
    0
    • RJ_MakeR Offline
      RJ_MakeR Offline
      RJ_Make
      Hero Member
      wrote on last edited by
      #122

      Yep, I have no idea how to debug this. The debug window reads in Fahrenheit, (and in Vera), but 30-60 seconds after I disconnect the usb cable from my computer (at which point I can't use the serial com window) it reverts back to Celsius.

      I've deleted one of the sensor nodes and child from Vera, cleared the eEPROM and re-install sketch and re-incuded back into Vera...

      I just don't understand why it works while connected to my computer...

      RJ_Make

      hekH 1 Reply Last reply
      0
      • RJ_MakeR RJ_Make

        Yep, I have no idea how to debug this. The debug window reads in Fahrenheit, (and in Vera), but 30-60 seconds after I disconnect the usb cable from my computer (at which point I can't use the serial com window) it reverts back to Celsius.

        I've deleted one of the sensor nodes and child from Vera, cleared the eEPROM and re-install sketch and re-incuded back into Vera...

        I just don't understand why it works while connected to my computer...

        hekH Offline
        hekH Offline
        hek
        Admin
        wrote on last edited by
        #123

        @ServiceXp

        No, this seems strange. The unit settings should get stored in eeprom.

        RJ_MakeR 1 Reply Last reply
        0
        • hekH hek

          @ServiceXp

          No, this seems strange. The unit settings should get stored in eeprom.

          RJ_MakeR Offline
          RJ_MakeR Offline
          RJ_Make
          Hero Member
          wrote on last edited by
          #124

          @hek

          Do you think I can rule out my sensor hardware as it works with 1.3? Is there any way I can determine if it's being written to eEPROM while connected to the computer and then after it's disconnected (to see if it's getting overwritten)?

          RJ_Make

          hekH 1 Reply Last reply
          0
          • RJ_MakeR RJ_Make

            @hek

            Do you think I can rule out my sensor hardware as it works with 1.3? Is there any way I can determine if it's being written to eEPROM while connected to the computer and then after it's disconnected (to see if it's getting overwritten)?

            hekH Offline
            hekH Offline
            hek
            Admin
            wrote on last edited by
            #125

            @ServiceXp

            Do you call process() in loop()?

            But, really.. Don't put too much effort into this. Just hardcode sensor to send fahrenheit until conversion is done by controller plugin.

            RJ_MakeR 1 Reply Last reply
            0
            • hekH hek

              @ServiceXp

              Do you call process() in loop()?

              But, really.. Don't put too much effort into this. Just hardcode sensor to send fahrenheit until conversion is done by controller plugin.

              RJ_MakeR Offline
              RJ_MakeR Offline
              RJ_Make
              Hero Member
              wrote on last edited by RJ_Make
              #126

              @hek
              I'm using the boiler plate sketch provided in the 1.4b1 files. The only modifications I've done is add battery code. (Copy and Paste).

              How to I hard code sensor to send in Fahrenheit?

              Sorry you have to hold my hand through this, I'm very new at this.....

              RJ_Make

              hekH 1 Reply Last reply
              0
              • RJ_MakeR RJ_Make

                @hek
                I'm using the boiler plate sketch provided in the 1.4b1 files. The only modifications I've done is add battery code. (Copy and Paste).

                How to I hard code sensor to send in Fahrenheit?

                Sorry you have to hold my hand through this, I'm very new at this.....

                hekH Offline
                hekH Offline
                hek
                Admin
                wrote on last edited by
                #127

                @ServiceXp

                Change

                float temperature = static_cast<float>(static_cast<int>((gw.getConfig().isMetric?sensors.getTempCByIndex(i):sensors.getTempFByIndex(i)) * 10.)) / 10.;
                

                To

                float temperature = static_cast<float>(static_cast<int>((sensors.getTempFByIndex(i)) * 10.)) / 10.;
                

                But I still wonder what goes wrong...

                RJ_MakeR 1 Reply Last reply
                0
                • hekH hek

                  @ServiceXp

                  Change

                  float temperature = static_cast<float>(static_cast<int>((gw.getConfig().isMetric?sensors.getTempCByIndex(i):sensors.getTempFByIndex(i)) * 10.)) / 10.;
                  

                  To

                  float temperature = static_cast<float>(static_cast<int>((sensors.getTempFByIndex(i)) * 10.)) / 10.;
                  

                  But I still wonder what goes wrong...

                  RJ_MakeR Offline
                  RJ_MakeR Offline
                  RJ_Make
                  Hero Member
                  wrote on last edited by
                  #128

                  @hek

                  Worked perfectly for the temperature sensor, but it appears the Humidity and Temp. Sketch handles this differently. Not sure what to replace and where.

                  RJ_Make

                  1 Reply Last reply
                  0
                  • RJ_MakeR Offline
                    RJ_MakeR Offline
                    RJ_Make
                    Hero Member
                    wrote on last edited by
                    #129

                    Not very nice but I think this will work..

                      //float temperature = dht.getTemperature();
                     float temperature = dht.getTemperature()*9/5 + 32;
                      
                     if (isnan(temperature)) {
                        Serial.println("Failed reading temperature from DHT");
                     } else if (temperature != lastTemp) {
                     lastTemp = temperature;
                       if (!metric) {
                      temperature = dht.getTemperature()*9/5 + 32;   //dht.toFahrenheit(temperature);
                     }
                    

                    RJ_Make

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


                    9

                    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
                    • MySensors
                    • OpenHardware.io
                    • Categories
                    • Recent
                    • Tags
                    • Popular