2021-10-18 12:14:52 索煒達(dá)電子 3736
項目編號:E1554
文件大?。?5M
源碼說明:帶中文注釋
開發(fā)環(huán)境:C編譯器
簡要概述:
基于STM32的智能手環(huán)(原理圖+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-規(guī)格書與控制芯片手冊
│ │ ST7789VW芯片手冊.pdf
│ │ 中景園1.14寸插接式IPS顯示屏規(guī)格書.pdf
│ └ 中景園1.14寸焊接IPS顯示屏規(guī)格書.pdf
├ 02-原理圖與結(jié)構(gòu)圖
│ │ 1.14寸插接式原理圖.pdf
│ │ 1.14寸焊接IPS LCD原理圖.pdf
│ └ 1.14寸焊接IPS結(jié)構(gòu)圖.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