| edition = "2023"; | |
| package milotic_tlbmc; | |
| // This proto contains algorithm specifications of thermal controllers. | |
| // How the PID controller should pre-process the input before feeding it | |
| // to the PID loop. | |
| enum PidThermalType { | |
| MARGIN = 0; | |
| ABSOLUTE = 1; | |
| SUMMATION = 2; | |
| } |