Your part has a number of problems. First the version number is incorrect which on Fritzing 1.0.5 causes this:
It probably (despite the message) won’t affect anything but is annoying as you need to hit OK to load the part every time. Breadboard looks OK, but schematic has several problems:
Most of the pins lack terminalIds which causes the part to be misaligned to the grid and the connector to connect in the middle of the pin (which is also where the grid is aligned) rather than the edge as it should. In pcb it is preferable to not add text as you need to change the part to remove it and the user can add it if they want it in the sketch. Something is also off about the font or font-size as it isn’t displaying properly.
Although it won’t affect anything operational, pin numbers are supposed to start at 0 not 1.
FritzingCheckPart.py flags the following errors (all to do with the terminalId being missing with the result we see in schematic.) and the not starting at pin 0:as well as bus errors.
Warning 14: File
‘part.ESP32-S3-LCD-Driver-Board_3a8cabfbb7b4e14f505215034786d62b_5.fzp.bak’
At line 347
terminalId missing in schematicView (likely an error)
Warning 36: File
‘part.ESP32-S3-LCD-Driver-Board_3a8cabfbb7b4e14f505215034786d62b_5.fzp.bak’
Connector0 doesn’t exist. Connectors should start at 0
Warning 35: File
‘part.ESP32-S3-LCD-Driver-Board_3a8cabfbb7b4e14f505215034786d62b_5.fzp.bak’
Connector0 doesn’t exist when it must to stay in sequence
…
Error 53: File
‘part.ESP32-S3-LCD-Driver-Board_3a8cabfbb7b4e14f505215034786d62b_5.fzp.bak’
At line 358
Bus nodeMember connector0 does’t exist
Error 53: File
‘part.ESP32-S3-LCD-Driver-Board_3a8cabfbb7b4e14f505215034786d62b_5.fzp.bak’
At line 363
Bus nodeMember connector22 does’t exist
Error 53: File
‘part.ESP32-S3-LCD-Driver-Board_3a8cabfbb7b4e14f505215034786d62b_5.fzp.bak’
At line 364
Bus nodeMember connector23 does’t exist
Error 53: File
‘part.ESP32-S3-LCD-Driver-Board_3a8cabfbb7b4e14f505215034786d62b_5.fzp.bak’
At line 365
Bus nodeMember connector43 does’t exist
Error 18: File
‘part.ESP32-S3-LCD-Driver-Board_3a8cabfbb7b4e14f505215034786d62b_5.fzp.bak’
Connector connector1terminal is in the fzp file but not the svg file. (typo?)
svg svg.schematic.ESP32-S3-LCD-Driver-Board_5e61efe62c1f6abfe2f6dfe59a2c935b_1_schematic.svg.bak
Error 18: File
‘part.ESP32-S3-LCD-Driver-Board_3a8cabfbb7b4e14f505215034786d62b_5.fzp.bak’
Connector connector2terminal is in the fzp file but not the svg file. (typo?)
svg svg.schematic.ESP32-S3-LCD-Driver-Board_5e61efe62c1f6abfe2f6dfe59a2c935b_1_schematic.svg.bak
You appear to have buses defined but not correctly as the ground pins are not bussed together as they should be. All of these issues can be corrected with information in this tutorial.
Peter