GM6000 Digital Heater Controller Branch: main
SDX-1330
FanMode.h
Go to the documentation of this file.
1#ifndef Ajax_Type_FanMode_h_
2#define Ajax_Type_FanMode_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2023 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15#include "Cpl/Type/enum.h"
16
17
18///
19namespace Ajax {
20///
21namespace Type {
22
23/** This enumeration defines the supported Fan modes
24
25 @param FanMode Enum
26
27 @param eLOW Minimum Fan speed
28 @param eMEDIUM Medium Fan speed
29 @param eHIGH Maximum Fan speed
30 @param eLAST_MODE Marker for end-of-enum-list
31 */
32BETTER_ENUM( FanMode, unsigned
33 , eLOW = 0
34 , eMEDIUM
35 , eHIGH
36 , eLAST_MODE
37);
38
39}; // end namespaces
40};
41#endif // end header latch
42
The 'Ajax' namespace is the root name space all GM6000 application specific source code.