Skip to content
forked from jakkra/ZSWatch

ZSWatch - the Open Source Zephyr™ based Smartwatch, including both HW and FW.

License

Notifications You must be signed in to change notification settings

delphi1977/ZSWatch

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ZSWatch

License discord

ZSWatch v3 CNC:ed Stainless Steel (left), Clear Resin 3D print (right)


Smartwatch built from scratch, both hardware and software. Built on the Zephyr™ Project RTOS, hence the name ZSWatch - Zephyr Smartwatch.



Synced remote control over BLE

remote_control.mp4

Watch my presentation at Zephyr Developer Summit 2023

Building or getting one

Head over to the hardware repos https://github.com/jakkra/ZSWatch-HW and https://github.com/jakkra/ZSWatch-Dock for information about ordering the PCBs and assembly from PCBWay.

Some things are still in progress:

  • Documentation such as building instructions.
  • Dock casing.

I'll also build a few initial kits (assembled) for those who don't want or can build ZSWatch themselves.
In addition to assembled ZSWatch and dock you will get the following compared to if you build it yourself:

  • A magnetic dock connector and cable. I have got custom ordered cables to fit the needs of ZSWatch.
  • Dock with onboard SEGGER J-Link OB debgger, which means you won't need an external debugger for ZSWatch development and flashing.
  • Possibly CNC:ed casing in Stainless steel (in progress).

If you are interested in a kit, or want to get notified when the missing parts above are resolved, fill in your mail here (Google form) and I'll send a reminder when it's ready.

Or if you want to get notified for releases and when the missing parts are finished simply press the Watch button (next to Fork and Star) -> Custom -> Releases and you will see in your feed when it's officially released.

Table of content ZSWatch

Hardware features

  • nRF5340 BLE chip (u-blox NORA-B10 module).
    • 128 MHz Dual core.
    • 512 KB RAM.
    • 1 MB Flash.
    • 30 MHz SPI for display.
  • 240x240 round display with touch screen.
  • IMU Bosch BMI270, with this one it's possible to do many fancy things such as navigation using gestures and the typical smartwatch wakeup by moving the arm so the display is viewable.
  • Bosch BME688 Environmental sensor with AI.
  • Bosch BMP581 High performance pressure sensor accuracy in units of ~20cm's.
  • ST LIS2MDLTR Magnetometer.
  • Renesas AT25SL128A 16 MB external flash.
  • Broadcom APDS-9306-065 Light Sensor for automatic brightness control.
  • Option to not mount some sensors to save BOM cost.

Charger/Dock

Option with and without onboard SEGGER J-Link OB debugger.
As the debugger requires a license, this will only be availible as part of a kit.

See more at https://github.com/jakkra/ZSWatch-Dock

Enclosure/Casing

3D printed casing with 3D printed buttons, option CNC:able casing in metal.

Software Features

Features and progress

There are almost endless of posiblities for features that could be implemented, see here for full progress and in GitHub issues.

Watchfaces

Alternative watch faces can be chosen by selecting one or many of the appropriate Kconfig.
Swiping left to right will change the watchface. for something else, and can then be disabled.

CONFIG_WATCHFACE_ANALOG=n
CONFIG_WATCHFACE_DIGITAL=y
CONFIG_WATCHFACE_MINIMAL=y

To select watchface background see below config in prj.conf:

CONFIG_WATCHFACE_BACKGROUND_SPACE=y
CONFIG_WATCHFACE_BACKGROUND_FLOWER=n
CONFIG_WATCHFACE_BACKGROUND_PLANET=n
CONFIG_WATCHFACE_BACKGROUND_NONE=n

Smartphone communication

Android phone communication

Fortunately there is a great Android app called GadgetBridge which handles everything needed on the phone side, such as notifications management, music control and so much more... The ZSWatch right now pretends to be one of the supported Smart Watches in Gadgetbridge, following the same API as it does. In future there may be a point adding native support, we'll see.

Pairing

  • In the watch go to Settings -> Bluetooth -> Enable pairing
  • Now go reconnect to the watch from Gadgetbridge app.
  • You should now be paired.

iOS device communication

Apple exposes Apple Notification Center Service GATT server which handles notifications management on the phone side, music control is done in the same fashion using Apple Media Service... The ZSWatch communicates straight to the iOS with no extra Apps.

Pairing

  • In the watch go to Settings -> Bluetooth -> Enable pairing
  • Now go to your device settings -> Bluetooth and choose "ZSWatch"
  • You should be prompted to pair and allow share notifications

PCB

A 4 layer board which measures 38mm in diameter designed in KiCad.
More info here: https://github.com/jakkra/ZSWatch-HW

ZSWatch v1 in action (Note old, not updated for latest HW and SW).

Music control Accelerometer for step count and tap detection
Notifications from phone (Gmail here) Settings
toch_demo.mp4

Environment, Compiling and running the code

See GETTING_STARTED.md

Writing apps for the Application Manager

I recommend watching this part of my presentation at Zephyr Developer Summit where I build a sample app.

Check out the sample application for the general app design. The main idea is each app have an <app_name>_app.c file which registers the app, chooses icon and drives the logic for the app. Then there should be one or more files named for example <app_name>_ui.c containing pure LVGL code with no dependencies to Zephyr or the watch software. The idea is that this UI code should be runnable in a LVGL simulator to speed up development of UI, however right now that's not set up yet. The <app_name>_app.c will do all logic and call functions in <app_name>_ui.c to update the UI accordingly.

Each application needs to have a way to close itself, for example a button, and then through callback tell the application_manager.c to close the app:

When user clicks an app in the app picker:

  • application_manager.c deletes it's UI elements and calls the application_start_fn.
  • <app_name>_app.c will do necessary init and then call the <app_name>_ui.c to draw the app UI.
  • User can now navigate arund and the application and do whatever.

When user for example presses a close button in the application:

  • Typically a callback from the UI code in <app_name>_ui.c will call <app_name>_app.c to tell that user requested to close the app. <app_name>_app.c will notify application_manager.c that it want to close itself. application_manager.c will then call <app_name>_app.c application_stop_fn and <app_name>_app.c will tell UI to close then do necessary de-init and return.
  • application_manager.c will now draw the app picker again.

The application manager can also at any time close a running application by calling it's application_stop_fn.

Other tools

Licence GPL-3.0

Main difference from MIT is now that if anyone want to build something more with this, then they need to also open source their changes back to the project, which I thinks is fair. This is so everyone can benefit from those improvements. If you think this is wrong for some reason feel free to contact me, I'm open to change the LICENCE.

Thanks

SEGGER for supporting with SEGGER-OB licenses which makes the dock a fully functional programmer and debugger for ZSWatch. Thanks to this the project will be much more approchable for persons without a J-Link debugger, letting them have full development and debugging capabilites.

About

ZSWatch - the Open Source Zephyr™ based Smartwatch, including both HW and FW.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 99.7%
  • Other 0.3%