├── Hardware ├── ProProject_PMOR_V3.zip ├── ProProject_R2V_V3.zip └── readme.md ├── LICENSE ├── Software ├── LowerComputerSource │ ├── Code │ │ ├── include │ │ │ ├── adc.h │ │ │ ├── batmana.h │ │ │ ├── bluetooth.h │ │ │ ├── cst816t.h │ │ │ ├── delay.h │ │ │ ├── font.h │ │ │ ├── global.h │ │ │ ├── gui.h │ │ │ ├── lcd.h │ │ │ ├── pulsecoll.h │ │ │ ├── rtc.h │ │ │ ├── siic.h │ │ │ ├── spi1.h │ │ │ ├── st7789v.h │ │ │ ├── swmode.h │ │ │ ├── timer4.h │ │ │ ├── upcom.h │ │ │ └── usart1.h │ │ └── source │ │ │ ├── adc.c │ │ │ ├── batmana.c │ │ │ ├── bluetooth.c │ │ │ ├── cst816t.c │ │ │ ├── delay.c │ │ │ ├── font.c │ │ │ ├── global.c │ │ │ ├── gui.c │ │ │ ├── lcd.c │ │ │ ├── pulsecoll.c │ │ │ ├── rtc.c │ │ │ ├── siic.c │ │ │ ├── spi1.c │ │ │ ├── st7789v.c │ │ │ ├── swmode.c │ │ │ ├── timer4.c │ │ │ ├── upcom.c │ │ │ └── usart1.c │ ├── Library │ │ ├── STM32F402VC_FLASH.ld │ │ ├── include │ │ │ ├── core_cm4.h │ │ │ ├── core_cmFunc.h │ │ │ ├── core_cmInstr.h │ │ │ ├── core_cmSimd.h │ │ │ ├── misc.h │ │ │ ├── stm32f4xx.h │ │ │ ├── stm32f4xx_adc.h │ │ │ ├── stm32f4xx_conf.h │ │ │ ├── stm32f4xx_exti.h │ │ │ ├── stm32f4xx_gpio.h │ │ │ ├── stm32f4xx_it.h │ │ │ ├── stm32f4xx_pwr.h │ │ │ ├── stm32f4xx_rcc.h │ │ │ ├── stm32f4xx_rtc.h │ │ │ ├── stm32f4xx_spi.h │ │ │ ├── stm32f4xx_syscfg.h │ │ │ ├── stm32f4xx_tim.h │ │ │ ├── stm32f4xx_usart.h │ │ │ └── system_stm32f4xx.h │ │ ├── source │ │ │ ├── misc.c │ │ │ ├── stm32f4xx_adc.c │ │ │ ├── stm32f4xx_exti.c │ │ │ ├── stm32f4xx_gpio.c │ │ │ ├── stm32f4xx_it.c │ │ │ ├── stm32f4xx_pwr.c │ │ │ ├── stm32f4xx_rcc.c │ │ │ ├── stm32f4xx_rtc.c │ │ │ ├── stm32f4xx_spi.c │ │ │ ├── stm32f4xx_syscfg.c │ │ │ ├── stm32f4xx_tim.c │ │ │ ├── stm32f4xx_usart.c │ │ │ └── system_stm32f4xx.c │ │ └── startup_stm32f402xx.s │ ├── User │ │ ├── main.c │ │ └── main.h │ └── readme.md ├── STM32BurnableFiles │ ├── PulseMonitor.bin │ ├── PulseMonitor.elf │ ├── PulseMonitor.hex │ └── readme.md ├── UpperComputerSource │ ├── PulseMonitor.pro │ ├── icon │ │ ├── close.png │ │ ├── down_list.png │ │ ├── login.png │ │ ├── pulse.ico │ │ ├── switch-OFF.png │ │ └── switch-ON.png │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── pwchartview.cpp │ ├── pwchartview.h │ ├── qdlglogin.cpp │ ├── qdlglogin.h │ ├── qdlglogin.ui │ ├── qdlglogon.cpp │ ├── qdlglogon.h │ ├── qdlglogon.ui │ ├── readme.md │ └── res.qrc └── UpperExecutableProgram │ ├── D3Dcompiler_47.dll │ ├── PulseMonitor.exe │ ├── Qt6Charts.dll │ ├── Qt6Core.dll │ ├── Qt6Gui.dll │ ├── Qt6OpenGL.dll │ ├── Qt6OpenGLWidgets.dll │ ├── Qt6SerialPort.dll │ ├── Qt6Svg.dll │ ├── Qt6Widgets.dll │ ├── iconengines │ └── qsvgicon.dll │ ├── imageformats │ ├── qgif.dll │ ├── qicns.dll │ ├── qico.dll │ ├── qjpeg.dll │ ├── qsvg.dll │ ├── qtga.dll │ ├── qtiff.dll │ ├── qwbmp.dll │ └── qwebp.dll │ ├── libgcc_s_seh-1.dll │ ├── libstdc++-6.dll │ ├── libwinpthread-1.dll │ ├── opengl32sw.dll │ ├── platforms │ └── qwindows.dll │ ├── readme.md │ ├── styles │ └── qwindowsvistastyle.dll │ ├── translations │ ├── qt_ar.qm │ ├── qt_bg.qm │ ├── qt_ca.qm │ ├── qt_cs.qm │ ├── qt_da.qm │ ├── qt_de.qm │ ├── qt_en.qm │ ├── qt_es.qm │ ├── qt_fa.qm │ ├── qt_fi.qm │ ├── qt_fr.qm │ ├── qt_gd.qm │ ├── qt_he.qm │ ├── qt_hr.qm │ ├── qt_hu.qm │ ├── qt_it.qm │ ├── qt_ja.qm │ ├── qt_ko.qm │ ├── qt_lv.qm │ ├── qt_nl.qm │ ├── qt_nn.qm │ ├── qt_pl.qm │ ├── qt_pt_BR.qm │ ├── qt_ru.qm │ ├── qt_sk.qm │ ├── qt_tr.qm │ ├── qt_uk.qm │ ├── qt_zh_CN.qm │ └── qt_zh_TW.qm │ └── userpin ├── pictures ├── 3D_PMOR.png ├── 3D_R2V.png ├── PCB_PMOR.png ├── PCB_R2V.png ├── SCH_PMOR.svg ├── SCH_R2V.svg ├── login.png ├── logon.png ├── main.png └── run.gif └── readme.md /Hardware/ProProject_PMOR_V3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Hardware/ProProject_PMOR_V3.zip -------------------------------------------------------------------------------- /Hardware/ProProject_R2V_V3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Hardware/ProProject_R2V_V3.zip -------------------------------------------------------------------------------- /Hardware/readme.md: -------------------------------------------------------------------------------- 1 | 使用立创eda专业版打开 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/LICENSE -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/include/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/include/adc.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/include/batmana.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/include/batmana.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/include/bluetooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/include/bluetooth.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/include/cst816t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/include/cst816t.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/include/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/include/delay.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/include/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/include/font.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/include/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/include/global.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/include/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/include/gui.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/include/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/include/lcd.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/include/pulsecoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/include/pulsecoll.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/include/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/include/rtc.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/include/siic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/include/siic.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/include/spi1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/include/spi1.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/include/st7789v.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/include/st7789v.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/include/swmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/include/swmode.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/include/timer4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/include/timer4.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/include/upcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/include/upcom.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/include/usart1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/include/usart1.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/source/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/source/adc.c -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/source/batmana.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/source/batmana.c -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/source/bluetooth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/source/bluetooth.c -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/source/cst816t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/source/cst816t.c -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/source/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/source/delay.c -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/source/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/source/font.c -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/source/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/source/global.c -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/source/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/source/gui.c -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/source/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/source/lcd.c -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/source/pulsecoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/source/pulsecoll.c -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/source/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/source/rtc.c -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/source/siic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/source/siic.c -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/source/spi1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/source/spi1.c -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/source/st7789v.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/source/st7789v.c -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/source/swmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/source/swmode.c -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/source/timer4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/source/timer4.c -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/source/upcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/source/upcom.c -------------------------------------------------------------------------------- /Software/LowerComputerSource/Code/source/usart1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Code/source/usart1.c -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/STM32F402VC_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/STM32F402VC_FLASH.ld -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/include/core_cm4.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/include/core_cmFunc.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/include/core_cmInstr.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/include/core_cmSimd.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/include/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/include/misc.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/include/stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/include/stm32f4xx.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/include/stm32f4xx_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/include/stm32f4xx_adc.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/include/stm32f4xx_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/include/stm32f4xx_conf.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/include/stm32f4xx_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/include/stm32f4xx_exti.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/include/stm32f4xx_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/include/stm32f4xx_gpio.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/include/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/include/stm32f4xx_it.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/include/stm32f4xx_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/include/stm32f4xx_pwr.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/include/stm32f4xx_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/include/stm32f4xx_rcc.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/include/stm32f4xx_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/include/stm32f4xx_rtc.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/include/stm32f4xx_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/include/stm32f4xx_spi.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/include/stm32f4xx_syscfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/include/stm32f4xx_syscfg.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/include/stm32f4xx_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/include/stm32f4xx_tim.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/include/stm32f4xx_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/include/stm32f4xx_usart.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/include/system_stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/include/system_stm32f4xx.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/source/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/source/misc.c -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/source/stm32f4xx_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/source/stm32f4xx_adc.c -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/source/stm32f4xx_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/source/stm32f4xx_exti.c -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/source/stm32f4xx_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/source/stm32f4xx_gpio.c -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/source/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/source/stm32f4xx_it.c -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/source/stm32f4xx_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/source/stm32f4xx_pwr.c -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/source/stm32f4xx_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/source/stm32f4xx_rcc.c -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/source/stm32f4xx_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/source/stm32f4xx_rtc.c -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/source/stm32f4xx_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/source/stm32f4xx_spi.c -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/source/stm32f4xx_syscfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/source/stm32f4xx_syscfg.c -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/source/stm32f4xx_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/source/stm32f4xx_tim.c -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/source/stm32f4xx_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/source/stm32f4xx_usart.c -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/source/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/source/system_stm32f4xx.c -------------------------------------------------------------------------------- /Software/LowerComputerSource/Library/startup_stm32f402xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/Library/startup_stm32f402xx.s -------------------------------------------------------------------------------- /Software/LowerComputerSource/User/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/User/main.c -------------------------------------------------------------------------------- /Software/LowerComputerSource/User/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/User/main.h -------------------------------------------------------------------------------- /Software/LowerComputerSource/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/LowerComputerSource/readme.md -------------------------------------------------------------------------------- /Software/STM32BurnableFiles/PulseMonitor.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/STM32BurnableFiles/PulseMonitor.bin -------------------------------------------------------------------------------- /Software/STM32BurnableFiles/PulseMonitor.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/STM32BurnableFiles/PulseMonitor.elf -------------------------------------------------------------------------------- /Software/STM32BurnableFiles/PulseMonitor.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/STM32BurnableFiles/PulseMonitor.hex -------------------------------------------------------------------------------- /Software/STM32BurnableFiles/readme.md: -------------------------------------------------------------------------------- 1 | 使用JLINK串口或其他烧录工具选择其中一个文件烧录即可 -------------------------------------------------------------------------------- /Software/UpperComputerSource/PulseMonitor.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperComputerSource/PulseMonitor.pro -------------------------------------------------------------------------------- /Software/UpperComputerSource/icon/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperComputerSource/icon/close.png -------------------------------------------------------------------------------- /Software/UpperComputerSource/icon/down_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperComputerSource/icon/down_list.png -------------------------------------------------------------------------------- /Software/UpperComputerSource/icon/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperComputerSource/icon/login.png -------------------------------------------------------------------------------- /Software/UpperComputerSource/icon/pulse.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperComputerSource/icon/pulse.ico -------------------------------------------------------------------------------- /Software/UpperComputerSource/icon/switch-OFF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperComputerSource/icon/switch-OFF.png -------------------------------------------------------------------------------- /Software/UpperComputerSource/icon/switch-ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperComputerSource/icon/switch-ON.png -------------------------------------------------------------------------------- /Software/UpperComputerSource/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperComputerSource/main.cpp -------------------------------------------------------------------------------- /Software/UpperComputerSource/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperComputerSource/mainwindow.cpp -------------------------------------------------------------------------------- /Software/UpperComputerSource/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperComputerSource/mainwindow.h -------------------------------------------------------------------------------- /Software/UpperComputerSource/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperComputerSource/mainwindow.ui -------------------------------------------------------------------------------- /Software/UpperComputerSource/pwchartview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperComputerSource/pwchartview.cpp -------------------------------------------------------------------------------- /Software/UpperComputerSource/pwchartview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperComputerSource/pwchartview.h -------------------------------------------------------------------------------- /Software/UpperComputerSource/qdlglogin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperComputerSource/qdlglogin.cpp -------------------------------------------------------------------------------- /Software/UpperComputerSource/qdlglogin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperComputerSource/qdlglogin.h -------------------------------------------------------------------------------- /Software/UpperComputerSource/qdlglogin.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperComputerSource/qdlglogin.ui -------------------------------------------------------------------------------- /Software/UpperComputerSource/qdlglogon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperComputerSource/qdlglogon.cpp -------------------------------------------------------------------------------- /Software/UpperComputerSource/qdlglogon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperComputerSource/qdlglogon.h -------------------------------------------------------------------------------- /Software/UpperComputerSource/qdlglogon.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperComputerSource/qdlglogon.ui -------------------------------------------------------------------------------- /Software/UpperComputerSource/readme.md: -------------------------------------------------------------------------------- 1 | 推荐使用QT6编译 -------------------------------------------------------------------------------- /Software/UpperComputerSource/res.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperComputerSource/res.qrc -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/D3Dcompiler_47.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/D3Dcompiler_47.dll -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/PulseMonitor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/PulseMonitor.exe -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/Qt6Charts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/Qt6Charts.dll -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/Qt6Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/Qt6Core.dll -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/Qt6Gui.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/Qt6Gui.dll -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/Qt6OpenGL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/Qt6OpenGL.dll -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/Qt6OpenGLWidgets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/Qt6OpenGLWidgets.dll -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/Qt6SerialPort.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/Qt6SerialPort.dll -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/Qt6Svg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/Qt6Svg.dll -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/Qt6Widgets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/Qt6Widgets.dll -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/iconengines/qsvgicon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/iconengines/qsvgicon.dll -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/imageformats/qgif.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/imageformats/qgif.dll -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/imageformats/qicns.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/imageformats/qicns.dll -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/imageformats/qico.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/imageformats/qico.dll -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/imageformats/qjpeg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/imageformats/qjpeg.dll -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/imageformats/qsvg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/imageformats/qsvg.dll -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/imageformats/qtga.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/imageformats/qtga.dll -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/imageformats/qtiff.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/imageformats/qtiff.dll -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/imageformats/qwbmp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/imageformats/qwbmp.dll -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/imageformats/qwebp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/imageformats/qwebp.dll -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/libgcc_s_seh-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/libgcc_s_seh-1.dll -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/libstdc++-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/libstdc++-6.dll -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/libwinpthread-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/libwinpthread-1.dll -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/opengl32sw.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/opengl32sw.dll -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/platforms/qwindows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/platforms/qwindows.dll -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/readme.md: -------------------------------------------------------------------------------- 1 | 双击其中的PulseMonitor.exe即可运行 -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/styles/qwindowsvistastyle.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/styles/qwindowsvistastyle.dll -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/translations/qt_ar.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/translations/qt_ar.qm -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/translations/qt_bg.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/translations/qt_bg.qm -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/translations/qt_ca.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/translations/qt_ca.qm -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/translations/qt_cs.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/translations/qt_cs.qm -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/translations/qt_da.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/translations/qt_da.qm -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/translations/qt_de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/translations/qt_de.qm -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/translations/qt_en.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/translations/qt_en.qm -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/translations/qt_es.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/translations/qt_es.qm -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/translations/qt_fa.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/translations/qt_fa.qm -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/translations/qt_fi.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/translations/qt_fi.qm -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/translations/qt_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/translations/qt_fr.qm -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/translations/qt_gd.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/translations/qt_gd.qm -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/translations/qt_he.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/translations/qt_he.qm -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/translations/qt_hr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/translations/qt_hr.qm -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/translations/qt_hu.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/translations/qt_hu.qm -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/translations/qt_it.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/translations/qt_it.qm -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/translations/qt_ja.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/translations/qt_ja.qm -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/translations/qt_ko.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/translations/qt_ko.qm -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/translations/qt_lv.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/translations/qt_lv.qm -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/translations/qt_nl.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/translations/qt_nl.qm -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/translations/qt_nn.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/translations/qt_nn.qm -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/translations/qt_pl.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/translations/qt_pl.qm -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/translations/qt_pt_BR.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/translations/qt_pt_BR.qm -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/translations/qt_ru.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/translations/qt_ru.qm -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/translations/qt_sk.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/translations/qt_sk.qm -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/translations/qt_tr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/translations/qt_tr.qm -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/translations/qt_uk.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/translations/qt_uk.qm -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/translations/qt_zh_CN.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/translations/qt_zh_CN.qm -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/translations/qt_zh_TW.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/Software/UpperExecutableProgram/translations/qt_zh_TW.qm -------------------------------------------------------------------------------- /Software/UpperExecutableProgram/userpin: -------------------------------------------------------------------------------- 1 | test_098f6bcd4621d373cade4e832627b4f6 2 | -------------------------------------------------------------------------------- /pictures/3D_PMOR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/pictures/3D_PMOR.png -------------------------------------------------------------------------------- /pictures/3D_R2V.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/pictures/3D_R2V.png -------------------------------------------------------------------------------- /pictures/PCB_PMOR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/pictures/PCB_PMOR.png -------------------------------------------------------------------------------- /pictures/PCB_R2V.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/pictures/PCB_R2V.png -------------------------------------------------------------------------------- /pictures/SCH_PMOR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/pictures/SCH_PMOR.svg -------------------------------------------------------------------------------- /pictures/SCH_R2V.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/pictures/SCH_R2V.svg -------------------------------------------------------------------------------- /pictures/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/pictures/login.png -------------------------------------------------------------------------------- /pictures/logon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/pictures/logon.png -------------------------------------------------------------------------------- /pictures/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/pictures/main.png -------------------------------------------------------------------------------- /pictures/run.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/pictures/run.gif -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coerq/GraduationProject-PulseMonitoringSystem/HEAD/readme.md --------------------------------------------------------------------------------