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. OpenHardware.io
  3. 💬 Sensebender Micro

💬 Sensebender Micro

Scheduled Pinned Locked Moved OpenHardware.io
temperatureatmega328atsha204ahumidityflashmysensors
116 Posts 42 Posters 26.6k Views 38 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.
  • M meddie

    @Michiel-van-der-Wulp
    Can you tell me where in the code is the switch to 1 MHz? I still have the problems that my node dosnt send anymore. It works for several hours but after then it dont send anything.

    In programming i am not good, and so i cant find the switch.
    Thank you very much.
    Greets Eddie

    Michiel van der WulpM Offline
    Michiel van der WulpM Offline
    Michiel van der Wulp
    wrote on last edited by
    #58

    @meddie : Sure, I can:

    The following is an extract from the code shown at https://www.mysensors.org/view/1/Sensebender-Micro, from the "loop()" function:

    #ifndef MY_OTA_FIRMWARE_FEATURE
      if ((measureCount == 5) && highfreq) 
      {
        clock_prescale_set(clock_div_8); // Switch to 1Mhz for the reminder of the sketch, save power.
        highfreq = false;
      } 
    #endif
    

    If you remove these lines, it will stay on 8MHz.
    (I did not test this but I am quite sure)

    M 1 Reply Last reply
    0
    • Michiel van der WulpM Michiel van der Wulp

      @meddie : Sure, I can:

      The following is an extract from the code shown at https://www.mysensors.org/view/1/Sensebender-Micro, from the "loop()" function:

      #ifndef MY_OTA_FIRMWARE_FEATURE
        if ((measureCount == 5) && highfreq) 
        {
          clock_prescale_set(clock_div_8); // Switch to 1Mhz for the reminder of the sketch, save power.
          highfreq = false;
        } 
      #endif
      

      If you remove these lines, it will stay on 8MHz.
      (I did not test this but I am quite sure)

      M Offline
      M Offline
      meddie
      wrote on last edited by
      #59

      @Michiel-van-der-Wulp
      thank you i will test it the next few days

      1 Reply Last reply
      0
      • D Offline
        D Offline
        Dominic Amann
        wrote on last edited by
        #60

        I assume there is no exposure to the SPI bus on this board?

        sundberg84S 1 Reply Last reply
        0
        • D Dominic Amann

          I assume there is no exposure to the SPI bus on this board?

          sundberg84S Offline
          sundberg84S Offline
          sundberg84
          Hardware Contributor
          wrote on last edited by
          #61

          @Dominic-Amann from the hardware site:

          MYSx 2.6 with
          Dedicated UART
          Dedicated SPI
          Dedicated Interrupts
          I2C bus (shared with onboard eeprom)

          Controller: Proxmox VM - Home Assistant
          MySensors GW: Arduino Uno - W5100 Ethernet, Gw Shield Nrf24l01+ 2,4Ghz
          MySensors GW: Arduino Uno - Gw Shield RFM69, 433mhz
          RFLink GW - Arduino Mega + RFLink Shield, 433mhz

          1 Reply Last reply
          1
          • D Offline
            D Offline
            Dominic Amann
            wrote on last edited by
            #62

            Ah - right, the radio connector uses SPI.

            1 Reply Last reply
            0
            • tbowmoT Offline
              tbowmoT Offline
              tbowmo
              Admin
              wrote on last edited by
              #63

              @Dominic-Amann

              There are multiple SPI ports in use, one of them is dedicated to the expansion header (which follows MYSx 2.6 standard)

              1 Reply Last reply
              0
              • R Offline
                R Offline
                RWoerz
                wrote on last edited by
                #64

                Can somebody please post what this boards current draw is at 8Mz w/wo a radio. Because it will live in a crawl space It's going to be plugged in. I've also added a very simple water detector.

                1 Reply Last reply
                0
                • tbowmoT Offline
                  tbowmoT Offline
                  tbowmo
                  Admin
                  wrote on last edited by
                  #65

                  @RWoerz

                  normal operating frequency is 48Mhz (if I remember right).. If I remember right, then there is no options in arduino to switch the frequency to 8Mhz..

                  1 Reply Last reply
                  0
                  • sburlotS Offline
                    sburlotS Offline
                    sburlot
                    wrote on last edited by
                    #66

                    Beware that the Si7021 can return a RH value < 0 or > 100, and Domoticz will not store it. Clamp the humidity to a valid range to avoid losing values.

                    Lately, my Sensebender reported values of 101-104 during the night. Took me some time to understand why Domoticz complained it didnt receive any values.
                    It received these values, but didnt like them.

                    See section 5.1.1 of the Si7021 datasheet says:
                    Due to normal variations in RH accuracy of the device as described in Table 4, it is possible for the measured value of %RH to be slightly less than 0 when the actual RH level is close to or equal to 0. Similarly, the measured value of %RH may be slightly greater than 100 when the actual RH level is close to or equal to 100. This is expected behavior, and it is acceptable to limit the range of RH results to 0 to 100%RH in the host software by truncating values that are slightly outside of this range.

                    1 Reply Last reply
                    1
                    • D Offline
                      D Offline
                      dklinkman
                      wrote on last edited by
                      #67

                      So cool that the micro as a node reports its battery level to the UI (I'm still on the FTDI power, hence > 100%)
                      0_1517359445418_sbmicro.jpg

                      -d

                      1 Reply Last reply
                      0
                      • stefaanvS Offline
                        stefaanvS Offline
                        stefaanv
                        wrote on last edited by
                        #68

                        Is there a board definition for sensebender micro for PlatformIO available ?

                        martinhjelmareM 1 Reply Last reply
                        0
                        • stefaanvS stefaanv

                          Is there a board definition for sensebender micro for PlatformIO available ?

                          martinhjelmareM Offline
                          martinhjelmareM Offline
                          martinhjelmare
                          Plugin Developer
                          wrote on last edited by
                          #69

                          @stefaanv

                          https://forum.mysensors.org/topic/2725/sensebender-micro/29

                          1 Reply Last reply
                          0
                          • M Offline
                            M Offline
                            mvader
                            wrote on last edited by mvader
                            #70

                            Am I able to remote reboot the sensebender micro? I can send an OTA firmware if i manually press the reset button.
                            but can i use the reboot command in MYScontroller? it doesn't seem to do anything when issued.

                            tbowmoT 1 Reply Last reply
                            0
                            • M mvader

                              Am I able to remote reboot the sensebender micro? I can send an OTA firmware if i manually press the reset button.
                              but can i use the reboot command in MYScontroller? it doesn't seem to do anything when issued.

                              tbowmoT Offline
                              tbowmoT Offline
                              tbowmo
                              Admin
                              wrote on last edited by
                              #71

                              @mvader

                              Is it the default dualoptiboot bootloader? Then the bootloader itself does not support OTA FW. You need to put a sketch on it, that supports OTA. (Default sensebender micro sketches doesn't)

                              M 1 Reply Last reply
                              0
                              • tbowmoT tbowmo

                                @mvader

                                Is it the default dualoptiboot bootloader? Then the bootloader itself does not support OTA FW. You need to put a sketch on it, that supports OTA. (Default sensebender micro sketches doesn't)

                                M Offline
                                M Offline
                                mvader
                                wrote on last edited by mvader
                                #72

                                @tbowmo said in 💬 Sensebender Micro:

                                @mvader

                                Is it the default dualoptiboot bootloader? Then the bootloader itself does not support OTA FW. You need to put a sketch on it, that supports OTA. (Default sensebender micro sketches doesn't)

                                yes it's the default bootloader. yes i have OTA added to the sketch. it works if i reset the device via manual reset. but what i'd like to do is send the reboot command from myscontroller. but it seems to do nothing ever. does the bootloader support reboot? or is that something i also have to add to the sketch?

                                situation: i have about 15 sensors all over the house. if i update, i'd like to be able to assign the firmware, and then issue the reboot command. so upon reboot, they take the assigned firmware. what i don't want to do is have to go to each one and manually press the reset button to get it to take the firmware. i'm sure it's healthier to run up and down 3 flights of stairs. but i'm lazy :)

                                1 Reply Last reply
                                0
                                • tbowmoT Offline
                                  tbowmoT Offline
                                  tbowmo
                                  Admin
                                  wrote on last edited by
                                  #73

                                  @mvader

                                  The sketch should support reboot, try sending I_REBOOT to one of your nodes (info can be found here, look under internal messages)

                                  I haven't tried it myself yet, as I haven't touched my sensebender micros for ages..

                                  1 Reply Last reply
                                  0
                                  • joaoabsJ Offline
                                    joaoabsJ Offline
                                    joaoabs
                                    wrote on last edited by
                                    #74

                                    Hi,
                                    Three questions regarding SenseBender Micro:

                                    • What board should I configure in Arduino IDE in order to upload sketches? Would it be equivalent to Arduino mini pro, or is there any "board library" to load ?(Didn't find it, Woudn't it make sense to be included in the examples/Libraries pack?)...
                                      (Found it: https://github.com/mysensors/ArduinoBoards . If you look between the photos above there is a simple link lost in the between)
                                      MySensors Admins: Just a small suggestion: As it is now, - a simple link between photos is easily overlooked. Can't you place it near the specs where it should be more visible?

                                    • It has an I2C bus for the SI7021, but it seems the ATSHA204A (which I believe its I2C also) is connected to another pin (a3). Does this mean it has two I2C buses?

                                    • Can anyone confirm that the port that measures the battery voltage is A0?

                                    Thanks,
                                    Joaoabs

                                    AnticimexA 1 Reply Last reply
                                    0
                                    • joaoabsJ joaoabs

                                      Hi,
                                      Three questions regarding SenseBender Micro:

                                      • What board should I configure in Arduino IDE in order to upload sketches? Would it be equivalent to Arduino mini pro, or is there any "board library" to load ?(Didn't find it, Woudn't it make sense to be included in the examples/Libraries pack?)...
                                        (Found it: https://github.com/mysensors/ArduinoBoards . If you look between the photos above there is a simple link lost in the between)
                                        MySensors Admins: Just a small suggestion: As it is now, - a simple link between photos is easily overlooked. Can't you place it near the specs where it should be more visible?

                                      • It has an I2C bus for the SI7021, but it seems the ATSHA204A (which I believe its I2C also) is connected to another pin (a3). Does this mean it has two I2C buses?

                                      • Can anyone confirm that the port that measures the battery voltage is A0?

                                      Thanks,
                                      Joaoabs

                                      AnticimexA Offline
                                      AnticimexA Offline
                                      Anticimex
                                      Contest Winner
                                      wrote on last edited by Anticimex
                                      #75

                                      @joaoabs we do not support I2C variant of atsha204a. Only single wire variant.

                                      Do you feel secure today? No? Start requiring some signatures and feel better tomorrow ;)

                                      1 Reply Last reply
                                      0
                                      • tbowmoT Offline
                                        tbowmoT Offline
                                        tbowmo
                                        Admin
                                        wrote on last edited by
                                        #76

                                        @joaoabs

                                        It uses the internal vref to measure the battery voltage. Some of the theory is described here https://www.sciencetronics.com/greenphotons/?p=1521

                                        1 Reply Last reply
                                        0
                                        • joaoabsJ Offline
                                          joaoabsJ Offline
                                          joaoabs
                                          wrote on last edited by
                                          #77

                                          For the battery powering voltage measuring do you mean that this is not needed after all? (https://www.mysensors.org/build/battery#measuring-and-reporting-battery-level)
                                          It would be just a matter of enabling the flag "#define BATT_SENSOR 199 " and no resistors needed?

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


                                          14

                                          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