Hi all, how are you?.
I'm trying to compile the sketch FonTest.ino and I'm having several errors.
the first one is
error: invalid conversion from 'const SSD1306wire_display*' to 'uint8_t' {aka 'unsigned char'} [-fpermissive]
11 | oled.begin((const SSD1306wire_display*) 0x3C, &SSD1306_128x64);
note: initializing argument 2 of 'void SSD1306wire::begin(const SSD1306wire_display*, uint8_t)'
void begin(const SSD1306wire_display* display, uint8_t i2c_addr = 0x3C);
on the second argument
The first argument doesn't give any errors because I've made a cast to
(const SSD1306wire_display*)
how can I solve the error?
Thanks in advance for the help.