element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • 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 & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
  • 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
Robotics
  • Technologies
  • More
Robotics
Forum Industry isolated communication
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Robotics to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Replies 17 replies
  • Subscribers 64 subscribers
  • Views 1943 views
  • Users 0 members are here
  • industry
  • communication
Related

Industry isolated communication

ltomi91
ltomi91 over 10 years ago

Dear Everybody!

 

I search the best solution for the following problem.

I want to establish isolated communication between two devices. 2x 8 input and 8 output should be connected (one-way). First think the optocoupler, but it requires a lot of wires, and these devices are in a noisy, industry environment, so necessary the good interface, e.g. RS485. I was looking for any "target" IC, but could not find it.

I attached a picture from this situation.

 

Thank you in advance (and sorry for my english image ) !

Attachments:
image
  • Sign in to reply
  • Cancel

Top Replies

  • Robert Peter Oakes
    Robert Peter Oakes over 10 years ago +2
    and from a non optical approach, TI has some isolated tranceivers for RS485 for a few $$$ each http://www.ti.com/lit/sg/slyt484a/slyt484a.pdf these provide full galvanic isolation upto about 4KV Either…
  • michaelkellett
    michaelkellett over 10 years ago +1
    You haven't really told us enough but if you can get away with RS485 speeds why not use a fibre optic link. Plastic fibre and associated parts are quite cheap and easy to use - you would need one twin…
  • Robert Peter Oakes
    Robert Peter Oakes over 10 years ago +1
    What are the two devices, what voltge levels are we dealing with and how far apart are they, as Michael has already stated, more information would be very handy to enable us to help you better
Parents
  • Robert Peter Oakes
    Robert Peter Oakes over 10 years ago

    What are the two devices, what voltge levels are we dealing with and how far apart are they, as Michael has already stated, more information would be very handy to enable us to help you better

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Cancel
Reply
  • Robert Peter Oakes
    Robert Peter Oakes over 10 years ago

    What are the two devices, what voltge levels are we dealing with and how far apart are they, as Michael has already stated, more information would be very handy to enable us to help you better

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Cancel
Children
  • ltomi91
    ltomi91 over 10 years ago in reply to Robert Peter Oakes

    First of all, thank you the replys (also Michael) !

    Sorry the little information, but I did not know much about the situation. The voltage level is 24VDC, on both sides (1 robot and 1 CNC machine). I think the speed non time-critical (so no need a many MHz...). The distance I think some meters, but I inquire this.

    Edit: the distance is 25 meter.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Robert Peter Oakes
    Robert Peter Oakes over 10 years ago in reply to ltomi91

    It would probably be worth building a parallel to serial adapter at each end to send the 8 bits down a differential pair (RS485), this will minimize noise and allow plenty of didtance to be covered (More than enough for 25Meters)

     

    you will need to drop the levels to 5V probably then into a shift register or a simple micro-controller with a serial interface (Arduino UNO would be a simple choice, or if your buyilding your own boards, base it on an ATMEGA328 so you can esily prototype it with an UNO at each end

     

    to go from 24V to the 5V, a simple opto isolator chip would work (4 channel device * 2 at each end). A RS485 tranceiver would be used between the two UNO/ATMEGA328s for the main comms

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • ltomi91
    ltomi91 over 10 years ago in reply to Robert Peter Oakes

    I am more skilled in the Microchip PIC microcontrollers (but I think this irrelevant).

    So the basic theory:

    - For the 8 channel use 1-1 MCU, and between two MCU use a RS485 interface.

    - In "Tx PIC" the program polling (or handle an interrupt) the 8 inputs, and if detected any difference compared to the previous state, then send the actual state on serial interface (trough RS485).

    - In "Rx PIC" the program received the serial data, and put that to output (8 pin).

    - ... and vica-versa.

     

    Opinion?

    Thank you!

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Robert Peter Oakes
    Robert Peter Oakes over 10 years ago in reply to ltomi91

    Exactly, and yes you are correct, any micro will suffice and if your familuar with PIC, then go for it, it will work as good as any other for this application

     

    In transmission you can try sending the byte, then the XOR of it as a check, that way there is no need for a return except for acknowledgement and as the serial speed can be fast, this will not impeed performance, this all depends on how improtant it is for 100% accuracy, other mechanisms can be imployed like a message ID etc added to transmission and the ack can be an XOR or other checksum of the entire package

     

    Regards

    Peter

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • 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