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 is arduino reliable for industrial environment for industrial application?
  • 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 Suggested Answer
  • Replies 52 replies
  • Answers 25 answers
  • Subscribers 397 subscribers
  • Views 8011 views
  • Users 0 members are here
  • dil
Related

is arduino reliable for industrial environment for industrial application?

Former Member
Former Member over 11 years ago

hi all,

i have used arduino uno to make datalogger for industy.i used sd card,rtc,lcd and some basic ic in my circuit.plz do rply.is it reliable to use arduino in industry?

  • Sign in to reply
  • Cancel

Top Replies

  • Former Member
    Former Member over 9 years ago +6 suggested
    Hello everyone, my name is Daren. I am an Engineer and Arduino software developer. This is the question I started asking when I had clients that needed specialized automation systems for industrial applications…
  • dougw
    dougw over 11 years ago in reply to mcb1 +3 suggested
    I hate to contradict, but can't leave people with an incorrect impression of the ATmega328. This chip does have a watchdog timer and it even has a programming lock for software security. The watchdog can…
  • Robert Peter Oakes
    Robert Peter Oakes over 11 years ago +2 suggested
    Agree with Michael Arduino is an echo system to allow rapid development and education without having to get out the soldering Iron for instance, the boards in general lack the protection circuits often…
Parents
  • Robert Peter Oakes
    0 Robert Peter Oakes over 11 years ago

    Agree with Michael

     

    Arduino is an echo system to allow rapid development and education without having to get out the soldering Iron for instance, the boards in general lack the protection circuits often required in industrial applications to protect the controller as well as many other potential safety and environmental considerations. I have some experience building systems for the gas industry and in this kind of environment it would not be allowed for instance.

     

    This does not mean that the micro-controller (ATMEGA328 on the UNO) is not suitable for use in industry, you just have to add all the other electronics required to meet the standards. The same goes for TI MCP430 series or other brands. In some areas like Automotive there are very strict requirements which is why you will find a significant percentage of cars use Motorola Micro controllers (Yes they do make them and yes you may never had heard of it). The chips are approved for use in this industry, the approval is expensive but there you go.

     

    As Michael said though, it depends on the specific industry and use and must be evaluated on a case by case basis. If it is a one off then you may simply have to make suitable modifications to the board and container to meet the legislations required for that use. If it is going in a field to measure temp and humidity, there is pretty much not much required except protecting from the elements (Unless the field is in a certain town in England sitting on top of 20M cubic feet of natural gas at 1000PSI  image yes it exists and I put a controller there )

     

    anyway I think you get the idea.

     

    Have fun, be safe

     

    Peter

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
  • Former Member
    0 Former Member over 10 years ago in reply to Robert Peter Oakes

    hello peter

    iam new to arduino i just done temperature monitor project with arduino,now i want to develop a project using current sensor CT coil that senses the running current of a ac application.

    can you suggest me in this.

    thanks in advance

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Robert Peter Oakes
    0 Robert Peter Oakes over 10 years ago in reply to Former Member

    Well the one nice thing about using a current sense coil or a hall effect current sensor is your circuitry is isolated from the mains but you still have to wire your sensor into it by disconnecting the mains wire and feeding it through the coil or the hall sensor current side circuit, this is the most dangerous part

     

    once this is done, the low side monitoring is relatively straight forward but depending on your skill level may change your approach (AND YOU STILL HAVE TO BE AWARE MAINS IS IN CLOSE PROXIMITY AND WILL KILL YOU GIVEN A CHANCE )

     

    First you need to ensure the output of the sensor is within range of the Arduino being used, for an UNO this would be 0 - 5V. now your current sense coil probably gives out an AC signal still so it will need to be rectified (Simple Diode  should work here) and then optionally smoothed with a capacitor to then be read by an ADC in the UNO. the other option here is to take the rectified signal but not smoothed into the ADC and sample at a quicker rate, you could then also measure the AC frequency and possibly perform true RMS calculations on the data to get more accurate readings.

     

    Without knowing the actual parts your going to use for the current sensing it is hard to provide better info but this should give you enough to think about your approach

     

    Provide a little more details and we can help better

     

    for practice and experimentation prior to hooking up to the mains I would suggest using a transformer with say a 3V AC output and get skilled at measuring this using the Arduino first, this way your not worrying about the actual measurement once your adding the current sensing into the mix

     

    At the measurement end there is no difference, the Arduino can not measure current. Actually most multimeters don't measure current, they nearly all convert it to a voltage first and measure that. Hence the use of a current shunt resistor

     

    hope this gets you started

     

    Peter

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
Reply
  • Robert Peter Oakes
    0 Robert Peter Oakes over 10 years ago in reply to Former Member

    Well the one nice thing about using a current sense coil or a hall effect current sensor is your circuitry is isolated from the mains but you still have to wire your sensor into it by disconnecting the mains wire and feeding it through the coil or the hall sensor current side circuit, this is the most dangerous part

     

    once this is done, the low side monitoring is relatively straight forward but depending on your skill level may change your approach (AND YOU STILL HAVE TO BE AWARE MAINS IS IN CLOSE PROXIMITY AND WILL KILL YOU GIVEN A CHANCE )

     

    First you need to ensure the output of the sensor is within range of the Arduino being used, for an UNO this would be 0 - 5V. now your current sense coil probably gives out an AC signal still so it will need to be rectified (Simple Diode  should work here) and then optionally smoothed with a capacitor to then be read by an ADC in the UNO. the other option here is to take the rectified signal but not smoothed into the ADC and sample at a quicker rate, you could then also measure the AC frequency and possibly perform true RMS calculations on the data to get more accurate readings.

     

    Without knowing the actual parts your going to use for the current sensing it is hard to provide better info but this should give you enough to think about your approach

     

    Provide a little more details and we can help better

     

    for practice and experimentation prior to hooking up to the mains I would suggest using a transformer with say a 3V AC output and get skilled at measuring this using the Arduino first, this way your not worrying about the actual measurement once your adding the current sensing into the mix

     

    At the measurement end there is no difference, the Arduino can not measure current. Actually most multimeters don't measure current, they nearly all convert it to a voltage first and measure that. Hence the use of a current shunt resistor

     

    hope this gets you started

     

    Peter

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
Children
No Data
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