LiquidCristal Library Error

Get an error with an I2C Library, have anybody an idea. It is an esp32 board.

Arduino: 1.8.11 (Windows 10), Board: "ESP32 Dev Module, Disabled, Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS), 240MHz (WiFi/BT), QIO, 80MHz, 4MB (32Mb), 115200, None"

WARNUNG: Bibliothek LiquidCrystal_I2C behauptet auf avr Architektur(en) ausgeführt werden zu können und ist möglicherweise inkompatibel mit Ihrem derzeitigen Board, welches auf esp32 Architektur(en) ausgeführt wird.
C:\Users\be-fr\OneDrive\Dokumente\Arduino\schalter_I2C_Bart_S_51_esp\schalter_I2C_Bart_S_51_esp.ino: In function 'void setup()':

schalter_I2C_Bart_S_51_esp:11:13: error: no matching function for call to 'LiquidCrystal_I2C::begin()'

   lcd.begin();                              // init lcd

             ^

In file included from C:\Users\be-fr\OneDrive\Dokumente\Arduino\schalter_I2C_Bart_S_51_esp\schalter_I2C_Bart_S_51_esp.ino:3:0:

C:\Users\be-fr\OneDrive\Dokumente\Arduino\libraries\LiquidCrystal_I2C/LiquidCrystal_I2C.h:58:8: note: candidate: void LiquidCrystal_I2C::begin(uint8_t, uint8_t, uint8_t)

   void begin(uint8_t cols, uint8_t rows, uint8_t charsize = LCD_5x8DOTS );

        ^

C:\Users\be-fr\OneDrive\Dokumente\Arduino\libraries\LiquidCrystal_I2C/LiquidCrystal_I2C.h:58:8: note:   candidate expects 3 arguments, 0 provided

exit status 1
no matching function for call to 'LiquidCrystal_I2C::begin()'

Dieser Bericht wäre detaillierter, wenn die Option
"Ausführliche Ausgabe während der Kompilierung"
in Datei -> Voreinstellungen aktiviert wäre.

begin() has a parameter list. You didn't provide any.

That library apparently expects parameters in the call to begin to specify the number of columns and rows.