nopnop2002

Results 478 comments of nopnop2002

``` i2c_master_init(&dev, CONFIG_SDA_GPIO, CONFIG_SCL_GPIO, CONFIG_RESET_GPIO); ``` This function cannot change its arguments. Because many users are already using this function in ESP-IDF V5.0/5.1/5.2/5.3/5.4. Changing the arguments to this function will...

This function is already available. https://github.com/nopnop2002/esp-idf-ssd1306/blob/master/components/ssd1306/ssd1306_i2c_new.c#L62 ``` i2c_bus_add(&dev, bus_handle, I2C_NUM_0, CONFIG_RESET_GPIO); ```

>How about RTC DS1302 and BME680 sensor ? Both work simultaneously with the SSD1306. Basically, there is no device that cannot work at the same time as the SSD1306. https://github.com/nopnop2002/esp-idf-ssd1306/tree/master/DeviceAddDemo

@kumekay I used this repository for test. I think you can fork my repository and test it. https://github.com/nopnop2002/esp-idf-DFPlayerMini This is my espidf-compile.yml: ``` name: esp-idf-ci-action on: pull_request: paths: - "main/**"...

This is to avoid TWDT alerts. If you comment it out and run it, you will get a WDT alert with some SoC. You can disable the Task Watchdog Timer...

Try displaying a 128x64 image without delay. You'll probably see TWDT. Changing this will make it few faster. ![Image](https://github.com/user-attachments/assets/e852002a-7d8e-414c-add9-fe0e9e2b8910)

You can eliminate the delay in _ssd1306_bitmaps by changing the following in sdkconfig: CONFIG_ESP_TASK_WDT_EN=n However, disabling TWDT can be risky. This might improve it a bit. ``` //vTaskDelay(1); // To...

I tested DennisCRM's PR for a week and merged this PR. As a result, vTaskDelay(1) in _ssd1306_bitmaps is gone. https://github.com/nopnop2002/esp-idf-ssd1306/blob/master/components/ssd1306/ssd1306.c#L575

This project uses USB-HOST, so you need ESP32S2/S3. It cannot be built on the ESP32 target. The following steps are required: ``` idf.py set-target {esp32s2/esp32s3} idf.py menuconfig idf.py flash monitor...

I believe the USB-HOST 2.0.0 version hasn't been officially released yet, am I wrong? (EDIT) I found that USB-HOST 2.0.0 version has been officially released. It will take some time...