Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 1 | |
2 | #pragma once | ||||
3 | |||||
Patrick Venture | a076487 | 2020-08-08 07:48:43 -0700 | [diff] [blame] | 4 | namespace pid_control |
5 | { | ||||
6 | |||||
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 7 | enum class FanSpeedDirection |
8 | { | ||||
9 | DOWN, | ||||
10 | UP, | ||||
11 | NEUTRAL, /* not sure this will ever happen, but for completeness. */ | ||||
12 | }; | ||||
Patrick Venture | a076487 | 2020-08-08 07:48:43 -0700 | [diff] [blame] | 13 | |
14 | } |