嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
基于大数据的个人生命体征检测分析系统源码
随着我国社会的发展,人们对于健康生活有着迫切的需求,我们开发一款基于大数据的个人生命体征检测分析系统。系统使用以stm32为核心,配合传感器模块获取人体的心率、脉搏、血氧等生命体征数据;使用esp8266WIFI模块将大量并发数据传入云服务器中的MySQL数据库中;使用python编写手机端应用软件,调用MySQL提供的数据查询接口,实现数据读取;通过该系统,用户和医生可以直观了解使用者的生命体征数据,辅助医生诊断病情,帮助用户改善生活方式,从而提高人们的生活水平。
.
├── 源代码
│ ├── stm32数据采集终端
│ │ └── 单片机2
│ │ ├── CORE
│ │ │ ├── core_cm3.c
│ │ │ ├── core_cm3.h
│ │ │ ├── startup_stm32f10x_hd.s
│ │ │ └── startup_stm32f10x_md.s
│ │ ├── HARDWARE
│ │ │ ├── ESP8266
│ │ │ │ ├── esp8266.c
│ │ │ │ ├── esp8266.h
│ │ │ │ ├── tcp.c
│ │ │ │ └── tcp.h
│ │ │ ├── IIC
│ │ │ │ ├── myiic.c
│ │ │ │ └── myiic.h
│ │ │ ├── MAX30102
│ │ │ │ ├── MAX30102.c
│ │ │ │ ├── MAX30102.c.orig
│ │ │ │ └── MAX30102.h
│ │ │ └── algorithm
│ │ │ ├── algorithm.c
│ │ │ └── algorithm.h
│ │ ├── OBJ
│ │ │ ├── MAX30102.axf
│ │ │ ├── MAX30102.build_log.htm
│ │ │ ├── MAX30102.hex
│ │ │ ├── MAX30102.htm
│ │ │ ├── MAX30102.lnp
│ │ │ ├── MAX30102.sct
│ │ │ ├── MAX30102_Target 1.dep
│ │ │ ├── algorithm.crf
│ │ │ ├── algorithm.d
│ │ │ ├── algorithm.o
│ │ │ ├── core_cm3.crf
│ │ │ ├── core_cm3.d
│ │ │ ├── core_cm3.o
│ │ │ ├── delay.crf
│ │ │ ├── delay.d
│ │ │ ├── delay.o
│ │ │ ├── esp8266.crf
│ │ │ ├── esp8266.d
│ │ │ ├── esp8266.o
│ │ │ ├── main.crf
│ │ │ ├── main.d
│ │ │ ├── main.o
│ │ │ ├── max30102.crf
│ │ │ ├── max30102.d
│ │ │ ├── max30102.o
│ │ │ ├── misc.crf
│ │ │ ├── misc.d
│ │ │ ├── misc.o
│ │ │ ├── myiic.crf
│ │ │ ├── myiic.d
│ │ │ ├── myiic.o
│ │ │ ├── startup_stm32f10x_md.d
│ │ │ ├── startup_stm32f10x_md.o
│ │ │ ├── stm32f10x_gpio.crf
│ │ │ ├── stm32f10x_gpio.d
│ │ │ ├── stm32f10x_gpio.o
│ │ │ ├── stm32f10x_it.crf
│ │ │ ├── stm32f10x_it.d
│ │ │ ├── stm32f10x_it.o
│ │ │ ├── stm32f10x_rcc.crf
│ │ │ ├── stm32f10x_rcc.d
│ │ │ ├── stm32f10x_rcc.o
│ │ │ ├── stm32f10x_usart.crf
│ │ │ ├── stm32f10x_usart.d
│ │ │ ├── stm32f10x_usart.o
│ │ │ ├── sys.crf
│ │ │ ├── sys.d
│ │ │ ├── sys.o
│ │ │ ├── system_stm32f10x.crf
│ │ │ ├── system_stm32f10x.d
│ │ │ ├── system_stm32f10x.o
│ │ │ ├── tcp.crf
│ │ │ ├── tcp.d
│ │ │ ├── tcp.o
│ │ │ ├── usart.crf
│ │ │ ├── usart.d
│ │ │ └── usart.o
│ │ ├── Read.txt
│ │ ├── STM32F10x_FWLib
│ │ │ ├── inc
│ │ │ │ ├── misc.h
│ │ │ │ ├── stm32f10x_adc.h
│ │ │ │ ├── stm32f10x_bkp.h
│ │ │ │ ├── stm32f10x_can.h
│ │ │ │ ├── stm32f10x_cec.h
│ │ │ │ ├── stm32f10x_crc.h
│ │ │ │ ├── stm32f10x_dac.h
│ │ │ │ ├── stm32f10x_dbgmcu.h
│ │ │ │ ├── stm32f10x_dma.h
│ │ │ │ ├── stm32f10x_exti.h
│ │ │ │ ├── stm32f10x_flash.h
│ │ │ │ ├── stm32f10x_fsmc.h
│ │ │ │ ├── stm32f10x_gpio.h
│ │ │ │ ├── stm32f10x_i2c.h
│ │ │ │ ├── stm32f10x_iwdg.h
│ │ │ │ ├── stm32f10x_pwr.h
│ │ │ │ ├── stm32f10x_rcc.h
│ │ │ │ ├── stm32f10x_rtc.h
│ │ │ │ ├── stm32f10x_sdio.h
│ │ │ │ ├── stm32f10x_spi.h
│ │ │ │ ├── stm32f10x_tim.h
│ │ │ │ ├── stm32f10x_usart.h
│ │ │ │ └── stm32f10x_wwdg.h
│ │ │ └── src
│ │ │ ├── misc.c
│ │ │ ├── stm32f10x_adc.c
│ │ │ ├── stm32f10x_bkp.c
│ │ │ ├── stm32f10x_can.c
│ │ │ ├── stm32f10x_cec.c
│ │ │ ├── stm32f10x_crc.c
│ │ │ ├── stm32f10x_dac.c
│ │ │ ├── stm32f10x_dbgmcu.c
│ │ │ ├── stm32f10x_dma.c
│ │ │ ├── stm32f10x_exti.c
│ │ │ ├── stm32f10x_flash.c
│ │ │ ├── stm32f10x_fsmc.c
│ │ │ ├── stm32f10x_gpio.c
│ │ │ ├── stm32f10x_i2c.c
│ │ │ ├── stm32f10x_iwdg.c
│ │ │ ├── stm32f10x_pwr.c
│ │ │ ├── stm32f10x_rcc.c
│ │ │ ├── stm32f10x_rtc.c
│ │ │ ├── stm32f10x_sdio.c
│ │ │ ├── stm32f10x_spi.c
│ │ │ ├── stm32f10x_tim.c
│ │ │ ├── stm32f10x_usart.c
│ │ │ └── stm32f10x_wwdg.c
│ │ ├── SYSTEM
│ │ │ ├── delay
│ │ │ │ ├── delay.c
│ │ │ │ └── delay.h
│ │ │ ├── sys
│ │ │ │ ├── sys.c
│ │ │ │ └── sys.h
│ │ │ └── usart
│ │ │ ├── usart.c
│ │ │ └── usart.h
│ │ └── USER
│ │ ├── DebugConfig
│ │ │ ├── Target_1_STM32F103C8_1.0.0.dbgconf
│ │ │ └── Target_1_STM32F103RC_1.0.0.dbgconf
│ │ ├── JLinkLog.txt
│ │ ├── JLinkSettings.ini
│ │ ├── MAX30102.Administrator
│ │ ├── MAX30102.map
│ │ ├── MAX30102.uvguix.Lenovo
│ │ ├── MAX30102.uvoptx
│ │ ├── MAX30102.uvprojx
│ │ ├── main.c
│ │ ├── startup_stm32f10x_hd.lst
│ │ ├── startup_stm32f10x_md.lst
│ │ ├── stm32f10x.h
│ │ ├── stm32f10x_conf.h
│ │ ├── stm32f10x_it.c
│ │ ├── stm32f10x_it.h
│ │ ├── system_stm32f10x.c
│ │ └── system_stm32f10x.h
│ ├── 跨平台app
│ │ ├── Socketclass.py
│ │ └── main.py
│ └── 服务器分析程序
│ └── 上位机9.5.py
├── 好例子网_基于大数据的个人生命体征检测分析系统.zip
└── 设计说明书
├── 基于大数据的个人生命体征检测分析系统设计说明书.docx
└── 基于大数据的个人生命体征检测分析系统设计说明书.pdf
22 directories, 149 files