相关文章
我的fNIRS学习之路第“零”期 — fNIRS学习资料汇总
关注“心仪脑”查看更多脑科学知识的分享。
关键词:资料汇总、fNIRS
写在前边
功能性近红外光谱技术(functional Near-infrared spectroscopy, fNIRS)是一种非侵入无创的脑成像技术,它利用血液的主要成分对600-900nm近红外光良…
建站知识
2024/10/15 0:20:41
铝单板行业网站首页代码
<!DOCTYPE html><html><head><meta charset"UTF-8" /><!--由中企动力科技集团股份有限公司成都分公司技术部设计制作<br>如果您有任何意见或建议请电邮dm-chengdu300.cn--><title>安信铝业集团有限公司_四川成都铝单板,铝…
建站知识
2025/1/12 4:24:56
DS18B20温度格式转换
#include <stdio.h>#include <stdint.h>/* DS18B20温度格式转换 */uint8_t tempIntPart[3];uint8_t tempDecPart[4];float convertToFloat(int16_t temperature) {float temp;temp (float)temperature;temp / 16.0f;return temp;}void splitIntPart(int16_t tempe…
建站知识
2024/11/24 9:07:32
ds18b20驱动配置
温度寄存器格式 初始化函数
u8 DS18B20_Init(void)
{GPIO_InitTypeDef GPIO_InitStructure;RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOG, ENABLE);//使能GPIOG时钟//GPIOG9GPIO_InitStructure.GPIO_Pin GPIO_Pin_9;GPIO_InitStructure.GPIO_Mode GPIO_Mode_OUT;//普通输出…
建站知识
2025/1/18 4:31:43
【2020-10-28】DS12C887+驱动
STM32F103ZET6对DS12C887时间模块的驱动
对于项目的一个小模块部分,如果因为驱动程序的问题而半天不能正常操作,这样的事还是挺令人抓狂的,在此整理出DS12C887时间模块的驱动程序,属于大家的参考,也属于自己的积累。 …
建站知识
2025/1/4 10:53:13
DS18b20温度值换算
DS18B20 处理正负温度值。
寄存器格式 例子 //计算温度值
//参数 高字节,低字节
double CaculateTemp(uint8_t tmh, uint8_t tml)
{uint8_t th;uint8_t tl;double temp 0;tl tml & 0x0F;//取低字节后四位th (tmh << 4) (tml >> 4);//取高字节后…
建站知识
2024/10/15 3:46:04