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
Sensors
  • Technologies
  • More
Sensors
Sensor Forum When you need many sensors at once...
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Sensors to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Verified Answer
  • Replies 26 replies
  • Answers 4 answers
  • Subscribers 347 subscribers
  • Views 3877 views
  • Users 0 members are here
Related

When you need many sensors at once...

screamingtiger
screamingtiger over 9 years ago

I have a project where I may need 25+ accelerometers and magnetometers.

 

I see three options for sensors:

-Direct wire, which could be possible with shift registers

-I2c, however many sensors of the same brand only ship with 1 or 2 address options and I dont want to have dozens of different brands with with different protocols

-SPI, same problem as I2c.

 

I found the I2C sensors to be cheap, is there a way to use numerous sensors with the same address within one bus?

  • Sign in to reply
  • Cancel

Top Replies

  • dougw
    dougw over 9 years ago +4 verified
    Linear Technology makes chips to handle this situation - up to 127 devices with the same address can be handled on one bus, but you may need one of these chips at each sensor. They cost about $2 each.…
  • shabaz
    shabaz over 9 years ago in reply to gdstew +2 suggested
    yet here you are again pushing the easily dis-proven idea that I2C is only good for short distances between boards Where did I state with the explicitness that you suggest, that it is only good for short…
  • michaelkellett
    michaelkellett over 9 years ago in reply to screamingtiger +2
    Another method you might consider (it's cheaper for the parts but has other issues) would be to use a single micro with plenty of pins (50 spare IOs needed) and bit bang as many IC2 buses as you need.…
  • jw0752
    0 jw0752 over 9 years ago

    Hi Joey,

    Hopefully, shabaz , jc2048  , michaelkellett  or one of the other guys will have some insights.

    John

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

    How about an I2C bus multiplexer ?

     

    TCA9544A | I2C Multiplexer, Switch | I2C | Description & parametrics

     

    Looks like you can use up to 8 of these quad units.

     

    "Related end equipment: Products With   I2C Slave Address Conflicts (For Example, Multiple, Identical Temp   Sensors)"

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

    I thought about a shift register on the data line, I could move it around but not sure if that would work or not.

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

    Hi,

     

    Why do not using CS pin instead I2C address to chose which slave to talk to, when multiple same brand sensors?

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

    Hi Joey,

     

    beacon_dave mentions a good approach if you really need lots of same-address devices. But, you could try to examine the device datasheet and the PCB in case it is easy to expand to more than a couple of addresses, since sometimes the PCB will have hard-wired connections whereas sometimes the ICs may be more flexible and have (say) 8 addresses.

    Another approach is to switch in/out parallel segments of the bus, by using I2C bus translators with an enable input. TI has such devices.

    Or, yet another method is to not put everything on one bus, and perhaps bit-bang out of some additional I/O pins of the microcontroller, i.e. an I2C bus master could be written in software.

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

    By the way, generally the reason this isn't normally an issue is because not many people need so many of the same device on the same circuit board. I2C isn't intended for long distances, so if you're trying to get these sensors to work across separated devices, then this could be an issue.

    Sometimes I2C is used across multiple boards, but they are still within the same enclosure, i.e. the distance is controlled. There are exceptions, but generally I2C isn't the best choice if you want to connect multiple physical devices like (say) a home alarm system sensors. I don't know your intended use-case however..

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

    Shabaz makes some good points so you need to tell us a little bit more like:

     

    which types of sensor you want to use

    how far they will be from the processor

    what kind of processor you prefer

    how fast the data must be updated

     

    MK

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

    I will start by asking why 25+ sensors? Maybe the way you use them is too narrow? Curious tho.image

    Clem

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

    I2C is not limited to short distances nor was it designed solely as a "board to board" communications interface. All VGA DDC2 cables and all HDMI

    cables use I2C (100 KHz) to read information about the monitor that the video card is connected to. I have a 25 ft. HDMI cable connected between

    a LCD TV and one of my computer's video cards and it has no trouble reading the TV information. It does require proper I2C signal cable position,

    low cable capacitance, and proper signal termination.

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

    Not that old story again. You discussed this quite a while back:

    https://www.element14.com/community/message/72520/l/i2c-buss#72520

     

    If we take the time to analyze the signal on the wire then sure you can push I2C - but I think it is fairly clear that if the person asking the question doesn't know how to connect multiple same-address sensors then they may not have access to an oscilloscope or even know what to look out for - hence the gentle probing about their use-case.

     

    At a first approximation, I2C is typically used for on-board and board-to-board communication within an enclosure, with some exceptions being the cable you refer to - it's an exception that works because engineers examined the signal on the wires in detail. If you have (possibly) limited hardware and test tools and using whatever cable is at hand, then you wouldn't use it across 25 feet.

    In fact you yourself came to some similar conclusion when you stated on that thread

    so keeping distances as short as possible and routing away from any noise sources is a good idea

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