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 I need help detecting an objects proximity, and lighting up led's with an arduino uno.
  • 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
  • Replies 5 replies
  • Subscribers 393 subscribers
  • Views 721 views
  • Users 0 members are here
  • strip
  • proximity
  • led
  • arduino
  • sensor
Related

I need help detecting an objects proximity, and lighting up led's with an arduino uno.

givingtnt
givingtnt over 8 years ago

so here's what I want to do. I have a led strip (or more than one idk) and I want to detect an object. as it comes closer, the leds light up in sequence. (kinda like those audio display things)  gradually lighting up untill the whole strip is lit up.

 

what kind of sensor should I use ?

and led s ?and how do I make them light up one at a time ? (say this is the strip : 0-0-0-0-0, I want them to light up like : 1-0-0-0-0, 1-1-0-0-0, 1-1-1-0-0, 1-1-1-1-0, 1-1-1-1-1 as the object gets closer)

 

 

 

Im very new to this stuff. thanks !

  • Sign in to reply
  • Cancel

Top Replies

  • dougw
    dougw over 8 years ago +2
    This isn't an arduino solution, but you can use an LM3914 chip - it will drive more LEDs (up to 10) as the input voltage increases, just like the bar graph you sited. You can find a Sharp distance sensor…
  • jw0752
    jw0752 over 8 years ago in reply to givingtnt +1
    You can use the IR sensor that was used in the book to read a distance. Then you can have the Arduino turn on an appropriate number of LEDs to correspond to the output of the IR Sensor. If I remember correctly…
Parents
  • jw0752
    jw0752 over 8 years ago

    Hi Marc-Andre,

    Chapter 4 Page 86 of Jeremy Blum's Book Exploring Arduino shows how to build a sweeping Distance Sensor that lights up a series of LEDs depending on the proximity. You can ignore the sweeping portion and just build the distance section. Here is Jeremy's web site:

     

    http://www.exploringarduino.com/content/ch4/

     

    This is an excellent book for learning about the Arduino and many of the basic things that can be done with it.

     

    John

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • givingtnt
    givingtnt over 8 years ago in reply to jw0752

    thats kind of half of what I want.

     

    I want a system that the closer you get, the more leds light up.

     

    this one just lights up the led when it detects something. I need it to light up more and more leds as the item comes closer to the sensor.

     

    the range of travel is around 15cm

     

    also, can you reccomend a red, singularly adressable led strip ?

     

    or should I just make my own grid ?

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Reply
  • givingtnt
    givingtnt over 8 years ago in reply to jw0752

    thats kind of half of what I want.

     

    I want a system that the closer you get, the more leds light up.

     

    this one just lights up the led when it detects something. I need it to light up more and more leds as the item comes closer to the sensor.

     

    the range of travel is around 15cm

     

    also, can you reccomend a red, singularly adressable led strip ?

     

    or should I just make my own grid ?

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Children
  • jw0752
    jw0752 over 8 years ago in reply to givingtnt

    You can use the IR sensor that was used in the book to read a distance. Then you can have the Arduino turn on an appropriate number of LEDs to correspond to the output of the IR Sensor. If I remember correctly there are two versions of the IR sensor. One for relatively close detection and one for up to a couple meters. The UNO would need an input for the sensor and would still have perhaps 10 or 12 outputs available to drive LEDs. Sorry I thought the project I mentioned was set up to do what you wanted. Another path that you can explore would be a simple LED Voltage indicator. I googled LED voltage indicator and there were lots of circuits and hardware mentioned. In your case you would use it to measure a representative of the voltage of the output of the IR sensor.

     

    I will think on this some more and may have some more suggestions but also the other guys will also probably give you some good ideas.

     

    John

    • 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