Skip to content

Commit

Permalink
Corrected possible states of windrose
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoGos committed Feb 14, 2024
1 parent effa92b commit 5a438c6
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions custom_components/davis_vantage/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,14 +304,14 @@ def get_sensor_descriptions(model: str) -> list[SensorEntityDescription]:
device_class=SensorDeviceClass.ENUM,
translation_key="wind_direction_rose",
options=[
"N",
"NE",
"E",
"SE",
"S",
"SW",
"W",
"NW"
"n",
"ne",
"e",
"se",
"s",
"sw",
"w",
"nw"
]
),
SensorEntityDescription(
Expand Down

0 comments on commit 5a438c6

Please sign in to comment.