1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-26 20:53:50 +00:00

Revert "[tests] Fix millis() ambiguity in component tests with gps component"

This reverts commit f9b08491cc.
This commit is contained in:
J. Nick Koston
2025-10-23 08:19:48 -06:00
parent ba4ce200d8
commit cce5b58de4
10 changed files with 19 additions and 19 deletions

View File

@@ -2,21 +2,21 @@ binary_sensor:
- platform: template
id: bin1
lambda: |-
if (esphome::millis() > 10000) {
if (millis() > 10000) {
return true;
}
return false;
- platform: template
id: bin2
lambda: |-
if (esphome::millis() > 20000) {
if (millis() > 20000) {
return true;
}
return false;
- platform: template
id: bin3
lambda: |-
if (esphome::millis() > 30000) {
if (millis() > 30000) {
return true;
}
return false;