Skip to content

Commit 428b032

Browse files
chore: create actuator type concept
1 parent 17dfe11 commit 428b032

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
/*
2+
* Copyright (c) 2023. Smart Operating Block
3+
*
4+
* Use of this source code is governed by an MIT-style
5+
* license that can be found in the LICENSE file or at
6+
* https://opensource.org/licenses/MIT.
7+
*/
8+
9+
package entity.actuator;
10+
11+
/**
12+
* Enum that describes all the actuators type.
13+
*/
14+
public enum ActuatorType {
15+
/** Heating. */
16+
HEATING,
17+
/** Cooling. */
18+
COOLING,
19+
/** Ventilation. */
20+
VENTILATION,
21+
/** Ambient light. */
22+
AMBIENT_LIGHT,
23+
/** Surgical light. */
24+
SURGICAL_LIGHT
25+
}

0 commit comments

Comments
 (0)