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
  • vandia
    vandia over 8 years ago

    How to light up the LEDs is based on your particular device. Regular strips cannot be controlled one at a time (without a controller). Check the documentation of your strip to see how it's controlled. For this reason, I had to create my own assembly to control, though it required one pin per LED.

     

    For programming that, let's say you want to program a stereo display, where a higher sensor reading means it's closer. Use if statements, starting at closest: because starting lowest with this if can make all statements true!

     

    If (SHARP > 500) {turn on all 3 LEDs}

    else if (SHARP > 300) {turn on 2 LEDs}

    else if (SHARP > 100) {turn on 1 LED}
    else {turn off all LEDs}

     

    Just ensure to set a timer at the end of activating each check, and set all LEDs to OFF if the value range changed, or you may end up with false readings.

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

    How to light up the LEDs is based on your particular device. Regular strips cannot be controlled one at a time (without a controller). Check the documentation of your strip to see how it's controlled. For this reason, I had to create my own assembly to control, though it required one pin per LED.

     

    For programming that, let's say you want to program a stereo display, where a higher sensor reading means it's closer. Use if statements, starting at closest: because starting lowest with this if can make all statements true!

     

    If (SHARP > 500) {turn on all 3 LEDs}

    else if (SHARP > 300) {turn on 2 LEDs}

    else if (SHARP > 100) {turn on 1 LED}
    else {turn off all LEDs}

     

    Just ensure to set a timer at the end of activating each check, and set all LEDs to OFF if the value range changed, or you may end up with false readings.

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