View Source Grizzly.ZWave.Commands.ScheduleEntryLockDailyRepeatingReport (grizzly v8.1.0)

ScheduleEntryLockDailyRepeatingReport command is used to return the requested schedule slot ID for identified user

Params:

  • :user_identifier - The User Identifier is used to recognize the user identity. A valid User Identifier MUST be a value starting from 1 to the maximum number of users supported by the device
  • :schedule_slot_id - A value from 1 to Number of Slots Daily Repeating Supported
  • :week_days - a list of scheduled week day's names
  • :start_hour - A value from 0 to 23 representing the starting hour of the time fence.
  • :start_minute - A value from 0 to 59 representing the starting minute of the time fence.
  • :duration_hour - A value from 0 to 23 representing how many hours the time fence will last
  • :duration_minute - A value from 0 to 59 representing how many minutes the time fence will last past the Duration Hour field.

Summary

Types

@type param() ::
  {:user_identifier, byte()}
  | {:schedule_slot_id, byte()}
  | {:week_days, [Grizzly.ZWave.CommandClasses.ScheduleEntryLock.week_day()]}
  | {:start_hour, 0..23}
  | {:start_minute, 0..59}
  | {:duration_hour, 0..23}
  | {:duration_minute, 0..59}