基质喷涂
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
333 B

  1. //
  2. // Created by iflyt on 2025/7/13.
  3. //
  4. #include "temp_control.h"
  5. void TempControl::init() {
  6. }
  7. int32_t TempControl::setTemp(double temp) {
  8. target_temp_ = temp;
  9. current_temp_ = temp;
  10. return 0;
  11. }
  12. int32_t TempControl::close() {
  13. return 0;
  14. }
  15. double TempControl::getCurrentTemp() const {
  16. return current_temp_;
  17. }