mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-31 15:12:06 +00:00 
			
		
		
		
	[scd4x] Fix not passing arguments to templatable value for perform_forced_calibration (#3495)
This commit is contained in:
		| @@ -11,7 +11,7 @@ template<typename... Ts> class PerformForcedCalibrationAction : public Action<Ts | ||||
|  public: | ||||
|   void play(Ts... x) override { | ||||
|     if (this->value_.has_value()) { | ||||
|       this->parent_->perform_forced_calibration(value_.value()); | ||||
|       this->parent_->perform_forced_calibration(this->value_.value(x...)); | ||||
|     } | ||||
|   } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user