blob: a16942b917604df8543e167b45295cbfd3d0054f [file] [log] [blame]
Patrick Ventured8012182018-03-08 08:21:38 -08001
2#pragma once
3
Patrick Venturea0764872020-08-08 07:48:43 -07004namespace pid_control
5{
6
Patrick Ventured8012182018-03-08 08:21:38 -08007enum class FanSpeedDirection
8{
9 DOWN,
10 UP,
11 NEUTRAL, /* not sure this will ever happen, but for completeness. */
12};
Patrick Venturea0764872020-08-08 07:48:43 -070013
14}