5#ifndef SERIAL_DISPLAY_H
6#define SERIAL_DISPLAY_H
23 void update(
float channel1Power,
float channel2Power)
override;
An interface for displaying important values related to the system.
Definition IDisplay.h:13
A hardware abstraction layer interface.
Definition IHAL.h:29
char string_buffer[128]
Definition SerialDisplay.h:18
void update(float channel1Power, float channel2Power) override
Update the display with all relevant values.
Definition SerialDisplay.cpp:11
SerialDisplay(IHAL &hal)
Definition SerialDisplay.cpp:5
void initialize() override
Initialize the display.
Definition SerialDisplay.cpp:7
IHAL & hal
Definition SerialDisplay.h:17