Compare commits
7 Commits
s-allius/i
...
update-rel
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e51a2a14ed | ||
|
|
265c05cc32 | ||
|
|
54876c6bdf | ||
|
|
63de5066e3 | ||
|
|
b89bef70ed | ||
|
|
9f27c5a582 | ||
|
|
1445268b70 |
@@ -7,8 +7,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [unreleased]
|
## [unreleased]
|
||||||
|
|
||||||
- allow `Y00` serial numbers for GEN3PLUS devices
|
|
||||||
|
|
||||||
## [0.13.0] - 2025-04-13
|
## [0.13.0] - 2025-04-13
|
||||||
|
|
||||||
- update dependency python to 3.13
|
- update dependency python to 3.13
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
0.14.0
|
0.13.0
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
aiomqtt==2.3.2
|
aiomqtt==2.3.1
|
||||||
schema==0.7.7
|
schema==0.7.7
|
||||||
aiocron==2.1
|
aiocron==2.1
|
||||||
aiohttp==3.11.16
|
aiohttp==3.11.16
|
||||||
@@ -32,7 +32,7 @@ rel : STAGE=rel
|
|||||||
|
|
||||||
|
|
||||||
export BUILD_DATE := ${shell date -Iminutes}
|
export BUILD_DATE := ${shell date -Iminutes}
|
||||||
debug dev : BUILD_ID := ${shell date +'%y%m%d%H%M'}
|
BUILD_ID := ${shell date +'%y%m%d%H%M'}
|
||||||
VERSION := $(shell cat $(SRC)/.version)
|
VERSION := $(shell cat $(SRC)/.version)
|
||||||
export MAJOR := $(shell echo $(VERSION) | cut -f1 -d.)
|
export MAJOR := $(shell echo $(VERSION) | cut -f1 -d.)
|
||||||
|
|
||||||
|
|||||||
@@ -90,7 +90,6 @@ target "preview" {
|
|||||||
target "rc" {
|
target "rc" {
|
||||||
inherits = ["_common", "_prod"]
|
inherits = ["_common", "_prod"]
|
||||||
tags = ["${IMAGE}:rc", "${IMAGE}:${VERSION}"]
|
tags = ["${IMAGE}:rc", "${IMAGE}:${VERSION}"]
|
||||||
no-cache = true
|
|
||||||
}
|
}
|
||||||
|
|
||||||
target "rel" {
|
target "rel" {
|
||||||
|
|||||||
@@ -13,12 +13,12 @@
|
|||||||
# 1 Build Base Image #
|
# 1 Build Base Image #
|
||||||
######################
|
######################
|
||||||
|
|
||||||
ARG BUILD_FROM="ghcr.io/hassio-addons/base:17.2.4"
|
ARG BUILD_FROM="ghcr.io/hassio-addons/base:17.2.3"
|
||||||
# hadolint ignore=DL3006
|
# hadolint ignore=DL3006
|
||||||
FROM $BUILD_FROM AS base
|
FROM $BUILD_FROM AS base
|
||||||
|
|
||||||
# Installiere Python, pip und virtuelle Umgebungstools
|
# Installiere Python, pip und virtuelle Umgebungstools
|
||||||
RUN apk add --no-cache python3=3.12.10-r0 py3-pip=24.3.1-r0 && \
|
RUN apk add --no-cache python3=3.12.9-r0 py3-pip=24.3.1-r0 && \
|
||||||
python -m venv /opt/venv && \
|
python -m venv /opt/venv && \
|
||||||
. /opt/venv/bin/activate
|
. /opt/venv/bin/activate
|
||||||
|
|
||||||
|
|||||||
@@ -10,8 +10,8 @@ configuration:
|
|||||||
Weitere wechselrichterspezifische Parameter (z.B. Polling Mode) können im
|
Weitere wechselrichterspezifische Parameter (z.B. Polling Mode) können im
|
||||||
Konfigurationsblock gesetzt werden.
|
Konfigurationsblock gesetzt werden.
|
||||||
|
|
||||||
Die Seriennummer der GEN3 Wechselrichter beginnen mit 'R17' oder 'R47' und die der GEN3PLUS
|
Die Seriennummer der GEN3 Wechselrichter beginnen mit `R17` oder `R47` und die der GEN3PLUS
|
||||||
Wechselrichter mit 'Y00', 'Y17' oder 'Y47'!
|
Wechselrichter mit `Y17`oder `Y47`!
|
||||||
|
|
||||||
Siehe Beispielkonfiguration im Dokumentations-Tab
|
Siehe Beispielkonfiguration im Dokumentations-Tab
|
||||||
batteries:
|
batteries:
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ configuration:
|
|||||||
in the configuration block.
|
in the configuration block.
|
||||||
|
|
||||||
The serial numbers of all GEN3 inverters start with `R17` or `R47` and that of the GEN3PLUS
|
The serial numbers of all GEN3 inverters start with `R17` or `R47` and that of the GEN3PLUS
|
||||||
inverters with 'Y00', ‘Y17’ or ‘Y47’!
|
inverters with ‘Y17’ or ‘Y47’!
|
||||||
|
|
||||||
For reference see example configuration in Documentation Tab
|
For reference see example configuration in Documentation Tab
|
||||||
|
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ watchdog: "http://[HOST]:[PORT:8127]/-/healthy"
|
|||||||
|
|
||||||
schema:
|
schema:
|
||||||
inverters:
|
inverters:
|
||||||
- serial: match(^(R17|R47|Y00|Y17|Y47).{13}$)
|
- serial: match(^(R17|R47|Y17|Y47).{13}$)
|
||||||
monitor_sn: int?
|
monitor_sn: int?
|
||||||
node_id: str
|
node_id: str
|
||||||
suggested_area: str
|
suggested_area: str
|
||||||
|
|||||||
Reference in New Issue
Block a user