767
|
1 @prefix : <http://projects.bigasterisk.com/room/> .
|
|
2 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
|
3 @prefix fr: <http://bigasterisk.com/foaf/> .
|
|
4 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
|
5
|
|
6 :mqttConnectedStatusMap a :ValueMap;
|
|
7 :map [:from "offline"; :to :Offline],
|
|
8 [:from "online"; :to :Online] .
|
|
9
|
|
10 :frontDoorLockStatus a :MqttStatementSource;
|
|
11 :mqttTopic ("frontdoorlock" "status");
|
|
12
|
|
13 :parser :mqttConnectedStatusMap;
|
|
14
|
|
15 :graphStatements [
|
|
16 :outputPredicate :connectedStatus
|
|
17 ]
|
|
18
|
|
19 .
|
|
20
|