Releases: syssi/esphome-zb-gw03
Releases · syssi/esphome-zb-gw03
2.0.0
This release 2.0.0 makes the ethernet
component optional. You can choose between ethernet
and wifi
by loading the dedicated package:
packages:
zb-gw03:
url: https://github.com/syssi/esphome-zb-gw03
ref: main
files:
- packages/core.yaml
- packages/ethernet.yaml
# vs
packages:
zb-gw03:
url: https://github.com/syssi/esphome-zb-gw03
ref: main
files:
- packages/core.yaml
- packages/wifi.yaml
This is a breaking change! To migrate from version 1.0.0 to version 2.0.0 you have to add the packages/ethernet.yaml
to your YAML:
# version 1.0.0
packages:
zb-gw03:
url: https://github.com/syssi/esphome-zb-gw03
ref: main
files:
- packages/core.yaml
- packages/status_led.yaml
# ...
# version 2.0.0
packages:
zb-gw03:
url: https://github.com/syssi/esphome-zb-gw03
ref: main
files:
- packages/core.yaml
- packages/ethernet.yaml
- packages/status_led.yaml
# ...