Search found 17 matches

by husky
Sat Sep 26, 2020 6:24 pm
Forum: ESP32 boards
Topic: TTGO T-WATCH-2020
Replies: 87
Views: 109144

Re: TTGO T-WATCH-2020

wow, I also think that a lvgl way would make things much easier in terms of interface programming. But you're right that the changes are getting bigger and harder to integrate into the main branch of wasp-os.Looking at lvgl, I think an lvgl-based system would be nicer, more usable, and easier to pro...
by husky
Sat Sep 26, 2020 9:28 am
Forum: ESP32 boards
Topic: TTGO T-WATCH-2020
Replies: 87
Views: 109144

Re: TTGO T-WATCH-2020

There you ttgo: Minimal lvgl app demo with micropython on T-Watch 2020, st7789 and axp202. https://gist.github.com/AngainorDev/63ee2994e6e159daac0c23651eee1005 that's fantastic, when I have time I will integrate lvgl into my port and find a way to integrate my port into the main branch of wasp-os
by husky
Mon Sep 21, 2020 3:02 pm
Forum: ESP32 boards
Topic: TTGO T-WATCH-2020
Replies: 87
Views: 109144

Re: TTGO T-WATCH-2020

:cry: Sorry to leave that comment from the original wasp-os. In my fork the ticks are expressed in milliseconds.
Ignore that comment.
by husky
Sun Sep 20, 2020 5:27 pm
Forum: ESP32 boards
Topic: TTGO T-WATCH-2020
Replies: 87
Views: 109144

Re: TTGO T-WATCH-2020

I have finished version 0.1 of the wasp project adapted to twatch 2020. It works: clock, stopwatch, flashlight, settings. in this version the clock wakes up every 5 minutes and tries to connect to the internet to do certain tasks, right now just synchronize the time. This version will have many err...
by husky
Fri Aug 28, 2020 9:36 am
Forum: ESP32 boards
Topic: TTGO T-WATCH-2020
Replies: 87
Views: 109144

Re: TTGO T-WATCH-2020

Metronome app seems easy to implement over wasp adaptation I did.
by husky
Mon Aug 24, 2020 11:21 am
Forum: ESP32 boards
Topic: GPIO wakeup enable
Replies: 6
Views: 3574

Re: GPIO wakeup enable

thanks Lixas, I have tried to wake up esp32 using ext0 and ext1 but I want to use any gpio, not just the ones that are connected to the RTC. Using light sleep, I can have more control to wake up esp using different external sources. https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-ref...
by husky
Wed Aug 19, 2020 2:39 pm
Forum: ESP32 boards
Topic: TTGO T-WATCH-2020
Replies: 87
Views: 109144

Re: TTGO T-WATCH-2020

I have finished version 0.1 of the wasp project adapted to twatch 2020. It works: clock, stopwatch, flashlight, settings. in this version the clock wakes up every 5 minutes and tries to connect to the internet to do certain tasks, right now just synchronize the time. This version will have many erro...
by husky
Mon Aug 17, 2020 5:07 pm
Forum: ESP32 boards
Topic: TTGO T-WATCH-2020
Replies: 87
Views: 109144

Re: TTGO T-WATCH-2020

if this https://github.com/focaltech-systems/dr ... r/issues/5 is true. We have to implement gestures in software. Any code for that?
by husky
Mon Aug 17, 2020 11:48 am
Forum: ESP32 boards
Topic: GPIO wakeup enable
Replies: 6
Views: 3574

GPIO wakeup enable

Hi, I am using light sleep, and I would like to wake up the processor with the GPIOs, in IDF the function is esp_sleep_enable_gpio_wakeup and gpio_wakeup_enable.
Is there a way to do this in Micropython? I've tried the wake argument of the Pin.irq function but it doesn't work
Thanks
by husky
Mon Aug 17, 2020 11:27 am
Forum: ESP32 boards
Topic: TTGO T-WATCH-2020
Replies: 87
Views: 109144

Re: TTGO T-WATCH-2020

I already have a wasp-based system, with a battery widget and a clock application running. The battery lasts about 4-5 days. It connects to the internet every 20 minutes to synchronize the time and do background tasks. I'm going to try to make the touch gestures work. When I get it, I upload the pro...