OV-Watch

📒 Overview

This is A powerful Smart Watch.

If you find the hardware of this watch difficult to solder or replicate, if hard to make, but you just want to focus on learning coding or LVGL UI instead, you can try a new STM32F411 development board:

FriPi STM32F411 dev-kit:https://github.com/No-Chicken/FryPi

V2.2 video intro | V2.3 NEW function video intro | Easy EDA open source hardware

🚀 Additional Features ( in V2.3 )

The modified features include:

  1. Heart rate section: added LED matrix hardware to enhance PPG signal strength.

  2. Changed to a double-layer board to accommodate fitting, avoiding 4-layer board due to the inability of JLCPCB to make blind buried vias.

  3. Bluetooth changed to KT6328A.

  4. MPU6050 circuit modification: In V2.2, the AUX pin was grounded, which led to higher power consumption in previous versions. Now standby power consumption is in the range of several hundred microamperes.

  5. Removed NFC section due to previous design issues where NFC would be shielded by PCB copper and screen iron sheet.

  6. Power supply section redesigned for low power consumption: pulled down the PS/SYNC pin of TPS63020 and set to Power Save mode. According to the reference manual, under low current conditions, the previous efficiency was only 60%, whereas Power Save mode can achieve 90%.

  7. Added games (2048, memory blocks, MPU6050-related games).

  8. Fixed some bugs.

📑Function List:

 V1.0V1.1V2.0V2.1V2.2V2.3
MCUSTM32STM32STM32STM32STM32STM32
Screen size(inches)1.141.141.691.691.691.69
Touch
NFC
BlueTooth
Charg wayMicro-USBMicro-USBWirelessMagneticMagneticMagnetic
Temperature Measure
Humidity Measure
Heart Rate
Altitude Measurement
Calculator
Wrist Wake Screen
Compass
Stopwatch
Game

🌟V2.3 Pictures

💻Design Details of the Software Section:

1.Low Power Design

The watch has three modes. The first one is the normal operating mode, where the watch functions normally. The second is the sleep mode, where the MCU enters STOP mode while the MPU6050 still counts steps. The third is the shutdown mode, where the TPS63020 directly disables, resulting in no 3V3 power supply, only Vbat is powered.

At first, the watch used the motion function of the MPU6050 from sleep to wake up, opening interrupts to wake up. However, it was found that a large shaking motion was required to trigger the interrupt. Therefore, RTC timed interrupts were eventually used to wake up, followed by periodic checks of the current gesture status. If there is a wrist lifting action, it wakes up.

note: MPU6050 cannot directly use the DMP library. After initialization, the power consumption is high and some modifications are needed to reduce power consumption. Refer to the project code for specifics.

If using the KT6328A for Bluetooth, it is not recommended to disable Bluetooth because its standby power consumption is very low.

As For Test, when I testing with 3V3 as power supply, the power consumption is approximately 70-80mA in operating mode, around 1mA in standby mode, and almost no power consumption in shutdown mode, with only the RTC working. However, there was no testing of the power supply connected to the Vbat terminal powered by DCDC, and this power consumption depends entirely on the efficiency of the DCDC.

2.Heart Rate Blood Oxygen

The blood oxygen part has not been done yet.

Originally, the heart rate calculation used the official library, but the calculation was too slow. Later, it was changed to a simple peak detection algorithm written by ourselves. The PPG signal of the EM7028 is as shown in the figure below:

3.Data Storage

Currently, an external EEPROM is used for data storage, mainly for storing settings, etc. For...

Read more »