Skip to content

Commit

Permalink
Merge pull request #608 from w3c/mahdanoura-patch-2
Browse files Browse the repository at this point in the history
Create Siemens TargetV TM
  • Loading branch information
egekorkan authored Nov 18, 2024
2 parents 0277a46 + 898b709 commit 5076a79
Showing 1 changed file with 91 additions and 0 deletions.
91 changes: 91 additions & 0 deletions events/2024.11.Munich/TDs/Siemens/targetV.tm.jsonld
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
{
"@context": [
"https://www.w3.org/2022/wot/td/v1.1",
{
"brick": "https://brickschema.org/schema/1.0.3/BrickFrame#",
"mcep": "http://mcep/shared"
}
],
"id": "urn:node:targetV",
"title": "Siemens TargetV device",
"version" : {"model": "1.0.0"},
"@type": [
"tm:ThingModel",
"mcep:Device",
"brick:Thermostat"
],
"base": "{{MQTT_IoT_DEMO_BROKER_ADDRESS}}:{{MQTT_BROKER_PORT}}",
"description": "Siemens TargetV device that integrates CO2, temperature, and humidity, and occupancy sensors",
"securityDefinitions": {
"nosec_sc": {
"scheme": "nosec"
}
},
"security": "nosec_sc",
"properties": {
"co2": {
"title": "Reads the CO2 value from the sensor connected to the TargetV device",
"@type": "brick:co2",
"type": "string",
"writeOnly":false,
"observable":true,
"forms": [
{
"href": "/co2",
"op": [
"readproperty",
"observeproperty"
]
}
]
},
"temperature": {
"title": "Reads the temperature value from the sensor connected to a TargetV device",
"@type": "brick:temperature",
"type": "string",
"writeOnly":false,
"observable":true,
"forms": [
{
"href": "/temperature",
"op": [
"readproperty",
"observeproperty"
]
}
]
},
"humidity": {
"title": "Reads the humidity value from the sensor connected to a TargetV device",
"@type": "brick:humidity",
"type": "string",
"writeOnly":false,
"observable":true,
"forms": [
{
"href": "/humidity",
"op": [
"readproperty",
"observeproperty"
]
}
]
},
"occupancy": {
"title": "Reads the occupancy value from the sensor connected to a TargetV device",
"@type": "brick:occupancy",
"type": "string",
"writeOnly":false,
"observable":true,
"forms": [
{
"href": "/occupancy",
"op": [
"readproperty",
"observeproperty"
]
}
]
}
}
}

0 comments on commit 5076a79

Please sign in to comment.