Does have a SSD1306 “.display()” function to update the st7735 tft display interface?

does have a SSD1306 .display() function to update the ST_7735 tft display interface?
I use ST_7735 1.44" TFT display. I use always .clearScreen() function but if use this function vibration effect showing after delaying 100ms. I want updating interface and disable vibration effect. because I reading value and showing in ST_7735.

example loop() function:

  tft.fillRect(0, 0, WIDTH, 23, ORANGE);
  tft.setTextSize(2);
  tft.setTextColor(WHITE);
  tft.setCursor(30, 5);
  tft.print("STATUS");
  delay(100);
  tft.clearScreen();

You started a topic in the Uncategorised category of the forum when its description explicitly tells you not to

Your topic has been moved to a relevant category. Please be careful in future when deciding where to start new topics

Please post your full sketch, using code tags when you do. This prevents parts of it being interpreted as HTML coding and makes it easier to copy for examination

In my experience the easiest way to tidy up the code and add the code tags is as follows
Start by tidying up your code by using Tools/Auto Format in the IDE to make it easier to read. Then use Edit/Copy for Forum and paste what was copied in a new reply. Code tags will have been added to the code to make it easy to read in the forum thus making it easier to provide help.

I do not see one... in any .CPP or .H (or any example)