Skip to main content

system.kanoa.schedule.getTimezoneOffsetMinsBetweenClientAndGateway

Description

Given the UTC offset in hours for the client (or device), this function will return the timezone offset between the gateway and the client.

Syntax

getTimezoneOffsetMinsBetweenClientAndGateway(deviceUTCOffsetHrs)

Parameters:
  • deviceUTCOffsetHrs (float): Device UTC offset in hours.

  • Returns:
  • clientOffsetMins (int): Client offset in minutes.
  • Code Examples

    # Example Usage:
    device_utc_offset_hrs = 5.5
    client_offset_mins = system.kanoa.schedule.getTimezoneOffsetMinsBetweenClientAndGateway(device_utc_offset_hrs)