⬆️ Updating add-on grott to b6f2f24
This commit is contained in:
@@ -1,39 +1,9 @@
|
|||||||
# Changelog
|
# Changelog since v0.1.0
|
||||||
|
- Corrected typo
|
||||||
## 0.8
|
- Add multiple target for deploy
|
||||||
|
- Updated base
|
||||||
Added an option to improve compatibility with [grott homeassistant integration](https://github.com/muppet3000/homeassistant-grott).
|
- Updated deploy configuration
|
||||||
|
- Updated repository URL
|
||||||
To activate this mode, you can disable the HA integration in the configuration and enable the grott_mqtt flag. This will configure the MQTT for pushing information through the grott MQTT exporter.
|
- Add edge
|
||||||
|
- ⬆️ Update alpine_3_18/python3 to v3.11.6-r0
|
||||||
## 0.7
|
- Add ref to stable repository
|
||||||
|
|
||||||
- Add new options for configuration
|
|
||||||
- Verbose mode
|
|
||||||
- MQTT retain
|
|
||||||
- data path, now you can edit your configuration in /config/grott/grott.ini
|
|
||||||
- Allow custom MQTT broker
|
|
||||||
|
|
||||||
## 0.6
|
|
||||||
|
|
||||||
- Updated the branch used by grott
|
|
||||||
|
|
||||||
## 0.5
|
|
||||||
|
|
||||||
- Change to use pip3 with the newest addon image.
|
|
||||||
|
|
||||||
## 0.3
|
|
||||||
|
|
||||||
- Add translations
|
|
||||||
- Moved the ginvtypemap to the top configuration
|
|
||||||
|
|
||||||
## 0.2
|
|
||||||
|
|
||||||
- Based on grott v2.7.7
|
|
||||||
- use the current grott_ha.py plugins
|
|
||||||
- Auto configuration for the MQTT part
|
|
||||||
|
|
||||||
## 0.1
|
|
||||||
|
|
||||||
- Initial version
|
|
||||||
- Based on grott v2.7.6
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
1. If you don't have an MQTT broker yet; in Home Assistant go to **Settings → Add-ons → Add-on store** and install the **Mosquitto broker** addon.
|
1. If you don't have an MQTT broker yet; in Home Assistant go to **Settings → Add-ons → Add-on store** and install the **Mosquitto broker** addon.
|
||||||
1. Go back to the **Add-on store**, click **⋮ → Repositories**, fill in</br> `https://github.com/egguy/grott-home-assistant-add-on` and click **Add → Close** or click the **Add repository** button below, click **Add → Close** (You might need to enter the **internal IP address** of your Home Assistant instance first).
|
1. Go back to the **Add-on store**, click **⋮ → Repositories**, fill in</br> `https://github.com/egguy/grott-home-assistant-add-on` and click **Add → Close** or click the **Add repository** button below, click **Add → Close** (You might need to enter the **internal IP address** of your Home Assistant instance first).
|
||||||
[](https://my.home-assistant.io/redirect/supervisor_add_addon_repository/?repository_url=https%3A%2F%2Fgithub.com%2Fegguy%2Fgrott-home-assistant-add-on)
|
[](https://my.home-assistant.io/redirect/supervisor_add_addon_repository/?repository_url=https%3A%2F%2Fgithub.com%2Fegguy%2Fgrott-home-assistant-add-on)
|
||||||
1. The repository includes two add-ons:
|
1. The repository includes two add-ons:
|
||||||
- **grott** is the stable release that tracks the released versions of grott HA plugin.
|
- **grott** is the stable release that tracks the released versions of grott HA plugin.
|
||||||
|
|||||||
@@ -1,5 +1,9 @@
|
|||||||
# Grott - Home Assistant native MQTT integration
|
# Grott - Home Assistant native MQTT integration
|
||||||
|
|
||||||
|
![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This addon allow you to run a local version of grott with the HA plugin
|
This addon allow you to run a local version of grott with the HA plugin
|
||||||
and auto discovery enabled.
|
and auto discovery enabled.
|
||||||
|
|
||||||
@@ -9,3 +13,27 @@ The grott server decode them and send them to your HA instance.
|
|||||||
This addon is based on the 2.7.8
|
This addon is based on the 2.7.8
|
||||||
[grott](https://github.com/johanmeijer/grott) code
|
[grott](https://github.com/johanmeijer/grott) code
|
||||||
and current grott_ha extension.
|
and current grott_ha extension.
|
||||||
|
|
||||||
|
## WARNING! THIS IS AN EDGE VERSION!
|
||||||
|
|
||||||
|
This Home Assistant Add-ons repository contains edge builds of add-ons.
|
||||||
|
Edge builds add-ons are based upon the latest development version.
|
||||||
|
|
||||||
|
- They may not work at all.
|
||||||
|
- They might stop working at any time.
|
||||||
|
- They could have a negative impact on your system.
|
||||||
|
|
||||||
|
This repository was created for:
|
||||||
|
|
||||||
|
- Anybody willing to test.
|
||||||
|
- Anybody interested in trying out upcoming add-ons or add-on features.
|
||||||
|
- Developers.
|
||||||
|
|
||||||
|
If you are more interested in stable releases of our add-ons:
|
||||||
|
|
||||||
|
<https://github.com/egguy/ha-addons>
|
||||||
|
|
||||||
|
|
||||||
|
[project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg
|
||||||
|
[release-shield]: https://img.shields.io/badge/version-b6f2f24-blue.svg
|
||||||
|
[release]: https://github.com/egguy/addon-grott/tree/b6f2f24
|
||||||
+10
-10
@@ -1,20 +1,19 @@
|
|||||||
---
|
|
||||||
name: grott
|
name: grott
|
||||||
version: bd5c208
|
version: b6f2f24
|
||||||
slug: grott
|
slug: grott
|
||||||
description: The Growatt inverter monitor with current HA plugin integrated
|
description: The Growatt inverter monitor with current HA plugin integrated
|
||||||
url: https://github.com/egguy/addon-grott
|
url: https://github.com/egguy/addon-grott
|
||||||
arch:
|
arch:
|
||||||
- armhf
|
- armhf
|
||||||
- armv7
|
- armv7
|
||||||
- aarch64
|
- aarch64
|
||||||
- amd64
|
- amd64
|
||||||
- i386
|
- i386
|
||||||
services:
|
services:
|
||||||
- mqtt:need
|
- mqtt:need
|
||||||
init: false
|
init: false
|
||||||
map:
|
map:
|
||||||
- config:rw
|
- config:rw
|
||||||
ports:
|
ports:
|
||||||
5279/tcp: 5279
|
5279/tcp: 5279
|
||||||
ports_description:
|
ports_description:
|
||||||
@@ -24,7 +23,7 @@ options:
|
|||||||
gmode: proxy
|
gmode: proxy
|
||||||
grott_mqtt: false
|
grott_mqtt: false
|
||||||
ginvtype: default
|
ginvtype: default
|
||||||
ginvtypemap: ""
|
ginvtypemap: ''
|
||||||
retain: false
|
retain: false
|
||||||
verbose: false
|
verbose: false
|
||||||
ha_plugin: true
|
ha_plugin: true
|
||||||
@@ -84,3 +83,4 @@ schema:
|
|||||||
user: str?
|
user: str?
|
||||||
password: str?
|
password: str?
|
||||||
data_path: str
|
data_path: str
|
||||||
|
image: ghcr.io/egguy/addon-grott/{arch}
|
||||||
|
|||||||
Reference in New Issue
Block a user