【E1554】基于STM32的智能手环(原理图+PCB图+代码)

2021-10-18 12:14:52      索炜达电子      2768     

项目编号:E1554

文件大小:15M

源码说明:带中文注释

开发环境:C编译器

简要概述:

基于STM32的智能手环(原理图+PCB图+代码)

【E1554】基于STM32的智能手环(原理图+PCB图+代码)

【E1554】基于STM32的智能手环(原理图+PCB图+代码)

目录│文件列表:

 └ THwatch

    ├ 1-PCB-Design

    │  ├ 1-AD-Project

    │  │  │ PCB-watch.PcbDoc

    │  │  │ PCB_Project.PrjPcb

    │  │  │ Sheet-watch.SchDoc

    │  │  └ __Previews

    │  │     └ Sheet-watch.SchDocPreview

    │  ├ 2-Sheet

    │  │  └ PCB_Project.pdf

    │  ├ 3-Boom

    │  │  └ PCB_Project.xlsx

    │  └ 4-Datesheet

    │     │ C24112_MPU-6050_2014-04-25.PDF

    │     │ C575570_TPS70925DBVR_2020-06-03.PDF

    │     │ C668215_TP4054_2020-06-18.PDF

    │     └ Si7020-A20.pdf

    ├ 2-KEIL-Project

    │  │ .mxproject

    │  │ README.md

    │  │ watch.ioc

    │  ├ Drivers

    │  │  ├ CMSIS

    │  │  │  ├ Device

    │  │  │  │  └ ST

    │  │  │  │     └ STM32F4xx

    │  │  │  │        ├ Include

    │  │  │  │        │  │ stm32f411xe.h

    │  │  │  │        │  │ stm32f4xx.h

    │  │  │  │        │  └ system_stm32f4xx.h

    │  │  │  └ Include

    │  │  │     │ cmsis_armcc.h

    │  │  │     │ cmsis_armclang.h

    │  │  │     │ cmsis_compiler.h

    │  │  │     │ cmsis_gcc.h

    │  │  │     │ cmsis_iccarm.h

    │  │  │     │ cmsis_version.h

    │  │  │     │ core_armv8mbl.h

    │  │  │     │ core_armv8mml.h

    │  │  │     │ core_cm0.h

    │  │  │     │ core_cm0plus.h

    │  │  │     │ core_cm1.h

    │  │  │     │ core_cm23.h

    │  │  │     │ core_cm3.h

    │  │  │     │ core_cm33.h

    │  │  │     │ core_cm4.h

    │  │  │     │ core_cm7.h

    │  │  │     │ core_sc000.h

    │  │  │     │ core_sc300.h

    │  │  │     │ mpu_armv7.h

    │  │  │     │ mpu_armv8.h

    │  │  │     └ tz_context.h

    │  │  └ STM32F4xx_HAL_Driver

    │  │     ├ Inc

    │  │     │  │ stm32f4xx_hal.h

    │  │     │  │ stm32f4xx_hal_adc.h

    │  │     │  │ stm32f4xx_hal_adc_ex.h

    │  │     │  │ stm32f4xx_hal_cortex.h

    │  │     │  │ stm32f4xx_hal_def.h

    │  │     │  │ stm32f4xx_hal_dma.h

    │  │     │  │ stm32f4xx_hal_dma_ex.h

    │  │     │  │ stm32f4xx_hal_exti.h

    │  │     │  │ stm32f4xx_hal_flash.h

    │  │     │  │ stm32f4xx_hal_flash_ex.h

    │  │     │  │ stm32f4xx_hal_flash_ramfunc.h

    │  │     │  │ stm32f4xx_hal_gpio.h

    │  │     │  │ stm32f4xx_hal_gpio_ex.h

    │  │     │  │ stm32f4xx_hal_i2c.h

    │  │     │  │ stm32f4xx_hal_i2c_ex.h

    │  │     │  │ stm32f4xx_hal_pwr.h

    │  │     │  │ stm32f4xx_hal_pwr_ex.h

    │  │     │  │ stm32f4xx_hal_rcc.h

    │  │     │  │ stm32f4xx_hal_rcc_ex.h

    │  │     │  │ stm32f4xx_hal_rtc.h

    │  │     │  │ stm32f4xx_hal_rtc_ex.h

    │  │     │  │ stm32f4xx_hal_spi.h

    │  │     │  │ stm32f4xx_hal_tim.h

    │  │     │  │ stm32f4xx_hal_tim_ex.h

    │  │     │  │ stm32f4xx_hal_uart.h

    │  │     │  └ Legacy

    │  │     │     └ stm32_hal_legacy.h

    │  │     └ Src

    │  │        │ stm32f4xx_hal.c

    │  │        │ stm32f4xx_hal_adc.c

    │  │        │ stm32f4xx_hal_adc_ex.c

    │  │        │ stm32f4xx_hal_cortex.c

    │  │        │ stm32f4xx_hal_dma.c

    │  │        │ stm32f4xx_hal_dma_ex.c

    │  │        │ stm32f4xx_hal_exti.c

    │  │        │ stm32f4xx_hal_flash.c

    │  │        │ stm32f4xx_hal_flash_ex.c

    │  │        │ stm32f4xx_hal_flash_ramfunc.c

    │  │        │ stm32f4xx_hal_gpio.c

    │  │        │ stm32f4xx_hal_i2c.c

    │  │        │ stm32f4xx_hal_i2c_ex.c

    │  │        │ stm32f4xx_hal_pwr.c

    │  │        │ stm32f4xx_hal_pwr_ex.c

    │  │        │ stm32f4xx_hal_rcc.c

    │  │        │ stm32f4xx_hal_rcc_ex.c

    │  │        │ stm32f4xx_hal_rtc.c

    │  │        │ stm32f4xx_hal_rtc_ex.c

    │  │        │ stm32f4xx_hal_spi.c

    │  │        │ stm32f4xx_hal_tim.c

    │  │        │ stm32f4xx_hal_tim_ex.c

    │  │        └ stm32f4xx_hal_uart.c

    │  ├ Inc

    │  │  │ adc.h

    │  │  │ dma.h

    │  │  │ gpio.h

    │  │  │ i2c.h

    │  │  │ main.h

    │  │  │ rtc.h

    │  │  │ spi.h

    │  │  │ stm32f4xx_hal_conf.h

    │  │  │ stm32f4xx_it.h

    │  │  │ tim.h

    │  │  └ usart.h

    │  ├ MDK-ARM

    │  │  │ EventRecorderStub.scvd

    │  │  │ startup_stm32f411xe.s

    │  │  │ watch.uvguix.DELL100030173

    │  │  │ watch.uvoptx

    │  │  │ watch.uvprojx

    │  │  ├ DebugConfig

    │  │  │  └ watch_STM32F411CEUx.dbgconf

    │  │  ├ RTE

    │  │  │  └ _watch

    │  │  │     └ RTE_Components.h

    │  ├ PROGRAM

    │  │  │ Si7021.zip

    │  │  ├ Application_software

    │  │  │  │ app.c

    │  │  │  │ app.h

    │  │  │  └ apppicture.h

    │  │  ├ MAX30102

    │  │  │  │ algorithm.c

    │  │  │  │ algorithm.h

    │  │  │  │ MAX30102.c

    │  │  │  └ MAX30102.h

    │  │  ├ MENU

    │  │  │  │ display.c

    │  │  │  └ display.h

    │  │  ├ MPU6050

    │  │  │  │ dmpKey.h

    │  │  │  │ dmpmap.h

    │  │  │  │ inv_mpu.c

    │  │  │  │ inv_mpu.h

    │  │  │  │ inv_mpu_dmp_motion_driver.c

    │  │  │  │ inv_mpu_dmp_motion_driver.h

    │  │  │  │ mpu6050.c

    │  │  │  │ mpu6050.h

    │  │  │  │ mpu6050Driver.c

    │  │  │  └ mpu6050Driver.h

    │  │  ├ Sensor_numerical_calculation

    │  │  │  │ contro.c

    │  │  │  └ contro.h

    │  │  ├ Si7021

    │  │  │  │ Si7021.c

    │  │  │  └ Si7021.h

    │  │  └ TFTLCD

    │  │     │ lcd.c

    │  │     │ lcd.h

    │  │     │ lcdfont.h

    │  │     │ lcd_init.c

    │  │     │ lcd_init.h

    │  │     └ pic.h

    │  └ Src

    │     │ adc.c

    │     │ dma.c

    │     │ gpio.c

    │     │ i2c.c

    │     │ main.c

    │     │ rtc.c

    │     │ spi.c

    │     │ stm32f4xx_hal_msp.c

    │     │ stm32f4xx_it.c

    │     │ system_stm32f4xx.c

    │     │ tim.c

    │     └ usart.c

    └ 3-Library

       └ 1-1.14寸LCD资料

          ├ 01-规格书与控制芯片手册

          │  │ ST7789VW芯片手册.pdf

          │  │ 中景园1.14寸插接式IPS显示屏规格书.pdf

          │  └ 中景园1.14寸焊接IPS显示屏规格书.pdf

          ├ 02-原理图与结构图

          │  │ 1.14寸插接式原理图.pdf

          │  │ 1.14寸焊接IPS LCD原理图.pdf

          │  └ 1.14寸焊接IPS结构图.pdf

          ├ 03-1.14IPS程序源码

          │  │ keilkilll.bat

          │  ├ 01-中景园电子1.14IPS显示屏C51_SPI例程

          │  │  │ LCD

          │  │  │ LCD.hex

          │  │  │ LCD.M51

          │  │  │ LCD.uvgui.Administrator

          │  │  │ LCD.uvopt

          │  │  │ LCD.uvproj

          │  │  │ main.c

          │  │  │ OLED

          │  │  │ OLED.M51

          │  │  │ STARTUP.A51

          │  │  └ SRC

          │  │     └ LCD

          │  │        │ lcd.c

          │  │        │ lcd.h

          │  │        │ lcdfont.h

          │  │        │ lcd_init.c

          │  │        │ lcd_init.h

          │  │        └ pic.h

          │  ├ 02-中景园电子1.14IPS显示屏STM32F103C8T6_SPI例程

          │  │  │ keilkilll.bat

          │  │  ├ CORE

          │  │  │  │ core_cm3.c

          │  │  │  │ core_cm3.h

          │  │  │  │ startup_stm32f10x_hd.s

          │  │  │  └ startup_stm32f10x_md.s

          │  │  ├ HARDWARE

          │  │  │  ├ LCD

          │  │  │  │  │ lcd.c

          │  │  │  │  │ lcd.h

          │  │  │  │  │ lcdfont.h

          │  │  │  │  │ lcd_init.c

          │  │  │  │  │ lcd_init.h

          │  │  │  │  └ pic.h

          │  │  │  └ LED

TAG智能手环
  • 12 次
  • 10 分