|
Peritoneal Dialysis Capstone
Controlling catheter for peritoneal dialysis
|
An interface for displaying important values related to the system. More...
#include <IDisplay.h>

Public Member Functions | |
| virtual | ~IDisplay ()=default |
| virtual void | initialize ()=0 |
| Initialize the display. | |
| virtual void | update (float channel1Power, float channel2Power)=0 |
| Update the display with all relevant values. | |
An interface for displaying important values related to the system.
Currently, it supports displaying the duty cycle on each channel output.
|
virtualdefault |
|
pure virtual |
Initialize the display.
In general, must be called before any calls to update.
Implemented in SerialDisplay, and TFTDisplay.
|
pure virtual |
Update the display with all relevant values.
| channel1Power | The output duty cycle for channel 1 (between 0 and 1) |
| channel2Power | The output duty cycle for channel 2 (between 0 and 1) |
Implemented in SerialDisplay, and TFTDisplay.