@@ -226,7 +226,7 @@ bool Amoled_DisplayPanel::initTouch() {
226226
227227 if (tmp->begin (Wire, CST92XX_DEVICE_ADDRESS, hwConfig.i2c_sda , hwConfig.i2c_scl )) {
228228 _touchDrv = tmp;
229- ESP_LOGI (" LilyGo_TDisplayPanel " , " Successfully initialized %s!\n " , _touchDrv->getModelName ());
229+ ESP_LOGI (" Amoled_DisplayPanel " , " Successfully initialized %s!\n " , _touchDrv->getModelName ());
230230 tmp->setMaxCoordinates (466 , 466 );
231231 if (hwConfig.mirror_touch ) {
232232 tmp->setMirrorXY (true , true );
@@ -245,15 +245,15 @@ bool Amoled_DisplayPanel::initTouch() {
245245 tmp2->interruptTrigger ();
246246
247247 _touchDrv = tmp2;
248- ESP_LOGI (" LilyGo_TDisplayPanel " , " Successfully initialized %s!\n " , _touchDrv->getModelName ());
248+ ESP_LOGI (" Amoled_DisplayPanel " , " Successfully initialized %s!\n " , _touchDrv->getModelName ());
249249
250250 touchType = TOUCH_FT3168;
251251 panelType = DISPLAY_1_43_INCHES;
252252 return true ;
253253 }
254254 delete tmp2;
255255
256- ESP_LOGE (" LilyGo_TDisplayPanel " , " Unable to find touch device." );
256+ ESP_LOGE (" Amoled_DisplayPanel " , " Unable to find touch device." );
257257 return false ;
258258}
259259
@@ -273,7 +273,7 @@ bool Amoled_DisplayPanel::initDisplay(Amoled_Display_Panel_Color_Order colorOrde
273273
274274 bool success = display->begin (80000000 );
275275 if (!success) {
276- ESP_LOGE (" LilyGo_TDisplayPanel " , " Failed to initialize display" );
276+ ESP_LOGE (" Amoled_DisplayPanel " , " Failed to initialize display" );
277277 return false ;
278278 }
279279
0 commit comments