Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nelbs/mindergas-for-home-assistant
DEPRECATED Custom component to scrape data from mindergas.nl
https://github.com/nelbs/mindergas-for-home-assistant
deprecated obsolete
Last synced: 28 days ago
JSON representation
DEPRECATED Custom component to scrape data from mindergas.nl
- Host: GitHub
- URL: https://github.com/nelbs/mindergas-for-home-assistant
- Owner: nelbs
- Created: 2020-03-30T10:14:33.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-01-19T13:51:44.000Z (almost 3 years ago)
- Last Synced: 2024-10-28T13:10:59.423Z (3 months ago)
- Topics: deprecated, obsolete
- Language: Python
- Homepage:
- Size: 106 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mindergas for Home-Assistant (DEPRECATED)
This is repository is no longer supported as I dont use it myself. Please consider using https://github.com/Ernst79/degree-days instead. That repo does not rely on data of mindergas.nl but calculates the gas prognose and degree days.
This platform scrapes the gas consumption from the dutch website mindergas.nl. It creates the folowing sensors:
- sensor.mindergas_graaddag : gas consumption per degree day
- sensor.mindergas_prognose : forecasted total gas consumption current year
- sensor.mindergas_used : gas consumption current yearThe sensors are updated daily since the data is based on daily gas consumption.
## Prerequisites
- You need a mindergas account
- You need to upload your daily gas consumption to the website mindergas frequently## HACS Installation
1. Make sure you've installed [HACS](https://hacs.xyz/docs/installation/prerequisites)
2. In the integrations tab, search for Mindergas.
3. Install the Integration.
4. Add mindergas entry to configuration (see below)## Manual installation
1. Open the directory (folder) for your HA configuration (where you find configuration.yaml).
2. If you do not have a custom_components directory (folder) there, you need to create it.
3. In the custom_components directory (folder) create a new folder called ziggonext.
4. Download all the files from the custom_components/mindergas/ directory (folder) in this repository.
5. Place the files you downloaded in the new directory (folder) you created.
6. Add mindergas entry to configuration (see below)
7. Restart Home Assistant## Configuration
```yaml
sensor:
- platform: mindergas
username: !secret mindergas_username
password: !secret mindergas_password
```