Skip to content

Commit f073d7c

Browse files
committed
Add Airflow property
Signed-off-by: Jimmy Tanagra <[email protected]>
1 parent 09d0bcf commit f073d7c

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

bundles/org.openhab.core.semantics/model/SemanticTags.csv

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ Property,Light,,Light,"Lights, Lighting",
4040
Property,ColorTemperature,,Color Temperature,,
4141
Property,Humidity,,Humidity,Moisture,
4242
Property,Presence,,Presence,,
43+
Property,Airflow,,Airflow,,
4344
Property,Pressure,,Pressure,,
4445
Property,Smoke,,Smoke,,
4546
Property,Noise,,Noise,,

bundles/org.openhab.core.semantics/src/main/java/org/openhab/core/semantics/model/DefaultSemanticTagProvider.java

+2
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,8 @@ public DefaultSemanticTagProvider() {
122122
"Humidity", "", "Moisture"));
123123
defaultTags.add(new SemanticTagImpl("Property_Presence", //
124124
"Presence", "", ""));
125+
defaultTags.add(new SemanticTagImpl("Property_Airflow", //
126+
"Airflow", "", ""));
125127
defaultTags.add(new SemanticTagImpl("Property_Pressure", //
126128
"Pressure", "", ""));
127129
defaultTags.add(new SemanticTagImpl("Property_Smoke", //

bundles/org.openhab.core.semantics/src/main/resources/tags.properties

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ Property_Light=Light,Lights,Lighting
4040
Property_ColorTemperature=Color Temperature
4141
Property_Humidity=Humidity,Moisture
4242
Property_Presence=Presence
43+
Property_Airflow=Airflow
4344
Property_Pressure=Pressure
4445
Property_Smoke=Smoke
4546
Property_Noise=Noise

0 commit comments

Comments
 (0)