tobozo

Results 715 comments of tobozo

sorry I didn't read your full post before replying :blush: you can probably take the `Set_1963_PWM()` function from the vendor and implement it inside your LGFX custom class, this is...

maybe `_bus_instance.config().cfg.pin_ctrl[3]` can be used for pulling CD high ? e.g. `cfg.pin_ctrl = { DISPLAY_SSD1963_CD, -1, -1 };` ? > (The pin is just used to digitalWrite(HIGH) in the LCDWIKI_KBV...

@tylercamp thanks for breaking out the different suggested solutions :+1: , I have forwarded the new issue link to lovyan03 as I honestly don't know which one is better since...

hi, thanks for your feedback :+1: SSLClient and NetworkClientSecure inherit from the same Arduino Client class and share the client method names used by esp32FOTA, so it should probably work....

been trying to get esp32FOTA to work with phy/transport/app layers without refactoring every OSI related function calls but failed so I guess a refactor will be needed after all I'm...

hi, thanks for testing this :+1: [M5Stamp S3 has 8MB of psram](https://docs.m5stack.com/en/core/StampS3#description), unless psram is explicitey disabled in the board options before compiling, psram *will* be used. But yes, ESP32-PsRamFS...

hi, thanks for your feedback :+1: folder related functions are probably leaky, does it improve if you limit the tests to read/write/append/rename/delete ?

yes I meant to just exclude the directory functions from the example have you tried commenting out this part? ```cpp #define UNIT_TESTS ```

hi, thanks for submitting this :+1: given that LVGL supports bidirectional text and can work on top of LovyanGFX, it's unlikely to happen in LGFX core, but this is totally...

hi, does it also occur with drawLine() or pushImage() ? ```cpp _tft.pushImage(0, 0, 131, 1, (const uint16_t *)pBitmap); _tft.pushImage(0, 0, 130, 1, (const uint16_t *)pBitmap); ``` what if you invert...