[globals] Fix TemplatableFn deprecation warning for globals.set (#15733)

This commit is contained in:
J. Nick Koston
2026-04-14 03:18:38 -10:00
committed by Jesse Hills
parent 311812c8cc
commit 089a2c99e2
2 changed files with 14 additions and 1 deletions
+8
View File
@@ -4,6 +4,14 @@ esphome:
- globals.set:
id: glob_int
value: "10"
# Set a float global with an integer literal - must emit the correct
# return type so TemplatableFn stores a direct function pointer.
- globals.set:
id: glob_float
value: "102"
- globals.set:
id: glob_float
value: !lambda "return 42;"
globals:
- id: glob_int