IR Distance Sensor

Function introduction

This module integrates two IR distance sensors, it measures distance through reflected light waves, It is used to detect the presence of an object within a specific range. The sensor consists of an IR LED and a photosensor (phototransistor) pair. The light emitted by the IR LED gets reflected by any object placed in front of the sensor and this reflection is detected by the photosensor(phototransistor). Any white (or lighter) colored surface reflects more than a black (or darker) colored surface. It is suitable to be used to measure complex objects, such as tracing an object.

Hardware setup

  • NyBoard

Connecting to the NyBoard with wire as shown in the following picture:

  • BiBoard

For specific use, the end connected to the sensor can be fixed on the robot's head (included in Bittle's mouth, or attached to the top of Nybble's head), of course, you can also use your creativity according to your needs.

Software setup

Install the latest version of the Adafruit NeoPixel library using the Arduino IDE.

The code using this sensor has been integrated into the OpenCat (NyBoard)/ OpenCatEsp32 (BiBoard) project. Uncomment the line #define DOUBLE_INFRARED_DISTANCE in the OpenCat.ino / OpenCatEsp32.ino, as shown in the figure below, and then use the Arduino IDE to upload the sketch to the robot main board. The sketch can reproduce the example function of integrating the robot action.

NyBoard

Prepare the Arduino UNO development environment

With NyBoard V1_*, you can simply choose Arduino Uno.

BiBoard

If you want to test the function of this sensor alone or want to learn more about its principles. You can use the Arduino IDE to upload the demo sketch(testDoubleInfraredDistance.ino), as shown below:

This demo sketch implements real-time printing of the analog values (rL, rR) and data that have been processed (dL,dR) of the two analog pins (A2 and A3) in the serial monitor. You can also use the serial plotter to view the two analog pins (A2 and A3) more intuitively. The waveform graph is generated by the analog value of the pin output along the time axis.

The demo code

The demo code is in the OpenCat code repository on GitHub (specific path: OpenCat/ModuleTests/testDoubleInfraredDistance). You can visit our GitHub code repository https://github.com/PetoiCamp/OpenCat to download the complete code, as shown in the following picture:

Last updated