# Locks {meth}`Lock ` objects correspond to SimpliSafeā„¢ locks (only available for V3 systems) and allow users to retrieve information on them and alter their state by locking/unlocking them. ## Core Properties All {meth}`Lock ` objects come with a standard set of properties: ```python for serial, lock in system.locks.items(): # Return the lock's name: lock.name # >>> Kitchen Window # Return the lock's serial number through the index: serial # >>> 1234ABCD # ...or through the property: lock.serial # >>> 1234ABCD # Return the state of the lock: lock.state # >>> simplipy.lock.LockStates.LOCKED # Return whether the lock is in an error state: lock.error # >>> False # Return whether the lock has a low battery: lock.low_battery # >>> False # Return whether the lock is offline: lock.offline # >>> False # Return a settings dictionary for the lock: lock.settings # >>> {"autoLock": 3, "away": 1, "home": 1} # Return whether the lock is disabled: lock.disabled # >>> False # Return whether the lock's battery is low: lock.lock_low_battery # >>> False # Return whether the pin pad's battery is low: lock.pin_pad_low_battery # >>> False # Return whether the pin pad is offline: lock.pin_pad_offline # >>> False ``` ## Locking/Unlocking Locking and unlocking a lock is accomplished via two coroutines: ```python for serial, lock in system.locks.items(): await lock.async_lock() await lock.async_unlock() ``` ## Updating the Lock To retrieve the sensor's latest state/properties/etc., simply: ```python await lock.async_update(cached=True) ```