enum AlarmCodeEnumAlarm codes.
-
The lock is jammed.
Declaration
Swift
case lockJammed -
The lock is reset to factory defaults.
Declaration
Swift
case lockFactoryReset -
The lock has been radio power-cycled.
Declaration
Swift
case lockRadioPowerCycled -
The lock has exceeded the wrong code entry limit.
Declaration
Swift
case wrongCodeEntryLimit -
The front escutcheon of the lock has been removed.
Declaration
Swift
case frontEsceutcheonRemoved -
The door has been forced open without the lock having been unlocked.
Declaration
Swift
case doorForcedOpen -
The door is ajar.
Declaration
Swift
case doorAjar -
Activate the user SOS alarm.
Declaration
Swift
case forcedUser -
Creates a new instance with the specified raw value.
If there is no value of the type that corresponds with the specified raw value, this initializer returns
nil. For example:enum PaperSize: String { case A4, A5, Letter, Legal } print(PaperSize(rawValue: "Legal")) // Prints "Optional(PaperSize.Legal)" print(PaperSize(rawValue: "Tabloid")) // Prints "nil"Declaration
Swift
init?(rawValue: UInt64)Parameters
rawValueThe raw value to use for the new instance.