cpubbs论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

LabVIEW+单片机学习套件全套教程资料下载[免费]LabVIEW论坛精华列表贴USB0816数据采集卡《LabVIEW宝典》
LabWindows/CVI论坛精华贴NET0816以太网数据采集卡RC0210远程设备授权系统 关闭关停锁定打开设备 户外分布式数据采集
NET1624低速高精度以太网数据采集卡WIFI0824SD无线WIFI网络数据采集卡脱机运行 SD存储 小尺寸微型 串口采集远程采集 安卓 手持移动采集 纪录仪
查看: 2041|回复: 10

红外测距传感器GP2D12[转贴]

[复制链接]
发表于 2008-12-25 22:39:38 | 显示全部楼层 |阅读模式
原文件地址:http://www.wgps.tp.edu.tw/lego/%B1%D0%BE%C7%C0%C9%AE%D7/%BC%D6%B0%AA%A4%E5%C4m/%AEL%B4%B6%A4%BD%A5q%B1%C0%A5X%AA%BA%AC%F5%A5~%BDu%B4%FA%B6Z%B7P%B4%FA%BE%B9GP2D12.doc


夏普公司推出的红外测距传感器GP2D12外形很小,可测量范围为10-80厘米,其接口是标准的三线接口(Vcc/GND/Output)。我们可以做一个转接电路,让它能与RCX相连,其硬件和编程可以参考:
http://www.acroname.com/robotics/info/examples/GP2D12-3/GP2D12-3.html


应用:可以在灭火比赛中应用,也可以应用在机器人走迷宫等等。
例子: 1.沿墙壁走的机器人
 楼主| 发表于 2008-12-25 22:39:58 | 显示全部楼层
2.沿墙壁走的机器人的行走状态


This article, complete with text and images, was written by Philippe Hurbain.
Introduction
I long thought that a distance sensor would be a nice addition to Mindstorms robots, but ultrasonic ones were bulky and power hungry (I've since found the SRF04 Ultrasonic Range Finder that can perhaps be used), and simple infrared methods like the one I used in my radar car detect obstacles but don't give true distance measurement.  The solution came from Andreas Peter (thanks Andreas for showing me these devices !) who interfaced a Sharp GP2D05 to RCX.
These small and rather inexpensive infrared devices are able to measure distance between 10 and 80 cm with reasonable precision and good immunity to variations of obstacles
 楼主| 发表于 2008-12-25 22:40:19 | 显示全部楼层
reflectivity and ambient light.  For more informations, see the GP2D12 datasheet and the Acroname article: Demystifying the Sharp IR Detectors.
Andreas's sensor interface has a few drawbacks though.  The Sharp GP2D05 he used has a digital serial output not well suited to RCX analog input, thus requiring a rather complex design, big and power hungry.
So I decided to try to connect the analog output GP2D12 sensor using the simplest design possible -- and use only power coming from sensor input.  This was a real challenge since the GP2D12 used 35mA under 5V, while RCX sensor input is current-limited to about 14mA!  Look at voltage versus current of sensor input power supply:
The main concept to achieve this goal was quickly imagined: store energy in a capacitor while the GP2D12 is not powered, then release it during measure.  Of course there is a penalty with this technique: conversion time is longer.  The GP2D12 requires 50ms per measure, while my circuit needs 300ms... there is no free lunch!
The first designs I imagined were rather complex, with timers and a sample-and-hold amplifier, then I slowly came to this streamlined circuit:
 楼主| 发表于 2008-12-25 22:40:38 | 显示全部楼层
Using the Circuit
Charging phase

During 250ms, sensor is configured as a light sensor (powered), C1 charges through D1 up to SENSOR+ voltage.  Low drop regulator U1 generates a +5V regulated supply.  Q1 is blocked by D2 (D2 maintains base to a voltage higher or equal to its emitter voltage), so GP2D12 is not powered.  Q3 is non-conducting too, preventing current flow through D3/R5/Q2.  So the only significant current diverted from C1 charging is through R1 (less than 2mA), and at the end of this phase C1 is fully charged.
Measurement phase

During the following 50ms, sensor is configured as a touch sensor (passive).  SENSOR+ is now only pulled up to +5V through 10Kohm (inside RCX), insufficient to block Q1.  Q1 and Q3 are then conducting, and GP2D12 is powered.  Q2, mounted as an emitter follower, buffers GP2D12 output and its value is available to RCX through D3 and R5.
Sample code to read sensor:

SetSensor(SENSOR_1,SENSOR_LIGHT);
Wait(25);
SetSensor(SENSOR_1,SENSOR_TOUCH);
Wait(5);


 楼主| 发表于 2008-12-25 22:40:58 | 显示全部楼层
SetSensorMode(SENSOR_1,SENSOR_MODE_RAW);
distance = SENSOR_1;
//Enable C1 charge as soon as possible
SetSensor(SENSOR_1,SENSOR_LIGHT);

Component Selection
  • D1 prevents destroying the sensor in case of reverse connection.  I didn't use the full-bridge rectifier used in Lego sensor that enables sensors to work when connected backwards (number of needed diodes jumps from 3 to 8!).  I considered that someone able to build this sensor is also able to connect it in the right way...  For those who want it, here is the diagram with full bridge rectifier.  I used 1 Amp Shottky diode 1N5819 for D1, which is inexpensive and readily available.  It's low forward drop voltage is less than 0.1V for the current that flows through it, this enables it to charge C1 to the highest voltage possible.
  • C1 stores energy that will be used during measurement phase.  It must provide +5V at the end of this stage.  Assuming typical values for the GP2D12 (I=35mA, conversion time=50ms) and an initial +7.5V across C1, its value is C = I * dT / dV = 35 * 50 / (7.5-5) = 700 µF.  Small margin with 1000 µF...
  • U1 is a low drop out 5V regulator in TO92 case.  I used a Telcom/Microchip TC55RP5000 but other regulators will probably work, such as STMicroelectronics L4931-50.  Standard regulators such as 78L05 will NOT work because they require more than +7V at input to get a +5V output.  Take care with some low drop regulators such as LM2931 that require more than 25 mA when powered at 1V.  With RCX current limitation, this hog eats all energy. (I was caught with this one...)
  • Q1 switches power on and off for GP2D12.  At 35mA current, I originally used a plain vanilla BC548.  My sensor began to work with it, but exhibited strange behavior.  Looking to GP2D12 power supply I then discovered 2V dips!  I then looked at the GP2D12 consumption and discovered that it was pulsed (220mA pulses 1/8th of time, superimposed to a 8mA constant current.  See oscilloscope captures here ).  At such a current, BC548 has a low gain, and since I couldn't lower base resistor R1 (main current drain during capacitor charge) I used a high performance Zetex transistor, ZTX718 that offers high gain at high current (other similar devices can work!).
 楼主| 发表于 2008-12-25 22:41:38 | 显示全部楼层
  • C2 stabilizes U1 and helps absorb peaks of current.  A low ESR version would be better (see "grass" on 5V output when GP2D12 works).
Main Component Datasheets (PDF Format)
  
Oscilloscope Screen Captures
See them here.
Building the Sensor Interface Module: Photo Gallery

The interface module is build on a 1" square proto-board

Top view

Top view, with components identification

Bottom view.  A notch in circuit is cut for big C1.  A single layer circuit board would be very easy to draw.

Everything fits in 3 hollowed 4x2 bricks

Pretty tight !
 楼主| 发表于 2008-12-25 22:42:22 | 显示全部楼层

Everything fits in 3 hollowed 4x2 bricks

Pretty tight !

Complete module.  GP2D12 fixations were cut to match Lego brick width.

Ready to work !
The Prototype

A much more ugly circuit...

...mounted on a test vehicle
A Real Application: Wall Follower
See it here !
Test programs
Here are some NQC test programs (they require RCX 2.0 firmware that you can get here ).
GP2D12-3-a.nqc
// Read GP2D12 Sensor output and displays
// raw value on RCX display (requires RCX 2 firmware)

int value;

task main()
{
  SetUserDisplay(value,0); // Display "value" on LCD
  SetSensor(SENSOR_1,SENSOR_LIGHT); // Active mode: starts charging sensor
  Wait(100); // Wait for full charge on startup

  until (false)
  {
    SetSensor(SENSOR_1,SENSOR_TOUCH); // Passive mode: starts measure
    Wait(5); // Wait for GP2D12 conversion time (50ms)
    SetSensorMode(SENSOR_1,SENSOR_MODE_RAW);
    value=SENSOR_1; // reads and display value

    SetSensor(SENSOR_1,SENSOR_LIGHT); // Recharge sensor
    Wait(25); // for 250 ms
  }
}

 楼主| 发表于 2008-12-25 22:42:52 | 显示全部楼层
GP2D12-3-b.nqc
// Read GP2D12 Sensor output and displays distance (in cm)
// on RCX display (requires RCX 2 firmware)

int value,temp;

task main()
{
  SetUserDisplay(value,1); // Display "value" on LCD
  SetSensor(SENSOR_1,SENSOR_LIGHT); // Active mode: starts charging sensor
  Wait(100); // Wait for full charge on startup

  until (false)
  {
    SetSensor(SENSOR_1,SENSOR_TOUCH); // Passive mode: starts measure
    Wait(5); // Wait for GP2D12 conversion time (50ms)
    SetSensorMode(SENSOR_1,SENSOR_MODE_RAW);
    temp=SENSOR_1; // reads sensor value

    SetSensor(SENSOR_1,SENSOR_LIGHT); // Recharge sensor
    Wait(25); // for 250 ms

    temp=10000/((21*temp+6*temp/10)/100-72)-20; //linearize and convert in mm
    value=temp; // displays distance in cm (format:xx.x)
  }
}



Distance vs.  Sensor Reading
 楼主| 发表于 2008-12-25 22:43:13 | 显示全部楼层

Linearized curve: 1000/(distance-2) vs.  Sensor Reading + Best Fit Line
Revision History
  • 4/26/01 - Created.
  • 5/08/01 - Added full size images of circuit boad construction.
发表于 2009-9-17 17:38:12 | 显示全部楼层
呵呵>~~~~为了学习而进来的~!
发表于 2009-9-29 10:37:57 | 显示全部楼层
国内机器人发展得加快啊!在日本已经发展很强了..
您需要登录后才可以回帖 登录 | 注册

本版积分规则

Archiver|手机版|cpubbs论坛. ( 粤ICP备09171248号 )

GMT+8, 2025-4-5 11:20 , Processed in 0.596817 second(s), 5 queries , Gzip On, File On.

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表