comparison service/mqtt_to_rdf/conf/frontdoorlock.n3 @ 1688:5871ef3a380e

cnof checkpoint
author drewp@bigasterisk.com
date Mon, 27 Sep 2021 23:18:49 -0700
parents cdc76c84e3e2
children
comparison
equal deleted inserted replaced
1687:3c18ec6cb6ef 1688:5871ef3a380e
16 :outputPredicate :connectedStatus 16 :outputPredicate :connectedStatus
17 ] 17 ]
18 18
19 . 19 .
20 20
21 { ?msg :body "online" . } => { ?msg :onlineTerm :Online . } .
22 { ?msg :body "offline" . } => { ?msg :onlineTerm :Offline . } .
23
24
25 {
26 ?msg a :MqttMessage ;
27 :topic ( "frontdoorlock" "status" );
28 :onlineTerm ?onlinenessStr . } => {
29 :frontDoorLockStatus :connectedStatus ?onlineness .
30 } .
31