BM-SOP-T021 BM43系列红外温度传感器的应用,有源代码,测温模块说明书,是学习红外测温原理是和实践的好资料
2024-02-24 16:55:55 1.73MB 红外测温
1
STM32F401模拟I2C协议获取MLX90614红外温度传感器测温数据(Open Drain管脚配置)例程
2022-06-07 12:26:15 3.66MB stm32 STM32F401 MLX90614 红外温度传感器
1
为了提高温度传感器的检定效率,设计了一种基于TN9红外温度传感器的多通道测温系统。该系统硬件采用C8051F350单片机为主控芯片,选用TN9红外温度传感器作为温度的检测元件,实现了红外温度传感器TN9的数据采集;软件系统利用KeilC、LabWindows/CVI、SQL及ODBC等技术,实现了温度数据的非接触自动检定、显示及存储。实验结果表明,系统大大提高了温度数据的检测效率和准确度。
2022-05-22 23:31:27 813KB 行业研究
1
STM32模拟I2C协议获取MLX90614红外温度传感器测温数据(Open Drain管脚配置)例程,详细介绍见: https://blog.csdn.net/hwytree/article/details/123042379 。
1
在日常生活中,我们经常获取某些物体的温度,我们可以用温度计测量或用手感知大体的温度。但是很多情况下不能接触物体,这时候可以通过红外测温方式来获取物体的温度,这种方式具有非接触和快速测温的优点。为了方便携带,笔者选用了一款小型的红外温度传感器,并制作成一款红外测温手环,轻轻一按按键,就会实时获取物体的表面温度。
2022-01-13 16:02:37 4.88MB 红外温度传感器
1
MLX90614红外温度传感器_linux驱动源码,已经在产品中使用过。android 6.0 ,内核版本为3.4.39,可以做为你的学习设计参考。 #include #include #include #include #include #include #include #include #include //__gpio_set_value #include //script_item_u #include //pin_config_set #include //SUNXI_PINCFG_TYPE_* #include #include #include #include #define ACK 0 #define NACK 1 #define SA 0x5a //Slave address 单个MLX90614时地址为0x00,多个时地址默认为0x5a #define RAM_ACCESS 0x00 //RAM access command #define EEPROM_ACCESS 0x20 //EEPROM access command #define RAM_TOBJ1 0x07 //To1 address in the eeprom #define RAM_TOBJ2 0x08 #define RAM_TA 0x06 #define DEVICE_NAME "mlx90614" //struct gpio_config { // u32 gpio; /* gpio global index, must be unique */ // u32 mul_sel; /* multi sel val: 0 - input, 1 - output... */ // u32 pull; /* pull val: 0 - pull up/down disable, 1 - pull up... */ // u32 drv_level; /* driver level val: 0 - level 0, 1 - level 1... */ // u32 data; /* data val: 0 - low, 1 - high, only vaild when mul_sel is input/output */ //}; #define SCL_NAME "sensor_sck" #define SDA_NAME "sensor_sda" struct gpio_func_desc { unsigned short pin; char *name; }; struct gpio_func_desc SCLK ={0,SCL_NAME};//蓝色 struct gpio_func_desc SDIN ={0,SDA_NAME};//白色 struct gpio_config *sclk_gpio_p = NULL; struct gpio_config *sdin_gpio_p = NULL; void SMBus_StartBit(void); void SMBus_StopBit(void);
使用C语言的红外传感器的测温程序,包含I2C协议,AD转换模块
2021-12-02 19:05:39 1.49MB C语言 测温  传感器
1
红外测温传感器 BM43TND80AA 驱动代码和传感器资料
2021-09-28 19:02:17 1.73MB by7md movementt93 BM43TND zebrahhp
红外测温传感器 BM43TND80AA 驱动代码和传感器资料
2021-09-28 14:03:15 1.73MB by7md movementt93 BM43TND zebrahhp
MLX90621红外温度传感器代码
2021-08-09 09:02:47 3KB 传感器
1