虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

Quot

  • 高精度温度测量铂电阻温度探测器(PRTDs)和​​ADC

    Abstract: Many modern industrial, medical, and commercial applications require temperature measurements in the extended temperature rangewith accuracies of ±0.3°C or better, performed with reasonable cost and often with low power consumption. This article explains how platinumresistance temperature detectors (PRTDs) can perform measurements over wide temperature ranges of -200°C to +850°C, with absolute accuracyand repeatability better than ±0.3°C, when used with modern processors capable of resolving nonlinear mathematical equation quickly and costeffectively. This article is the second installment of a series on PRTDs. For the first installment, please read application note 4875, &Quot;High-Accuracy Temperature Measurements Call for Platinum Resistance Temperature Detectors (PRTDs) and Precision Delta-Sigma ADCs.&Quot;

    标签: PRTDs ADC 高精度 温度测量

    上传时间: 2013-11-06

    上传用户:WMC_geophy

  • 简易光照度监测电路的设计

    利用光敏二极管的高带宽及光电流与光照度之间较好线性关系的特点!设计了一种简易的光照度测量电路!该电路具有原理清楚&Quot;结构简单&Quot;读数容易&Quot;线性好等优点!适合于农用大棚等要求不高的场合!同时还给出了光照度与电路输出电流的关系

    标签: 光照 监测电路

    上传时间: 2013-11-15

    上传用户:fdfadfs

  • XAPP904 - CoolRunner-II特性LCD模块接口

      There are many manufacturers of dot matrix LCD modules. However, most of these displaysare similar. They all have on-board controllers and drivers capable of displaying alpha numericsand a wide variety of other symbols (including Japanese &Quot;Katakana&Quot; characters). The internaloperation of LCD controller devices is determined by signals sent from a central processing unit(in this case, a CoolRunner-II CPLD).

    标签: CoolRunner-II XAPP 904 LCD

    上传时间: 2013-12-17

    上传用户:haiya2000

  • 基于微处理器的5V系统接口

    This application note discusses a variety of approaches for interfacing analog signals to 5V powered systems. Synthesizing a &Quot;rail-to-rail&Quot; op amp and scaling techniques for A/D converters are covered. A voltage-to-frequency converter, applicable where high resolution is required, is also presented.  

    标签: 微处理器 系统接口

    上传时间: 2013-10-12

    上传用户:181992417

  • Arduino应用_Arduino连接超声波传感器测距

    超声波传感器适用于对大幅的平面进行静止测距。普通的超声波传感器测距范围大概是 2cm~450cm,分辨率3mm(淘宝卖家说的,笔者测试环境没那么好,个人实测比较稳定的 距离10cm~2m 左右,超过此距离就经常有偶然不准确的情况发生了,当然不排除笔者技术 问题。) 测试对象是淘宝上面最便宜的SRF-04 超声波传感器,有四个脚:5v 电源脚(Vcc),触发控制端(Trig),接收端(Echo),地端(GND) 附:SRF 系列超声波传感器参数比较   模块工作原理: 采用IO 触发测距,给至少10us 的高电平信号; 模块自动发送8个40KHz 的方波,自动检测是否有信号返回; 有信号返回,通过IO 输出一高电平,高电平持续的时间就是超声波从发射到返回的时间.测试距离=(高电平时间*声速(340m/s))/2; 电路连接方法   Arduino 程序例子: constintTrigPin = 2; constintEchoPin = 3; floatcm; voidsetup() { Serial.begin(9600); pinMode(TrigPin, OUTPUT); pinMode(EchoPin, INPUT); } voidloop() { digitalWrite(TrigPin, LOW); //低高低电平发一个短时间脉冲去TrigPin delayMicroseconds(2); digitalWrite(TrigPin, HIGH); delayMicroseconds(10); digitalWrite(TrigPin, LOW); cm = pulseIn(EchoPin, HIGH) / 58.0; //将回波时间换算成cm cm = (int(cm * 100.0)) / 100.0; //保留两位小数 Serial.print(cm); Serial.print(&Quot;cm&Quot;); Serial.println(); delay(1000); }

    标签: Arduino 连接 超声波传感器

    上传时间: 2013-11-01

    上传用户:xiaoyuer

  • Arduino学习笔记3_连接HMC5883L三轴电子罗盘传感器

    用途:测量地磁方向,测量物体静止时候的方向,测量传感器周围磁力线的方向。注意,测量地磁时候容易受到周围磁场影响,主芯片HMC5883 三轴磁阻传感器特点(抄自网上): 1,数字量输出:I2C 数字量输出接口,设计使用非常方便。 2,尺寸小: 3x3x0.9mm LCC 封装,适合大规模量产使用。 3,精度高:1-2 度,内置12 位A/D,OFFSET, SET/RESET 电路,不会出现磁饱和现象,不会有累加误差。 4,支持自动校准程序,简化使用步骤,终端产品使用非常方便。 5,内置自测试电路,方便量产测试,无需增加额外昂贵的测试设备。 6,功耗低:供电电压1.8V, 功耗睡眠模式-2.5uA 测量模式-0.6mA   连接方法: 只要连接VCC,GND,SDA,SDL 四条线。 Arduino GND -> HMC5883L GND Arduino 3.3V -> HMC5883L VCC Arduino A4 (SDA) -> HMC5883L SDA Arduino A5 (SCL) -> HMC5883L SCL (注意,接线是A4,A5,不是D4,D5) 源程序: #include <Wire.h> #include <HMC5883L.h> HMC5883Lcompass; voidsetup() { Serial.begin(9600); Wire.begin(); compass = HMC5883L(); compass.SetScale(1.3); compass.SetMeasurementMode(Measurement_Continuous); } voidloop() { MagnetometerRaw raw = compass.ReadRawAxis(); MagnetometerScaled scaled = compass.ReadScaledAxis(); float xHeading = atan2(scaled.YAxis, scaled.XAxis); float yHeading = atan2(scaled.ZAxis, scaled.XAxis); float zHeading = atan2(scaled.ZAxis, scaled.YAxis); if(xHeading < 0) xHeading += 2*PI; if(xHeading > 2*PI) xHeading -= 2*PI; if(yHeading < 0) yHeading += 2*PI; if(yHeading > 2*PI) yHeading -= 2*PI; if(zHeading < 0) zHeading += 2*PI; if(zHeading > 2*PI) zHeading -= 2*PI; float xDegrees = xHeading * 180/M_PI; float yDegrees = yHeading * 180/M_PI; float zDegrees = zHeading * 180/M_PI; Serial.print(xDegrees); Serial.print(&Quot;,&Quot;); Serial.print(yDegrees); Serial.print(&Quot;,&Quot;); Serial.print(zDegrees); Serial.println(&Quot;;&Quot;); delay(100); }

    标签: Arduino 5883L 5883 HMC

    上传时间: 2014-03-20

    上传用户:tianyi223

  • 功能:给出一个字符串表达式(可以是任意复杂的字符串表达式)

    功能:给出一个字符串表达式(可以是任意复杂的字符串表达式),计算字符串表达式的值. <br> 特性: <br> 1:用户可以添加其它运算符号 ,也就是说用户可以制定新的运算符,引擎中不存在的运算符号,当然具体的运算类还是得用户提供. <br> 2: 可以修改运算符的性质,你可以使得3*3=6,只要将*的运算类指向expression.DAdd就可以了,具体如何操作,ReadMe中有说明.<br> 3:可以使操作符运算具有多种形态。您即可以用“+”表示加法运算,也可以用&Quot 加法&Quot 表示加法运算.<br> 强调一下:,本引擎的最大特点就是: 用户可以添加自己的运算符号,而无需修改计算引擎本身.<br>

    标签: 字符串 表达式

    上传时间: 2015-01-18

    上传用户:WMC_geophy

  • 应用平台 SCO OpenServer 5 编译命令 cc -o fget fget.c -lcurses 此程序适用于SCO UNIX主机系统

    应用平台 SCO OpenServer 5 编译命令 cc -o fget fget.c -lcurses 此程序适用于SCO UNIX主机系统,客户端为任意平台. 以Windows客户为例,以下简要说明其使用方法. 1、直接拨号方式 先进入Windows的终端仿真器, 使用ATDT命令向UNIX主机拨号,当主机连通时, 运行主机的FGET程序,格式为 FGET 下载文件名.然后,从终端仿真器的传输&Quot 菜单选接收二进制文件选项,输入本地文件名后,即可接收文件. 2、internet连接方式 先将FGET文件在主机上编译通过, 然后用Netterm之类的telnet 软件连接到主机上,当主机连通时,运行主机的FGET程序,格式为 FGET 下载文件名. 然后从菜单选接收文件选项,输入本地文件名后,即可接收文件.

    标签: fget OpenServer SCO lcurses

    上传时间: 2015-02-11

    上传用户:shus521

  • 群智能优化算法及其应用 (雷秀娟)

    本书以群智能优化算法中的粒子群优化(ParticleSwarmOptimization,PSO)算法为主线,着重阐述了PSO算法的基本原理、改进策略,从解空间设计、粒子编码以及求解流程等方面进行了详细设计与阐述。

    标签: 群智能 优化算法

    上传时间: 2015-03-14

    上传用户:wd450725076

  • 单片机汽车防撞系统设计

    单片机汽车防撞系统设计 随着我国经济实力的不断提升,汽车作为代步工具已经走入了我们平常百姓的生活,然而频繁发生的交通事故给广大人民群众的生命财产安全造成了巨大的损失,交通事故的潜在危机也越来越引起人们的关注。为了有效地减少交通事故,除了应该采取必要的措施,如改善道路交通条件、完善交通法规与管理以及提高驾驶员素质,还应该充分利用汽车上安装的汽车电子产品,而运用高新技术的汽车电子产品在汽车主动安全领域发挥着越来越重要的作用。本文的研究内容涉及车辆行车安全距离预警系统,该系统可以有效的避免因行车安全距离不当造成的交通事故。

    标签: 单片机汽车防撞系统设计

    上传时间: 2015-04-16

    上传用户:lernxie