From cc607e2968df4a442c1a702b341752645953e2e1 Mon Sep 17 00:00:00 2001 From: SGE Date: Mon, 1 Apr 2024 21:02:18 +0200 Subject: [PATCH] formatting issues --- esphome/components/icnt86/icnt86.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/esphome/components/icnt86/icnt86.h b/esphome/components/icnt86/icnt86.h index 7851d33aa7..bcb134c437 100644 --- a/esphome/components/icnt86/icnt86.h +++ b/esphome/components/icnt86/icnt86.h @@ -23,10 +23,10 @@ class ICNT86Touchscreen : public touchscreen::Touchscreen, public i2c::I2CDevice protected: void update_touches() override; void reset_(); - void i2c_read_byte_(UWORD reg, static_castData, UBYTE len); - void icnt_read_(UWORD reg, static_castData, UBYTE len); - void icnt_write_(UWORD reg, static_castData, UBYTE len); - void i2c_write_byte_(UWORD reg, static_castData, UBYTE len); + void i2c_read_byte_(UWORD reg, char const *Data, UBYTE len); + void icnt_read_(UWORD reg, char const *Data, UBYTE len); + void icnt_write_(UWORD reg, char const *Data, UBYTE len); + void i2c_write_byte_(UWORD reg, char const *Data, UBYTE len); void reset_touch_sensor_(); InternalGPIOPin *interrupt_pin_{}; GPIOPin *reset_pin_{nullptr};