File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 5
5
### Bugfixes:
6
6
7
7
* fix(examples): fix ` LVGL_PORT_ROTATION_DEGREE ` issue by @lboue (#76 )
8
+ * fix(examples): fix issue with I2C.ino EXAMPLE_TOUCH_ADDRESS missing as variable by @lboue (#84 )
8
9
9
10
## v0.1.5 - 2024-07-09
10
11
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ void setup()
101
101
ESP_PANEL_TOUCH_I2C_PANEL_IO_CONFIG_WITH_ADDR (EXAMPLE_TOUCH_NAME, EXAMPLE_TOUCH_ADDRESS));
102
102
// Taking GT911 as an example, the following is the code after macro expansion:
103
103
// ESP_PanelBus_I2C *touch_bus = new ESP_PanelBus_I2C(EXAMPLE_TOUCH_PIN_NUM_I2C_SCL, EXAMPLE_TOUCH_PIN_NUM_I2C_SDA,
104
- // ESP_LCD_TOUCH_IO_I2C_GT911_CONFIG_WITH_ADDR());
104
+ // ESP_LCD_TOUCH_IO_I2C_GT911_CONFIG_WITH_ADDR(EXAMPLE_TOUCH_ADDRESS ));
105
105
#endif
106
106
touch_bus->configI2cFreqHz (EXAMPLE_TOUCH_I2C_FREQ_HZ);
107
107
touch_bus->begin ();
You can’t perform that action at this time.
0 commit comments