/************************************************************************** * * Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. * * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * * @file ModeDisinfectt.h * * @date 20-Dec-2019 * @author L. Baloa * * @brief Header file for Disinfect Mode. * **************************************************************************/ #ifndef __MODE_DISINFECT_H__ #define __MODE_DISINFECT_H__ #include "DGCommon.h" // ********** private function prototypes ********** void initDisinfectMode( void ); // initialize this module void transitionToDisinfectMode( void ); // prepares for transition to treatment mode void execDisinfectMode( void ); // execute the treatment mode state machine (call from OperationModes) #endif