Skip to content

Releases: syssi/esphome-zb-gw03

2.0.0

10 Jan 19:07
8671c37
Compare
Choose a tag to compare

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
      # ...

1.0.0

15 Feb 14:28
f8eb605
Compare
Choose a tag to compare
Update docs because the "watchdog heartbeat timeout" was fixed upstre…

…am (Closes: #8) (#21)