资源简介
实现热敏电阻测温在Proteus下的仿真,使用ATMega16单片机,折半查表算法和线性插值算法,测温范围达-8~120度,精度达0.01度
代码片段和文件信息
#include
#include
#include “adc.h“
void ADC_Init(unsigned char channel)
{
DDRA = 0x00;
ADMUX = (channel & 0x1f) | (1< ADCSRA = (1< }
unsigned int ADC_Get_Result(void)
{
unsigned int adc_result;
ADCSRA |= (1 << ADSC);
while(!(ADCSRA & (1 << ADIF)));
ADCSRA &= ~(1 << ADIF);
adc_result = ADC & 0x3ff;
return adc_result;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 30 2012-12-11 00:36 热敏电阻测温\code\.dep\adc.o.d
文件 50 2012-12-11 00:36 热敏电阻测温\code\.dep\find.o.d
文件 46 2012-12-01 08:59 热敏电阻测温\code\.dep\lcd1602.o.d
文件 94 2012-12-11 00:36 热敏电阻测温\code\.dep\main.o.d
文件 441 2012-11-26 20:48 热敏电阻测温\code\adc.c
文件 262 2012-12-11 00:36 热敏电阻测温\code\adc.h
文件 3646 2012-12-11 00:36 热敏电阻测温\code\adc.lst
文件 3528 2012-12-11 00:36 热敏电阻测温\code\adc.o
文件 2769 2012-12-01 09:33 热敏电阻测温\code\find.c
文件 255 2012-11-26 21:05 热敏电阻测温\code\find.h
文件 31837 2012-12-11 00:36 热敏电阻测温\code\find.lst
文件 5584 2012-12-11 00:36 热敏电阻测温\code\find.o
文件 2180 2012-12-01 08:59 热敏电阻测温\code\LCD1602.c
文件 310 2012-12-01 08:59 热敏电阻测温\code\LCD1602.h
文件 32302 2012-12-01 08:59 热敏电阻测温\code\lcd1602.lst
文件 6528 2012-12-01 08:59 热敏电阻测温\code\lcd1602.o
文件 1621 2012-12-01 08:59 热敏电阻测温\code\main.c
文件 13303 2012-12-11 00:36 热敏电阻测温\code\main.cof
文件 13 2012-12-11 00:36 热敏电阻测温\code\main.eep
文件 17608 2012-12-11 00:36 热敏电阻测温\code\main.elf
文件 18059 2012-12-11 00:36 热敏电阻测温\code\main.hex
文件 126562 2012-12-11 00:36 热敏电阻测温\code\main.lss
文件 56613 2012-12-11 00:36 热敏电阻测温\code\main.lst
文件 46856 2012-12-11 00:36 热敏电阻测温\code\main.map
文件 6568 2012-12-11 00:36 热敏电阻测温\code\main.o
文件 3261 2012-12-11 00:36 热敏电阻测温\code\main.sym
文件 17554 2012-12-01 08:20 热敏电阻测温\code\Makefile
文件 32768 2012-11-26 19:18 热敏电阻测温\code\Makefile.bak
文件 1909 2012-11-29 00:55 热敏电阻测温\code\table.h
文件 314 2012-12-01 08:19 热敏电阻测温\code\temp.pnproj
............此处省略10个文件信息
- 上一篇:一个用OpenGL完成的下雨模拟程序
- 下一篇:C笔试面试题及答案解析(一)
相关资源
- zw_Avr2Ins-平均根数和瞬时根数的相互转
- AVR-VID6606.doc
- ds2781单总线avr单片机程序
- ZigBee和单总线在冻结井壁无线测温系
- AT-II无线测温装置在配电系统防火监控
- KJ711分布式光纤测温系统在煤矿中的应
- 矿用分布式光纤测温系统技术指标及
- 分布式光纤测温系统在煤矿供电系统
- 分布式光纤测温技术在煤矿采空区中
- 分布式光纤测温技术在矿井供电系统
- 矿井采空区分布式光纤测温技术应用
- 矿用分布式光纤测温系统软件设计与
- 分布式光纤测温技术在煤矿中的应用
- 步进电机加减速之AVR446
- 基于AVR单片机的可预置程控宽带直流
- AVR单片机语音识别电路模块设计
- 基于AVR单片机的CH4气体检测系统
- ProgISP1.68
- 使用EXCEL记录串口数据
- 基于PT100型铂热电阻的测温装置设计
- 基于铂电阻PT100的桥式测温电路仿真及
- MLX90614红外测温 STM32完整工程文件
- 基于红外测温仪的输送带防撕裂装置
- 基于51单片机的MLX90614红外测温仪实验
- 非接触式电子体温计枪设计_采用STM
- TN901红外测温仪 非接触红外测温仪 设
- 单片机和LCD实现红外测温仪设计
- AVR dude GUI
- windows下avrdude.exe和avrdude.conf和libusb0
- 基于AVR单片机LED数字大屏显示
评论
共有 条评论