-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed windrose with 16 cardinal directions. Windrose has now only 8…
… cardinal directions. Also added dynamic icons for windrose and barometric trend.
- Loading branch information
Showing
12 changed files
with
828 additions
and
608 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,35 @@ | ||
{ | ||
"services": { | ||
"set_davis_time": "mdi:clock-edit-outline", | ||
"get_davis_time": "mdi:clock-outline", | ||
"get_raw_data": "mdi:export", | ||
"get_info": "mdi:information-box-outline" | ||
"services": { | ||
"set_davis_time": "mdi:clock-edit-outline", | ||
"get_davis_time": "mdi:clock-outline", | ||
"get_raw_data": "mdi:export", | ||
"get_info": "mdi:information-box-outline" | ||
}, | ||
"entity": { | ||
"sensor": { | ||
"davis_vantage_barometric_trend": { | ||
"default": "mdi:trending-neutral", | ||
"state": { | ||
"falling_rapidly": "mdi:trending-down", | ||
"falling_slowly": "mdi:trending-down", | ||
"steady": "mdi:trending-neutral", | ||
"rising_slowly": "mdi:trending-up", | ||
"rising_rapidly": "mdi:trending-up" | ||
} | ||
}, | ||
"wind_direction_rose": { | ||
"default": "mdi:compass-outline", | ||
"state": { | ||
"N": "mdi:arrow-down-bold-outline", | ||
"NE": "mdi:arrow-bottom-left-bold-outline", | ||
"E": "mdi:arrow-left-bold-outline", | ||
"SE": "mdi:arrow-top-left-bold-outline", | ||
"S": "mdi:arrow-up-bold-outline", | ||
"SW": "mdi:arrow-top-right-bold-outline", | ||
"W": "mdi:arrow-right-bold-outline", | ||
"NW": "mdi:arrow-bottom-right-bold-outline" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.