mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-31 15:12:06 +00:00 
			
		
		
		
	Fix warning in test1.yaml (#3228)
This commit is contained in:
		| @@ -2514,7 +2514,7 @@ text_sensor: | ||||
|     on_notify: | ||||
|       then: | ||||
|         - lambda: |- | ||||
|             ESP_LOGD("green_btn", "Location changed: %s", x); | ||||
|             ESP_LOGD("green_btn", "Location changed: %s", x.c_str()); | ||||
|   - platform: mqtt_subscribe | ||||
|     name: "MQTT Subscribe Text" | ||||
|     topic: "the/topic" | ||||
| @@ -2582,7 +2582,7 @@ canbus: | ||||
|         then: | ||||
|           - lambda: |- | ||||
|               std::string b(x.begin(), x.end()); | ||||
|               ESP_LOGD("canid 500", "%s", &b[0] ); | ||||
|               ESP_LOGD("canid 500", "%s", b.c_str()); | ||||
|       - can_id: 23 | ||||
|         then: | ||||
|           - if: | ||||
| @@ -2620,7 +2620,7 @@ canbus: | ||||
|         then: | ||||
|           - lambda: |- | ||||
|               std::string b(x.begin(), x.end()); | ||||
|               ESP_LOGD("canid 500", "%s", &b[0] ); | ||||
|               ESP_LOGD("canid 500", "%s", b.c_str() ); | ||||
|       - can_id: 23 | ||||
|         then: | ||||
|           - if: | ||||
|   | ||||
		Reference in New Issue
	
	Block a user