3-Channel Wide FOV Time-of-Flight Distance Sensor Using OPT3101 (No Headers)

SKU: POLOLU-3412 Brand: Pololu
This board is a 3-channel time-of-flight proximity and distance sensor module based on the OPT3101 IC from Texas Instruments. It emits infrared light in...
$65.95 AUD, inc GST
$59.95 AUD, exc GST

Available with a lead time
Expect dispatch between Nov 27 and Dec 02

Quantity Discounts:

  • 6-12 $57.55 (exc GST)
  • 12+ $55.75 (exc GST)
- +

0 from local stock, 1 supplier stock; your order will dispatch between Dec 1 to Dec 10. And yes, stock levels and lead times are accurate!

Shipping:

  • $7+ Standard (5+ days*, tracked)
  • $11+ Express (2+ days*, tracked)
  • FREE Pickup (Newcastle only - must order online*)

Shipping costs may increase for heavy products or large orders.

Exact shipping can be calculated on the view cart page.

*Conditions apply, see shipping tab below.

This board is a 3-channel time-of-flight proximity and distance sensor module based on the OPT3101 IC from Texas Instruments. Unlike conventional IR sensors that use the intensity of reflected light to estimate the distance to an object, this board emits 940 nm infrared light pulsed at 10 MHz, and then measures the phase (delay) of the reflected signal, which corresponds to the distance to the target object. It also measures the amplitude of the signal, which indicates how bright/reflective/close the object is.

This board has three channels that each cover approximately 50° to 60°, giving the sensor a wide field of view (FOV). In favorable conditions, the sensor can measure objects at distances up to 1 m. Distance measurements are available through the sensor’s I²C interface, which is also used to configure the sensor.

Emitter channels and field of view of the OPT3101 distance sensor module.

This module is designed to be mounted onto the 7-pin connector on the front of a TI-RSLK MAX chassis board, but it can be used with any I²C-capable device. The board can be powered from a 2.5 V to 5.5 V supply. On-board regulators supply the 3.3 V logic voltage to the OPT3101. The board includes a circuit that shifts the I²C clock and data lines to the same logic voltage level as the supplied VIN, making it simple to interface the board with 3.3 V or 5 V systems, and the board’s 0.1" pin spacing makes it easy to use with standard solderless breadboards and 0.1" perfboards.

Details for item #3412

This version does not include any headers and ships as shown in the main product picture. Pololu carry an alternate version with headers soldered intended specifically for use with the TI-RSLK MAX.

Specifications

  • Dimensions: 1.1" × 1.2" (27.9 mm × 30.5 mm)
  • Weight without header pins: 2.7 g (0.095 oz)
  • Operating voltage: 2.5 V to 5.5 V
  • Sensor channels: 3 (each with an FOV of approximately 50° – 60° for a combined FOV of nearly 180°)
  • Supply current: 130 mA (typical average during operation in high-brightness mode with 3.3 V power supply)
  • Distance measuring range: up to 1 m (3.3 ft) (depends on the target object; see the FAQs tab for more information on distance measurement accuracy)

Connections

Four connections are necessary to use the OPT3101 board: GND, VIN, SDA, and SCL. The VIN pin should be connected to a 2.5 V to 5.5 V source, and GND should be connected to 0 volts. The board’s I²C pins (SCL and SDA) should be connected to an I²C bus operating at the same logic level as VIN.

Pinout

Pin Description
GND The ground (0 V) connection for your power supply. Your I²C control source must also share a common ground with this board.
VIN This is the main 2.5 V to 5.5 V power supply connection.
SDA Level-shifted I²C data line: high is VIN, low is 0 V. Pulled up to VIN with a 10kO pull-up resistor.
SCL Level-shifted I²C clock line: high is VIN, low is 0 V. Pulled up to VIN with a 10kO pull-up resistor.
GP1 Configurable 3.3 V I/O pin. This pin is not level-shifted.
GP2 Configurable 3.3 V I/O pin. This pin is not level-shifted.
RST/MS Input pin that can be used to reset the board or trigger a new sample. (Both of those functions can also be done with I²C.) Pulled up to 3.3 V with a 10kO pull-up resistor. This pin is not level-shifted.

Schematic diagram

This schematic is also available as a downloadable PDF (144k pdf).

I²C communication

The OPT3101 can be configured, controlled, and queried through the I²C bus. Level shifters on the I²C clock (SCL) and data (SDA) lines enable I²C communication with microcontrollers operating at the same voltage as VIN. A detailed explanation of the I²C interface on the OPT3101 can be found in the “I2C slave” section of the OPT3101 datasheet, and more detailed information about I²C in general can be found in NXP’s I²C-bus specification (1MB pdf). The sensor’s default 7-bit slave address is 0x58 (1011000 in binary).

Calibration

Each board includes a 256-byte EEPROM that holds an individualized factory calibration. The OPT3101 automatically loads the calibration when it starts up. This calibration defines a distance reading of 100 mm to correspond to an object that is 100 mm from the edge of the board.

Pololu recommend not doing the internal crosstalk calibration procedure described in TI’s documentation; the effect it would have has already been incorporated into the illumination crosstalk numbers in the factory calibration.

Configuration

The main configuration options that you can choose for the OPT3101 are the channel, brightness, and sample rate. These options are set over I²C, and you can change them between samples.

The channel setting determines which pair of IR LEDs will turn on, and thus determines the direction in which the sensor will be most sensitive to objects. There are three channels: TX0 (left), TX1 (middle), and TX2 (right).

There are two brightness settings available for the IR LEDs: low and high (also known as HDR0 and HDR1, respectively). Low brightness mode only works well for nearby objects (within about 20 cm). High brightness mode works for longer ranges, but objects that are too reflective or too close can cause the sensor to saturate, meaning that it fails to measure a distance. You can configure the OPT3101 to use one of these brightnesses, or you can make it use an adaptive brightness mode, where it automatically selects between low or high brightness.

The measurements performed by the OPT3101 are divided into basic units called a frame or a sample. Each frame has a specific configuration, but you can change the configuration between frames. You can configure the OPT3101 to start frames continuously, or to wait for your signal before starting a frame (which is called monoshot mode). When a frame is complete, you can read its results from the OPT3101’s output registers.

Each frame consists of a configurable number of subframes that take 0.25 ms each. The results from each subframe are averaged together. By increasing the number of subframes, you can decrease the noise of your measurements, but the frames will be slower. The number of subframes can be any power of 2 from 1 to 4096.

For more details about how to configure and initialize the OPT3101, please see Pololu's Arduino library for the OPT3101 or the OPT3101 datasheet.

Sample code

Pololu have written a basic Arduino library for the OPT3101, which can be used for interfacing this sensor with an Arduino or Arduino-compatible controller. The library and its included examples make it simple to configure the OPT3101 and read the distance data through I²C.

People often buy this product together with:

VL53L1X Time-of-Flight Distance Sensor Carrier with Voltage Regulator, 400cm Max VL53L1X Time-of-Flight Distance Sensor Carrier with Voltage Regulator, 400cm Max
VL53L3CX Time-of-Flight Multi-Target Distance Sensor Carrier with Voltage Regulator, 500cm Max VL53L3CX Time-of-Flight Multi-Target Distance Sensor Carrier with Voltage Regulator, 500cm Max
Robot Arm Kit for Romi Robot Arm Kit for Romi

Dimensions

Size: 1.1" × 1.2"
Weight: 2.4 g

General specifications

Maximum range: 1 m1
Channels: 3
Interface: I²C
Minimum operating voltage: 2.5 V
Maximum operating voltage: 5.5 V
Supply current: 130 mA2
Header pins soldered?: N

Identifying markings

PCB dev codes: irs15j
Other markings: 0J12947

Notes:

1
Effective range depends on several factors including target size and reflectivity.
2
Typical average during operation in high-brightness mode with 3.3 V power supply.

File downloads

Recommended links

Product Comments

Exact shipping can be calculated on the view cart page (no login required).

Products that weigh more than 0.5 KG may cost more than what's shown (for example, test equipment, machines, >500mL liquids, etc).

We deliver Australia-wide with these options (depends on the final destination - you can get a quote on the view cart page):

  • $3+ for Stamped Mail (typically 10+ business days, not tracked, only available on selected small items)
  • $7+ for Standard Post (typically 6+ business days, tracked)
  • $11+ for Express Post (typically 2+ business days, tracked)
  • Pickup - Free! Only available to customers who live in the Newcastle region (must order online and only pickup after we email to notify you the order is ready). Orders placed after 2PM may not be ready until the following business day.

Non-metro addresses in WA, NT, SA & TAS can take 2+ days in addition to the above information.

Some batteries (such as LiPo) can't be shipped by Air. During checkout, Express Post and International Methods will not be an option if you have that type of battery in your shopping cart.

International Orders - the following rates are for New Zealand and will vary for other countries:

  • $12+ for Pack and Track (3+ days, tracked)
  • $16+ for Express International (2-5 days, tracked)

If you order lots of gear, the postage amount will increase based on the weight of your order.

Our physical address (here's a PDF which includes other key business details):

Unit 18, 132 Garden Grove Parade
Adamstown
NSW, 2289
Australia

Take a look at our customer service page if you have other questions such as "do we do purchase orders" (yes!) or "are prices GST inclusive" (yes they are!). We're here to help - get in touch with us to talk shop.

Have a product question? We're here to help!

Write Your Own Review

Guides

The Maker Revolution

The Maker Revolution celebrates the creation of new devices and the modification of existing ones - ...
The Maker Revolution celebrates the creation of new devices and the modification of existing ones - ...

Projects

Pi Zero Motion Sensing Camera

The Pi Zero Motion Sensing Camera is a portable security camera using a Pi Zero 2W, Pi Zero camera,...
The Pi Zero Motion Sensing Camera is a portable security camera using a Pi Zero 2W, Pi Zero camera,...

555 Timer Step Sequencer Synthesiser

If you, like me, have been inhaling so much flux that the bronchioles of your lungs have mutated to...
If you, like me, have been inhaling so much flux that the bronchioles of your lungs have mutated to...

Wireless QI Phone Charger Powered by Raspberry Pi

I have a new phone and want the battery health to last as long as possible. Charging it to 100% ove...
I have a new phone and want the battery health to last as long as possible. Charging it to 100% ove...
Feedback

Please continue if you would like to leave feedback for any of these topics:

  • Website features/issues
  • Content errors/improvements
  • Missing products/categories
  • Product assignments to categories
  • Search results relevance

For all other inquiries (orders status, stock levels, etc), please contact our support team for quick assistance.

Note: click continue and a draft email will be opened to edit. If you don't have an email client on your device, then send a message via the chat icon on the bottom left of our website.

Makers love reviews as much as you do, please follow this link to review the products you have purchased.