update correct readme this time

This commit is contained in:
Cyberes 2024-09-04 17:20:22 -06:00
parent 122bf365d9
commit e042752e74
3 changed files with 18 additions and 19 deletions

View File

@ -16,7 +16,7 @@ type: space-weather-prediction-1day
type: space-weather-24hr-max type: space-weather-24hr-max
``` ```
## Example VTEC Graph ## VTEC Graph
In the example dashboard seen in `dashboard.png`, the VTEC graph uses components from [mini-graph-card](https://github.com/kalkih/mini-graph-card). Use the following definition: In the example dashboard seen in `dashboard.png`, the VTEC graph uses components from [mini-graph-card](https://github.com/kalkih/mini-graph-card). Use the following definition:
@ -48,3 +48,16 @@ color_thresholds:
- value: 100 - value: 100
color: '#750305' color: '#750305'
``` ```
## Global VTEC Map
1. Enable the [Generic Camera](https://www.home-assistant.io/integrations/generic/) integration.
2. Set the `Still Image URL` to `http://[server IP]:5000/global`
3. Set the `Frame Rate (Hz)` to `0.0016666666666667` (sets it to a 10 minute refresh rate).
4. Create this card on the dashboard:
```yaml
type: picture-entity
entity: camera.[your entity name]
show_state: false
show_name: false
camera_view: auto
```

Binary file not shown.

Before

Width:  |  Height:  |  Size: 74 KiB

After

Width:  |  Height:  |  Size: 233 KiB

View File

@ -1,6 +1,8 @@
This is an MQTT sensor to send NOAA space weather data to Home Assistant. Fetching the data requires a login to NASA's This is an MQTT sensor to send NOAA space weather data to Home Assistant. Fetching the data requires a login to NASA's
EarthData which is done through Selenium and the Chrome browser. EarthData which is done through Selenium and the Chrome browser.
![](dashboard/dashboard.png)
## Install ## Install
1. Create an account at <https://urs.earthdata.nasa.gov> 1. Create an account at <https://urs.earthdata.nasa.gov>
@ -58,19 +60,3 @@ vertically from the Earth's surface to the edge of the atmosphere. So essentiall
difference lying in the specific path along which the measurement is taken. difference lying in the specific path along which the measurement is taken.
Updated hourly. Updated hourly.
## Home Assistant Dashboard
### Global VTEC Map
1. Enable the [Generic Camera](https://www.home-assistant.io/integrations/generic/) integration.
2. Set the `Still Image URL` to `http://[server IP]:5000/global`
3. Set the `Frame Rate (Hz)` to `0.0016666666666667` (sets it to a 10 minute refresh rate).
4. Create this card on the dashboard:
```yaml
type: picture-entity
entity: camera.[your entity name]
show_state: false
show_name: false
camera_view: auto
```