mirror of
https://github.com/esphome/esphome-docs.git
synced 2024-12-26 17:27:47 +01:00
Fix compile error for uptime sensor with esp-idf (#1534)
Co-authored-by: Maurice Makaay <account-github@makaay.nl>
This commit is contained in:
parent
2b2ce357b6
commit
ff93682ced
@ -56,10 +56,10 @@ with human readable output.
|
||||
int minutes = seconds / 60;
|
||||
seconds = seconds % 60;
|
||||
return (
|
||||
(days ? String(days) + "d " : "") +
|
||||
(hours ? String(hours) + "h " : "") +
|
||||
(minutes ? String(minutes) + "m " : "") +
|
||||
(String(seconds) + "s")
|
||||
(days ? to_string(days) + "d " : "") +
|
||||
(hours ? to_string(hours) + "h " : "") +
|
||||
(minutes ? to_string(minutes) + "m " : "") +
|
||||
(to_string(seconds) + "s")
|
||||
).c_str();
|
||||
|
||||
See Also
|
||||
|
Loading…
Reference in New Issue
Block a user