element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Arduino
  • Products
  • More
Arduino
Arduino Forum Arduino internal clock inaccurate??
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Arduino to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Verified Answer
  • Replies 14 replies
  • Subscribers 392 subscribers
  • Views 1019 views
  • Users 0 members are here
  • clock
  • explodedclock
  • brass
  • collectable
  • antique
  • art
  • arduino
  • no4
Related

Arduino internal clock inaccurate??

jonivanart
jonivanart over 9 years ago

Hello! I am a newbie here and fairly new with the Arduino. I am building a piece of art that has a 150 year old clock as the main subject. I am going to use an Arduino to drive a stepper that runs the clock, a DC motor for the Chime drive (For visual effect) and a solenoid for the escapement mechanism also for visual effect. I've heard that the internal clock on the Arduino is inaccurate from others. What will I need to make it have an accurate output?image

  • Sign in to reply
  • Cancel

Top Replies

  • shabaz
    shabaz over 9 years ago +3 verified
    Hi Jon, Interesting project! Will it not damage the mechanism though? Maybe something like that is worth a lot of money. You didn't say how accurate you wanted : ) Anyway, the Arduino clock is ok, but…
  • Robert Peter Oakes
    Robert Peter Oakes over 9 years ago +2
    It sounds like what you need is a very accurate pulse / time period, not he arduino actually keeping time Using an internet connected NTP client as sugested by shabaz would be an easy way to keep time…
  • jonivanart
    jonivanart over 9 years ago in reply to shabaz +1
    Thanks! To answer the first question. "Will it damage the clock and maybe it's worth a lot of money? I have plans to put the drive on the proper gear with the least amount of drag/pressure on the coupling…
  • jonivanart
    0 jonivanart over 9 years ago in reply to shabaz

    I do tend to complicate things sometimes. LOL! Would the MP3 board convert somehow to the hammers on the chimes?

    There won't be a speaker. There will be 4 different rods that are tuned at different lengths to make only 4 notes available. Another reason for the second Arduino. Allowing me to build program/tunes as I get the time to. Then I can just reload the file with the added tunes whenever I want to. :-) I want to get good enough to make base notes/programs for each individual hammer then build arrangements. Thats a lot huh? LOL!

    I'm thinking I need to build the program for the main clock stepper to simply keep the clock in time. Then add the second hand stepper to that.

    Then either figure out how to make a trigger for different combinations of chime signals to the second Arduino. How can I make a communication signal between the 2? It will need to communicate a signal for Hourly- 12 different signals then quaterly then random tune mode on then random tune mode on.

    Or do the display part next.

    Am I gonna have enough pins to do all this? LOL!

    1- Display

    2- Stepper Hour and minute

    3- Stepper second

    4- Solenoid for escapement latch mechanism

    5- Chime signals to other Arduino(communication SPI maybe?)

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • jonivanart
    0 jonivanart over 9 years ago in reply to shabaz

    BTW... Thanks again. I will give you credit for helping me.  You have been very helpful...

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • shabaz
    0 shabaz over 9 years ago in reply to jonivanart

    Hi Jon,

     

    Sorry I didn't get a chance to look into this earlier, and looks like I made a mistake, I didn't read closely and realize that there were mechanical chimes.

    In that case, yeah the mp3 function is really not needed.

    Personally I'd try to get it all functioning with one Arduino (I generally don't like multi-microcontroller solutions unless there is a real reason for them) since

    sometimes it can complicate things more than simplify them.

    There are I/O expanders to give you more capability if you run out of Arduino pins. However if you feel more comfortable with separated microcontrollers

    then you could use perhaps a serial interface for communications between them. Some information on a method to do that is here: https://www.arduino.cc/en/Reference/SoftwareSerial

    I'd say your project is moderately complex though, so you may want to simplify for the first iteration and do the chimes handling and chimes sequence upload later.

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • jonivanart
    0 jonivanart over 9 years ago in reply to shabaz

    Thanks. The I/O expanders do sound like a great idea and yea the plan was to get the bases operation/programming first then expand to the chimes later.

    This is definitely a complex project but I'm not one to shy away simply because of the work it will take. The last project, a guitar, took me 5 months to build. https://www.youtube.com/watch?v=kQLxJfoCihs

    I will keep you updated on the project.

    Here is what I have for now. https://www.youtube.com/watch?v=RS1lEBb0C00

    I also have all the power suppply needs met. I have 2 laptop computer power supplies which combined have the 24vdc, 12vdc, and 5vdc outputs I will be needing. I will be mounting them next.

    Thanks for the help for now. :-)

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
<
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube