The constructor ensures the UART object is initialized safely at creation.
showConfig() centralizes how configuration is displayed instead of scattering cout statements across code.
Significance for Embedded Developers: Communication interfaces like UART, SPI, or I2C are always configured before use. Wrapping baud rate and parity inside a class provides encapsulation, making code modular and preventing accidental misuse of config parameters.