fabaccess-docs/source/concepts/traits/doorable.md

17 lines
537 B
Markdown
Raw Permalink Normal View History

2024-04-26 15:03:25 +02:00
# Doorable
2024-05-13 12:56:12 +02:00
Der Trait "Doorable" ermöglicht die Abbildung von Türen oder anderen Schließsystemen. Dabei besteht die Möglichkeit, kurzzeitige Öffnungen zu realisieren. Die genaue Zeitdauer, für die die Ressource geöffnet wird, wird dabei vom Server bestimmt.
2024-04-26 15:03:25 +02:00
## OID
`1.3.6.1.4.1.61783.612.1.2`
## States
```mermaid
stateDiagram
[*] --> CLOSED
CLOSED --> OPEN: unlock
OPEN --> CLOSED: lock
CLOSED --> tempOPEN: unlocktemp
tempOPEN --> OPEN: unlock
2024-05-13 12:56:12 +02:00
tempOPEN --> CLOSED: lock
tempOPEN --> CLOSED: AUTO
2024-04-26 15:03:25 +02:00
```