35 Hysteresis(IN lower_threshold, IN upper_threshold, OUT low_output,
36 OUT high_output, String config_path =
"")
40 [this](IN input, IN lower_threshold, IN upper_threshold,
41 OUT low_output, OUT high_output) {
42 if (input < lower_threshold) {
43 this->last_value_ = low_output;
44 }
else if (upper_threshold <= input) {
45 this->last_value_ = high_output;
49 return this->last_value_;
51 lower_threshold, upper_threshold, low_output, high_output,