Close
0%
0%

ESP32-S2 Wristwatch (Not Smartwatch Yet!)

C-WATCH - Another wristwatch for who loves to code

Similar projects worth following
This is my 3rd project uploaded at hackaday.io

In this project I want to challenge myself to "Create any project that use ESP32 chip (not the module)"

Why ESP32 chip ? Because I want to :
- Learn how minimum system of ESP32 works
- Minimized board size, but rich in functionality
- Learn to solder the smaller SMD components

When I browse another projects, I'm interested in the (smart)watch project called Chronio (https://hackaday.io/project/12876-chronio). This guy has a good work and well documented. He build a nice Arduino watch that using Sharp memory Display. Have a look that project logs, you will see how he manage the battery life, shematic, code, and the enclosure that you can actually print in your 3D printer. As the result his watch is close enough to Pebble Time.

So I decided to continue his works with a quite a lot of changes actually (in hardware).

Hardware

  • MCU : ESP32-S2 from Espressif
  • Wifi : Yes
  • RTC : RV-3028 from Micro Cystal
  • Display : 96x96 pixel Sharp Memory LCD (LS013B4DN04)
  • Battery Charger Management : MCP73831T from Microchip Tech
  • Battery : Lithium battery 3.7V 350mAh

  • Designing The Model

    Insan Sains05/21/2022 at 09:01 0 comments

    Microcontroller

    Instead of using ATMEGA328P, I use ESP32 for the main controller. But which type exactly? ESP32-PICO, ESP32-D0WD, ESP32-S2, ESP32-C3?

    Most and previous ESP32 variants need USB to Serial converter to upload the firmware. Which is it pushed me to add serial converter chip on the board. It will increase the board size of course. Or I can leave serial breakout pad, so when I need to upload the firmware, I just need to connect it with the external serial converter. Good idea for saving space, but it will complicated in designing the external programmer, and also it is not convenience way in the firmware development phase.

    Luckily, Espressif  already launch their chip that have internal USB CDC for upload and serial connection. And there is no significant difference in size. One of them is ESP32-S2 that also have a Wifi connection. So for the MCU I decided to use ESP32-S2 with a couple components to make it works as in datasheet.

    Antenna

    The PCB antenna is look like a quite cheap solution, but maybe it is not, especially for just prototyping. Because maybe it can't using HASL PCB, it need at least ENIG finishing PCB. I'm not expert in radio frequency, so please CMMIW. But even using PCB antenna is really a cheap solution, it required more space, right? So I jump to another solution, using SMD antenna.

    There are so many SMD antenna manufacturer. Don't know which is the best. So I will randomly choose that fit to the board. If you have any experience of this, please let me know.

    Display

    I use same as Max.K design who created Chronio. LS013B4DN04. It's Sharp Memory Display which is a display between LCD and e-Paper. Simple answer why I use this LCD? because I already have it. Couple years ago I bought Texas Intruments Watch DevPack Addon Sensor Tag CC1350. So yes, it is the same display.

    Real Time Clock

    For the RTC, I came with RV-3028-C7 from Micro Cystal. It has 1%ppm, what a time accuracy! And the size is 10 times smaller than using DS3231. Don't know much about this RTC, never tried this. But already requested the sample from the manufacturer.

    Battery Management

    I use MCP73831T as a battery charger, and JST 2P 1.25mm for the battery connector.

    Vibration Motor

    I found a old cell-phone, and took the vibration motor. I think it will works without any issues.

    FIRST MILESTONE

    It is my first time using ESP32 chip and their required components. Plus it's a small smd chip. I usually work with 0603 package. Now I designed 0402 package. Hope it's not difficult to soldering by hand. 

    Since there is a lot of new components for me, so I decided the first milestone is I just want to get the answer of :

    • Is my minimum system of ESP32-S2 works?
    • Can I program the ESP32-S2 without serial converter?
    • Can I access Wifi?
    • Is the RTC RV-3028 works?
    • Is ESP32-S2 can drive the display?
    • How about a simple buttons, it's works?


    That is it!

    Need to verify the design before I send the gerber file.

View project log

Enjoy this project?

Share

Discussions

teraz wrote 06/04/2022 at 21:59 point

meybe fuzix os fit in ths device?

  Are you sure? yes | no

teraz wrote 05/21/2022 at 20:56 point

1. how long this device work? a month?

2. add rotor and 4 keys/button outside. 

meybe add lora module and using this as normal two way pager?

  Are you sure? yes | no

Insan Sains wrote 05/24/2022 at 07:43 point

Hi, my target is to manage at least 3 months in idle mode. Not for sure how to achieve that, will let you know when we passed the first milestone. I plan to remove the buttons, so it will be easier to think about waterproofing. Adding a lora is a nice idea to add communication feature without internet, I will consider it. Thanks for your suggest.

  Are you sure? yes | no

Similar Projects

Does this project spark your interest?

Become a member to follow this project and never miss any updates