u8g2-hal-esp-idf icon indicating copy to clipboard operation
u8g2-hal-esp-idf copied to clipboard

U8g2 compatibility component for esp-idf on ESP32

Results 14 u8g2-hal-esp-idf issues
Sort by recently updated
recently updated
newest added

Hi, Thank you for this repository. I've been having a bit of trouble getting this set up, though I believe I have all the components in the right place, the...

The i2c_config_t structure changed in newer versions of IDF (I'm using 4.3.2), and a critical element is not initialized. The fix: in u8g2_esp32_hal.c, add this after line 142: conf.clk_flags =...

Using your HAL code, I'm getting this error: `u8g2_esp32_i2c_byte_cb u8g2_esp32_hal.c:179 (0 && "i2c_master_cmd_begin(I2C_MASTER_NUM, handle_i2c, I2C_TIMEOUT_MS / portTICK_RATE_MS)")` I'm in the process of figuring out why, but opening an issue might...

I installed the library acording to the readme and I'm getting the following error: ``` CMake Error at /components/u8g2/CMakeLists.txt:2 (project): project command is not scriptable ``` I'm ussing ESP-IDF v5.1.1

Hi Markus, really appreciate building this lib! I am trying to use this lib to make u8g2 working with esp32. And I am running into a few build issues. Issue...

Hi, I'm not sure whether this is something I'm doing wrong or whether this is a problem with the ESP32-S2 or something else: I have tried both the example project...

Given the following configuration: ``` $ cat CMakeLists.txt cmake_minimum_required(VERSION 3.16.0) include($ENV{IDF_PATH}/tools/cmake/project.cmake) list(APPEND EXTRA_COMPONENT_DIRS components) project(blah) $ ls components/ u8g2 u8g2-hal-esp-idf ``` The following error occurs: ``` CMake Error at components/u8g2/CMakeLists.txt:2...

Based off the issues everyone seems to be experiencing using this as a component, I think the ideal scenario would be to provide an example repo that settles on one...

Firstly I would like to thank you. This library works perfectly. Although I had a little difficulty configuring the CMAKE file, I managed to make it work perfectly. My project...