Skip to content

T-Watch S3 Hardware feedback #257

@Dominaezzz

Description

@Dominaezzz

The T-Watch S3 is fantastic and polished. Makes me actually want to use an ESP32 as a watch.
I do have some hardware feedback for the next revision if you make one. A T-Watch S3 Pro? or V2? 😄

Use different pins for I2C buses

The device has two I2C buses. The one for the touch panel ones on GPIO39/GPIO40 and the ones for the main bus (haptic motor, rtc, bma423, etc) on GPIO10/GPIO11.
The pin choices for these two I2C buses are not optimal for low power.
The ESP32-S3 has a ULP co-processor which is able to run while the main core is in deep sleep. It is able to manipulate GPIO pins, read from ADC and most importantly perform I2C operations. It's possible to use it to keep an eye on the touch screen or read data from the step counter while the ESP32-S3 stays in deep sleep. It can also wake up the ESP32 under certain conditions.
It has a restriction where it can only use GPIO0-4 for I2C. Specifically GPIO1/GPIO3 for SDA and GPIO0/GPIO2 for SCL.
Due to this restriction, the ULP can't be used to do I2C on the T-Watch S3, because different pins are used.

I propose this configuration for the next version (and all future battery powered ESP32-S3 products). This will help us save more power.

I2C SDA SCL
Capacitive Touch GPIO1 GPIO0
Main Bus GPIO3 GPIO2

Make sure to keep using GPIO4-GPIO21 for the interrupt pins and the lora chip, as those are the only pins that the ULP can use.

Use USB C instead of USB micro-B.

This would mean one less cable to carry around and it also makes it easier to use the watch as a USB host.

Longer wrist strap

A longer wrist strap would be nice, the watch barely fits around my wrist.

Connect the XTAL32K pins to a 32.768 kHz clk source

GPIO15(XTAL_32k_P) and GPIO16(XTAL_32k_N) are being used for the speaker and the touch screen interrupt.

According to this esp-idf nimble power saving example, we can get 10 times the power savings if the XTAL_32k is used as the clock source. 230 uA vs 3.3 mA. More that 10 times the savings in current consumption.

According to the schematic of the T-Watch S3 the PCF8563 has an unused RTC_CLKOUT. This RTC_CLKOUT could be connected to GPIO15(XTAL_32k_P) to get a 32.768 kHz clk source, and we'd be able to save more power.

I would be grateful if any these could be implemented in the next version. Most importantly the I2C and XTAL_32k notes.
Thanks!

EDIT: I made notes off all these here.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions