Merge PR #139: New interface: windspeedsensor

This commit is contained in:
Jenkins 2019-04-12 13:42:30 +02:00
commit 7c449c50c0
2 changed files with 12 additions and 0 deletions

View File

@ -61,6 +61,7 @@
<file>evcharger.json</file>
<file>extendedevcharger.json</file>
<file>noisesensor.json</file>
<file>windspeedsensor.json</file>
<file>co2sensor.json</file>
<file>presencesensor.json</file>
<file>wirelessconnectable.json</file>

View File

@ -0,0 +1,11 @@
{
"extends": "sensor",
"description": "This interface represents a wind sensor measurment and has the unit [m/s].",
"states": [
{
"name": "windSpeed",
"type": "double",
"unit": "MeterPerSecond"
}
]
}