EYE ON NPI - ams OSRAM TMF8806 Single-Zone direct Time of Flight sensor episode artwork

EPISODE · Oct 3, 2024 · 12 MIN

EYE ON NPI - ams OSRAM TMF8806 Single-Zone direct Time of Flight sensor

from Adafruit Industries · host Adafruit Industries

This week's EYE ON NPI is having Too Much Fun - it's the ams OSRAM TMF8806 Single-Zone direct Time of Flight sensor (https://www.digikey.com/en/product-highlight/a/ams/tmf8806-single-zone-tof) the latest in ams' series of ToF sensors. This sensor may seem like "YAToF" but there's a few things that caught our eye. One is the excellent pricing, about $2 in quantity. Another is the simplicity of function: unlike many ToF sensors, there isn't a massive firmware stack required to load on each boot. Instead, the default firmware is in ROM for a lightweight interface. We've stocked ToF sensors (https://www.adafruit.com/search?q=tof) for quite a while - mostly the ST VL series. These sensors have developed quite a bit over the years, starting with the 100mm-range VL6180 (https://www.adafruit.com/product/3316) and continuing onto multi-grid devices that we've covered on previous EYE ON NPI's (https://www.youtube.com/watch?v=3PocFz427NE). The way these work is by blasting laser pulses out of a VCSEL (https://en.wikipedia.org/wiki/Vertical-cavity_surface-emitting_laser) which then bounces off of the target and the 'time of flight' is measured in the pF range to give accuracy and range. Easy to describe, but non-trivial to implement...the light doesn't bounce off perfectly, and a lot of individualy measurements need to be taken and then averaged - this is called the histogram. The histogram data is filtered in software to toss outliers and double-bounces, to get the 'true' calibrated distance. And it has to do this dozens of times a second. The complexity of the algorithm is what gives each product its accuracy, precision, repeatability and range - so its no surprise that its running on an in-package microcontroller. However, as the sensors have gotten more advanced, the firmware process has also gotten complex: for many ToF sensors you have to 'load' the firmware algorithm on boot (https://github.com/STMicroelectronics/stm32-vl53l5cx/blob/main/modules/vl53l5cx_buffers.h#L33) and even if you don't, its a non-trivial port to other platform. That's what caught our eye for the ams OSRAM TMF8806 (https://www.digikey.com/short/f9v8w20d), the description specifies "No FW download is required to operate this device, saving host MCU memory space, reducing startup time, and saving overall system power by enabling customers to quickly start the device and make measurements in a few milliseconds". The interface is trivial, they even provide the I2C commands required to boot, load firmware, and perform a reading, its about a dozen commands. For hardware, it's also a nice and simple integration - with a small OLGA package, I2C communication, and 1.8V or 3.3V logic level. One thing to watch for, the sensor comes with 3 'modes' - short, medium and long range. Minimum range for all of these is 10mm, the max is 200, 2500 or 5000mm. And,while the sensor can do 5000mm, it requires pretty specific calibration and lighting. The default range is 2500 and we recommend sticking to that if you can because then you get the benefit of built-in configuration and calibration for speed/simplicity. To get started fast, ams OSRAM supplies multiple drivers for Arduino or other C microcontrollers (https://github.com/ams-OSRAM/tmf8806_driver_arduino), generic Python (https://github.com/ams-OSRAM/tmf8806_driver_python) and Linux kernel (https://github.com/ams-OSRAM/tmf8806_driver_linux). You can also grab an eval board in 'shield' format that has a microcontroller for plug-and play usage (https://www.digikey.com/en/products/detail/ams-osram-usa-inc/TMF8806-EVM-EB-SHIELD/24768739) Add low power, super fast ToF sensing to your next design with the ams OSRAM TMF8806 Single-Zone direct Time of Flight sensor (https://www.digikey.com/short/f9v8w20d), in stock for immediate shipment from DigiKey! Order today and it will ship to you at pico-second speed, so that you can be integrating it by tomorrow morning.

This week's EYE ON NPI is having Too Much Fun - it's the ams OSRAM TMF8806 Single-Zone direct Time of Flight sensor (https://www.digikey.com/en/product-highlight/a/ams/tmf8806-single-zone-tof) the latest in ams' series of ToF sensors. This sensor may seem like "YAToF" but there's a few things that caught our eye. One is the excellent pricing, about $2 in quantity. Another is the simplicity of function: unlike many ToF sensors, there isn't a massive firmware stack required to load on each boot. Instead, the default firmware is in ROM for a lightweight interface. We've stocked ToF sensors (https://www.adafruit.com/search?q=tof) for quite a while - mostly the ST VL series. These sensors have developed quite a bit over the years, starting with the 100mm-range VL6180 (https://www.adafruit.com/product/3316) and continuing onto multi-grid devices that we've covered on previous EYE ON NPI's (https://www.youtube.com/watch?v=3PocFz427NE). The way these work is by blasting laser pulses out of a VCSEL (https://en.wikipedia.org/wiki/Vertical-cavity_surface-emitting_laser) which then bounces off of the target and the 'time of flight' is measured in the pF range to give accuracy and range. Easy to describe, but non-trivial to implement...the light doesn't bounce off perfectly, and a lot of individualy measurements need to be taken and then averaged - this is called the histogram. The histogram data is filtered in software to toss outliers and double-bounces, to get the 'true' calibrated distance. And it has to do this dozens of times a second. The complexity of the algorithm is what gives each product its accuracy, precision, repeatability and range - so its no surprise that its running on an in-package microcontroller. However, as the sensors have gotten more advanced, the firmware process has also gotten complex: for many ToF sensors you have to 'load' the firmware algorithm on boot (https://github.com/STMicroelectronics/stm32-vl53l5cx/blob/main/modules/vl53l5cx_buffers.h#L33) and even if you don't, its a non-trivial port to other platform. That's what caught our eye for the ams OSRAM TMF8806 (https://www.digikey.com/short/f9v8w20d), the description specifies "No FW download is required to operate this device, saving host MCU memory space, reducing startup time, and saving overall system power by enabling customers to quickly start the device and make measurements in a few milliseconds". The interface is trivial, they even provide the I2C commands required to boot, load firmware, and perform a reading, its about a dozen commands. For hardware, it's also a nice and simple integration - with a small OLGA package, I2C communication, and 1.8V or 3.3V logic level. One thing to watch for, the sensor comes with 3 'modes' - short, medium and long range. Minimum range for all of these is 10mm, the max is 200, 2500 or 5000mm. And,while the sensor can do 5000mm, it requires pretty specific calibration and lighting. The default range is 2500 and we recommend sticking to that if you can because then you get the benefit of built-in configuration and calibration for speed/simplicity. To get started fast, ams OSRAM supplies multiple drivers for Arduino or other C microcontrollers (https://github.com/ams-OSRAM/tmf8806_driver_arduino), generic Python (https://github.com/ams-OSRAM/tmf8806_driver_python) and Linux kernel (https://github.com/ams-OSRAM/tmf8806_driver_linux). You can also grab an eval board in 'shield' format that has a microcontroller for plug-and play usage (https://www.digikey.com/en/products/detail/ams-osram-usa-inc/TMF8806-EVM-EB-SHIELD/24768739) Add low power, super fast ToF sensing to your next design with the ams OSRAM TMF8806 Single-Zone direct Time of Flight sensor (https://www.digikey.com/short/f9v8w20d), in stock for immediate shipment from DigiKey! Order today and it will ship to you at pico-second speed, so that you can be integrating it by tomorrow morning.

NOW PLAYING

EYE ON NPI - ams OSRAM TMF8806 Single-Zone direct Time of Flight sensor

0:00 12:19

No transcript for this episode yet

We transcribe on demand. Request one and we'll notify you when it's ready — usually under 10 minutes.

API Intersection Stoplight Building a successful API requires more than just coding. It starts with collaborative design, focuses on creating a great developer experience, and ends with getting your company on board, maintaining consistency, and maximizing your API’s profitability.In the API Intersection, you’ll learn from experienced API practitioners who transformed their organizations, and get tangible advice to build quality APIs with collaborative API-first design.Jason Harmon brings over a decade of industry-recognized REST API experience to discuss topics around API design, governance, identity/auth versioning, and more.They’ll answer listener questions, and discuss best practices on API design (definition, modeling, grammar), Governance (multi-team design, reviewing new API’s), Platform Transformation (culture, internal education, versioning) and more.They’ll also chat with experienced API practitioners from a wide array of industries to draw out practical takeaways and insights you can use.H TV Podcast Industries Chris Jones, Derek O'Neill and John Harrison. TV Podcast Industries TV Podcast Industries is a podcast that provides discussions and reviews of various TV shows, including recent popular series like Alien Earth, The Sandman, The Last of Us, The Boys, and Daredevil Born Again. They also cover shows such as Ironheart, Star Trek: Picard, The Rings of Power, and many more, spanning both Marvel and DC universes, as well as other genres. Heart to Heart Podcast One on One / Next Level Studios In the Heart to Heart Podcast, we talk to some of our favorite & most interesting people in the entertainment industry so you can feel empowered and learn that even in the most challenging of industries, where there’s a will there’s a way.Whether you’re an actor, a writer, a casting director, a talent rep, or just someone interested in the behind the scene happenings of the entertainment industry, this podcast will have something for you. NOW, this isn’t just another How To podcast for actors. Plenty of those shows already exist. In Heart to Heart, every guest will share stories inspired by their sometimes winding path to success on their own terms. Revisionist History Pushkin Industries Revisionist History is Malcolm Gladwell's journey through the overlooked and the misunderstood. Every episode re-examines something from the past—an event, a person, an idea, even a song—and asks whether we got it right the first time. From Pushkin Industries. Because sometimes the past deserves a second chance.To get early access to ad-free episodes and extra content, subscribe to Pushkin+ in Apple Podcasts or at pushkin.fm/plus.iHeartMedia is the exclusive podcast partner of Pushkin Industries.

Frequently Asked Questions

How long is this episode of Adafruit Industries?

This episode is 12 minutes long.

When was this Adafruit Industries episode published?

This episode was published on October 3, 2024.

What is this episode about?

This week's EYE ON NPI is having Too Much Fun - it's the ams OSRAM TMF8806 Single-Zone direct Time of Flight sensor (https://www.digikey.com/en/product-highlight/a/ams/tmf8806-single-zone-tof) the latest in ams' series of ToF sensors. This sensor...

Can I download this Adafruit Industries episode?

Yes, you can download this episode by clicking the download button on the episode player, or subscribe to the podcast in your preferred podcast app for automatic downloads.
URL copied to clipboard!