@brief Set the local time zone offset in hours * @param localTimezoneOffset Offset from UTC of local time zone in hours * @retval bool true on success, false if value out of range * @note Values for local standard time may exceed +/- 12 * For example, Pacific/Kiritimati has a 14-hour offset (in 2024). */
| 89 | * For example, Pacific/Kiritimati has a 14-hour offset (in 2024). |
| 90 | */ |
| 91 | void setTimeZone(float localTimezoneOffset) |
| 92 | { |
| 93 | setTimeZoneOffset(localTimezoneOffset * SECS_PER_HOUR); |
| 94 | } |
| 95 | |
| 96 | /** @brief Set current time zone information |
| 97 | * @param zoneInfo Contains offset plus string formatting information |
no outgoing calls
no test coverage detected