1 2 #pragma once 3 4 namespace pid_control 5 { 6 7 enum class FanSpeedDirection 8 { 9 DOWN, 10 UP, 11 NEUTRAL, /* not sure this will ever happen, but for completeness. */ 12 }; 13 14 } 15