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. Development
  3. Time awareness and scheduling events

Time awareness and scheduling events

Scheduled Pinned Locked Moved Development
30 Posts 8 Posters 11.1k Views 1 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.
  • greglG Offline
    greglG Offline
    gregl
    Hero Member
    wrote on last edited by
    #20

    No prob... you can remove the bugs ive added ;-)

    1 Reply Last reply
    0
    • K Offline
      K Offline
      korttoma
      Hero Member
      wrote on last edited by
      #21

      Thanks! @GREGL I find it useful also for my project.

      • Tomas
      1 Reply Last reply
      0
      • J Offline
        J Offline
        John
        Plugin Developer
        wrote on last edited by
        #22

        I would suggest to sync times a little bit more because if i remember correct the 1307 is quite sensitive for drifting because of temperature, if it would drift 3 seconds a day would be around 16 minutes a year, the DS3231 compansates this with the build in temp sensor.

        But i could be incorrect, but, update your rtc more often anyway ;)

        My Domotica project: http://www.pidome.org

        1 Reply Last reply
        0
        • K Offline
          K Offline
          korttoma
          Hero Member
          wrote on last edited by korttoma
          #23

          Just tried the DS3232RTC library from the examples provided by @hek and it seems like the RTC I2C DS1307 AT24C32 (link to device in earlier post) I have is working happily with this library also. I guess all the features of the library does not work but since the features on my device are working I will stick with this lib since it is provided by MySensors.

          Maybe you should try it out to @gregl

          BTW!, the RTC I have seems to drift quite allot (~1s/h) so I would not recommend it to someone that needs accuracy.

          • Tomas
          1 Reply Last reply
          0
          • T Offline
            T Offline
            ToSa
            Code Contributor
            wrote on last edited by
            #24

            All - help me understand the use-case for a RTC on a sensor please.

            From the discussion above I get that we might have two different needs:

            • really high accuracy
            • a second (or few seconds) deviation are acceptable

            We lose accuracy in RF transmission already, therefore fetching the time on the controller or gateway and sending it to the nodes is not appropriate for the high accuracy need. A RTC would not help in this case because you need to tell the RTC the current time to start with and if that's already inaccurate, you won't get the accuracy needed. The only way to get real accuracy would be to fetch it on the node directly e.g. with a DCF77 receiver.
            For the "less accuracy needed" scenario why would you add hardware to the node if receiving a time broadcast from the controller every x minutes is good enough to get the required (lower) accuracy "in software" without the need for hardware?

            H 1 Reply Last reply
            0
            • J Offline
              J Offline
              John
              Plugin Developer
              wrote on last edited by John
              #25

              You would be better of with an http://www.maximintegrated.com/en/products/digital/real-time-clocks/DS3231.html which has a theoretically drift between 1 and 2 minutes a year (depending on operating temperatures).If i'm correct it uses the internal temp sensor for drift compensation (and could also be read?).

              My Domotica project: http://www.pidome.org

              1 Reply Last reply
              0
              • T ToSa

                All - help me understand the use-case for a RTC on a sensor please.

                From the discussion above I get that we might have two different needs:

                • really high accuracy
                • a second (or few seconds) deviation are acceptable

                We lose accuracy in RF transmission already, therefore fetching the time on the controller or gateway and sending it to the nodes is not appropriate for the high accuracy need. A RTC would not help in this case because you need to tell the RTC the current time to start with and if that's already inaccurate, you won't get the accuracy needed. The only way to get real accuracy would be to fetch it on the node directly e.g. with a DCF77 receiver.
                For the "less accuracy needed" scenario why would you add hardware to the node if receiving a time broadcast from the controller every x minutes is good enough to get the required (lower) accuracy "in software" without the need for hardware?

                H Offline
                H Offline
                hek
                Admin
                wrote on last edited by
                #26

                @ToSa said:

                All - help me understand the use-case for a RTC on a sensor please.

                If your mains powered watering node has a power failure (restarts) and loses connection to controller.

                1 Reply Last reply
                0
                • J Offline
                  J Offline
                  John
                  Plugin Developer
                  wrote on last edited by John
                  #27

                  All - help me understand the use-case for a RTC on a sensor please.

                  http://forum.mysensors.org/topic/284/simple-temp-light-time-setup-with-lcd-1-4-no-beta-anymore

                  Time currently is being pushed every minute by the device created on the controller to "the display" (It has no RTC now). When it fails to receive the new time it would then be standing still. So it is nice to have without power failure.

                  My Domotica project: http://www.pidome.org

                  T 1 Reply Last reply
                  0
                  • J John

                    All - help me understand the use-case for a RTC on a sensor please.

                    http://forum.mysensors.org/topic/284/simple-temp-light-time-setup-with-lcd-1-4-no-beta-anymore

                    Time currently is being pushed every minute by the device created on the controller to "the display" (It has no RTC now). When it fails to receive the new time it would then be standing still. So it is nice to have without power failure.

                    T Offline
                    T Offline
                    ToSa
                    Code Contributor
                    wrote on last edited by
                    #28

                    @hek @John
                    using the "time.h" library on the node the time will continue to run. It will not be very accurate (as accurate as the "millis" in arduino) which should be sufficient to turn off the water after 15 minutes (no matter if that's a few seconds off) and good enough to let the clock tick further unless the next successful submission is received from the controller.

                    J 1 Reply Last reply
                    0
                    • T ToSa

                      @hek @John
                      using the "time.h" library on the node the time will continue to run. It will not be very accurate (as accurate as the "millis" in arduino) which should be sufficient to turn off the water after 15 minutes (no matter if that's a few seconds off) and good enough to let the clock tick further unless the next successful submission is received from the controller.

                      J Offline
                      J Offline
                      John
                      Plugin Developer
                      wrote on last edited by John
                      #29

                      @ToSa
                      True, I personally will be using some self build wall clocks, and the display will get a bigger role in our household, so it would be nice to keep track of time as close as possible.

                      My Domotica project: http://www.pidome.org

                      1 Reply Last reply
                      0
                      • greglG Offline
                        greglG Offline
                        gregl
                        Hero Member
                        wrote on last edited by
                        #30

                        @ToSa
                        In my use case its a pool controller I use a rtc to do several things..but the desire to sync is really just to adjust for daylight savings changes.

                        1 Reply Last reply
                        0

                        Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                        Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                        With your input, this post could be even better 💗

                        Register Login
                        Reply
                        • Reply as topic
                        Log in to reply
                        • Oldest to Newest
                        • Newest to Oldest
                        • Most Votes


                        14

                        Online

                        12.0k

                        Users

                        11.2k

                        Topics

                        113.4k

                        Posts


                        Copyright 2025 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