Rop Gonggrijp

Results 71 comments of Rop Gonggrijp

Just noticed I didn't answer one of your questions: > what are the long term plans with https://github.com/ropg/i2c_manager ? I don't think it needs to do that much more than...

I agree when it comes to displays because of multiple display setups etc. There you transcend the limits of Kconfig and it's all internal to LVGL. But I beg to...

I was thinking about something said here: > As a replacement, examples of how to configure the drivers and LVGL will be provided in examples folder [...] I think it...

Once I fixed those I got: ```c ../components/lvgl_esp32_drivers/lvgl_helpers.c:21:10: fatal error: src/lv_core/lv_refr.h: No such file or directory #include "src/lv_core/lv_refr.h" ``` I'd love to play with power management and sleep modes on...

I'd be happy to hear in more detail what your thoughts are. Possibly I can adjust things to your liking. Feel free to talk here or email me: rop -at~...

I've tried some things to see if I could fix it, but I run into not really understanding the order of business as lvgl deals with a soft boot. I'd...

I think I understand it and fixed it, at least for the pyboard.py that lives inside rshell. rshell now has a `-s`, `--suppress-reset` switch. See https://github.com/dhylands/rshell/issues/27 and the Pull Request...

It is the same on the other M5Stack which I used before. In fact it's the same on any serial output, I would think. It does not seem dependent on...

Just tested: even this, on an M5Stack classic, does the trick: ```C++ #include void setup() { M5.begin(); } void loop() { M5.update(); if (M5.BtnA.wasPressed()) Serial.printf("millis(): %d\n", millis()); } ```