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. Sensebender Micro

Sensebender Micro

Scheduled Pinned Locked Moved Announcements
584 Posts 84 Posters 401.8k Views 35 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

    Just ordered 6 for myself. I wouldn't want to miss out on the first batch. Only around 100 left.

    Talked to Itead today. They had to source the ATSHA204A from overseas and will start production when they arrive.

    K Offline
    K Offline
    kalle
    wrote on last edited by
    #18

    @hek said:

    Just ordered 6 for myself. I wouldn't want to miss out on the first batch. Only around 100 left.

    Talked to Itead today. They had to source the ATSHA204A from overseas and will start production when they arrive.

    bought also 3 pieces :-)

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

      I picked up 3 and 5 radios

      1 Reply Last reply
      0
      • hetbeestH Offline
        hetbeestH Offline
        hetbeest
        wrote on last edited by hetbeest
        #20

        Just ordered two to start with ;)

        1 Reply Last reply
        0
        • D Offline
          D Offline
          Dean
          wrote on last edited by
          #21

          Hope this isn't too silly a question.... The temp/humidity sensing, that works 'out of the box' without requiring me actually connecting these sensors, right?

          And another question, would it be possible to turn the temp/hum function off and just have a motion sensor connected which would never do anything unless it sensed movement and then send a message to the gateway?

          I've been flat out at work for a couple months so I've been away from this for a while... :-)

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

            @Dean

            It will be programmed by the factory, with the "Sensebender micro" sketch, https://github.com/mysensors/Arduino/blob/master/libraries/MySensors/examples/SensebenderMicro/SensebenderMicro.ino

            So it's plug'n'play as a sensor with temperature and humidity. You could always dump another sketch to the unit, if you want to use it for something else.

            1 Reply Last reply
            0
            • G Offline
              G Offline
              gol
              wrote on last edited by
              #23

              I have also ordered a couple of boards to be able to evaulate them as soon as possible.

              Just a question:

              • What is the expected lifetime of the batteries if you use 2 AA batteries, the default preloaded sketch and reports the temp and humidity values once per minute?
              1 Reply Last reply
              0
              • jeylitesJ Offline
                jeylitesJ Offline
                jeylites
                wrote on last edited by jeylites
                #24

                Out of curiosity, can over the air updates be implemented on Arduino Nano? I'm going to get 3 to put Sense to the test. :smiley:

                1 Reply Last reply
                0
                • hekH Offline
                  hekH Offline
                  hek
                  Admin
                  wrote on last edited by
                  #25

                  @gol

                  It was measured by @blacey to 0.05 mA while sleeping and 0.95 mA during transmit. @tbowmo got some higher figures but they were most probably related to running a NRF24L01+ clone.

                  @jeylites
                  Yes, have a look at the bootloader here:
                  https://github.com/mysensors/Arduino/tree/master/MYSBootloader
                  You can test OTA updates using the MYSController. It overwrites program memory in-place during boot. If communication goes down or fails during this process the node won't boot up again (you have to upload a new sketch while connected to you computer).

                  The sensbender has a external flash which means we can safely store the OTA firmware while normal sketch is running. When everything has been downloaded the DualOptiboot moves new firmware from flash to program memory during bootup. The code for this has been written (in development branch) but has not been tested yet (I failed handsoldering them :() .

                  tekkaT D 2 Replies Last reply
                  1
                  • D Offline
                    D Offline
                    Dean
                    wrote on last edited by
                    #26

                    Thankyou @tbowmo

                    1 Reply Last reply
                    0
                    • hekH hek

                      @gol

                      It was measured by @blacey to 0.05 mA while sleeping and 0.95 mA during transmit. @tbowmo got some higher figures but they were most probably related to running a NRF24L01+ clone.

                      @jeylites
                      Yes, have a look at the bootloader here:
                      https://github.com/mysensors/Arduino/tree/master/MYSBootloader
                      You can test OTA updates using the MYSController. It overwrites program memory in-place during boot. If communication goes down or fails during this process the node won't boot up again (you have to upload a new sketch while connected to you computer).

                      The sensbender has a external flash which means we can safely store the OTA firmware while normal sketch is running. When everything has been downloaded the DualOptiboot moves new firmware from flash to program memory during bootup. The code for this has been written (in development branch) but has not been tested yet (I failed handsoldering them :() .

                      tekkaT Offline
                      tekkaT Offline
                      tekka
                      Admin
                      wrote on last edited by tekka
                      #27

                      @hek said:

                      @jeylites
                      Yes, have a look at the bootloader here:
                      https://github.com/mysensors/Arduino/tree/master/MYSBootloader
                      You can test OTA updates using the MYSController. It overwrites program memory in-place during boot. If communication goes down or fails during this process the node won't boot up again (you have to upload a new sketch while connected to you computer).

                      If the communication fails, the bootloader will remain "bootloading", i.e. will try to fetch a new firmware from the controller until the CRC matches - no need to upload a sketch via computer.

                      MYSBootloader 2.0 will have SHA signing implemented: for those nodes without ATSHA204 which need signed OTA updates :)

                      jeylitesJ 1 Reply Last reply
                      0
                      • tekkaT tekka

                        @hek said:

                        @jeylites
                        Yes, have a look at the bootloader here:
                        https://github.com/mysensors/Arduino/tree/master/MYSBootloader
                        You can test OTA updates using the MYSController. It overwrites program memory in-place during boot. If communication goes down or fails during this process the node won't boot up again (you have to upload a new sketch while connected to you computer).

                        If the communication fails, the bootloader will remain "bootloading", i.e. will try to fetch a new firmware from the controller until the CRC matches - no need to upload a sketch via computer.

                        MYSBootloader 2.0 will have SHA signing implemented: for those nodes without ATSHA204 which need signed OTA updates :)

                        jeylitesJ Offline
                        jeylitesJ Offline
                        jeylites
                        wrote on last edited by
                        #28

                        @tekka said:

                        Yes, have a look at the bootloader here:
                        https://github.com/mysensors/Arduino/tree/master/MYSBootloader

                        Do I have to include those files into my sketch or just install MYS on windows and it will auto detect? In other words, do I have to make any changes to the sketch?

                        Is there any tutorial on MYS implementation?

                        hekH 1 Reply Last reply
                        0
                        • jeylitesJ jeylites

                          @tekka said:

                          Yes, have a look at the bootloader here:
                          https://github.com/mysensors/Arduino/tree/master/MYSBootloader

                          Do I have to include those files into my sketch or just install MYS on windows and it will auto detect? In other words, do I have to make any changes to the sketch?

                          Is there any tutorial on MYS implementation?

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

                          @jeylites

                          You should read up on what a bootloader is and how to install it.
                          http://www.arduino.cc/en/Hacking/Bootloader?from=Tutorial.Bootloader
                          Might be good to start another thread if you have more MYSController/bootloader questions,

                          marceltrapmanM 1 Reply Last reply
                          0
                          • hekH hek

                            @jeylites

                            You should read up on what a bootloader is and how to install it.
                            http://www.arduino.cc/en/Hacking/Bootloader?from=Tutorial.Bootloader
                            Might be good to start another thread if you have more MYSController/bootloader questions,

                            marceltrapmanM Offline
                            marceltrapmanM Offline
                            marceltrapman
                            Mod
                            wrote on last edited by
                            #30

                            @hek said:

                            Might be good to start another thread

                            Nicely put :)

                            I would say 'please start another thread because this will never be found again and will help other as well'...

                            Just my 2 cents.

                            Fulltime Servoy Developer
                            Parttime Moderator MySensors board

                            I use Domoticz as controller for Z-Wave and MySensors (previously Indigo and OpenHAB).
                            I have a FABtotum to print cases.

                            1 Reply Last reply
                            1
                            • rvendrameR Offline
                              rvendrameR Offline
                              rvendrame
                              Hero Member
                              wrote on last edited by
                              #31

                              is 3V the absolute maximum or 3.3V is acceptable to power it? For non-battery operated sensors, it may be easier to find a 3.3V regulators instead 3V (at least in my country).

                              Home Assistant / Vera Plus UI7
                              ESP8266 GW + mySensors 2.3.2
                              Alexa / Google Home

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

                                @rvendrame

                                absolute maximum voltage is 3.6V, above that you'll let the magic smoke out of the following components:

                                • Si7021
                                • external flash
                                • radio module.

                                Only the atmega328 and atsha204 will survive.

                                korttomaK 1 Reply Last reply
                                0
                                • rvendrameR Offline
                                  rvendrameR Offline
                                  rvendrame
                                  Hero Member
                                  wrote on last edited by
                                  #33

                                  @tbowmo said:

                                  absolute maximum voltage is 3.6V

                                  But will all components work properly on 3.3V?

                                  Home Assistant / Vera Plus UI7
                                  ESP8266 GW + mySensors 2.3.2
                                  Alexa / Google Home

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

                                    @rvendrame

                                    Yes they would

                                    1 Reply Last reply
                                    1
                                    • rvendrameR Offline
                                      rvendrameR Offline
                                      rvendrame
                                      Hero Member
                                      wrote on last edited by
                                      #35

                                      @tbowmo thx a lot!

                                      Home Assistant / Vera Plus UI7
                                      ESP8266 GW + mySensors 2.3.2
                                      Alexa / Google Home

                                      1 Reply Last reply
                                      0
                                      • D Offline
                                        D Offline
                                        doblanch
                                        wrote on last edited by
                                        #36

                                        I didn't find mention of it. What is the expected battery life ?
                                        I was going to replace AA by CR123 to gain in space.
                                        thkx

                                        1 Reply Last reply
                                        0
                                        • hekH Offline
                                          hekH Offline
                                          hek
                                          Admin
                                          wrote on last edited by
                                          #37

                                          I posted some measurements above. Hard to say a definite battery life expectation. Depends on many factors such as battery quality, send frequency and what external sensors you attach.

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


                                          21

                                          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