升级了knxd-wg、zigbee2mqtt.

This commit is contained in:
waxgourd
2024-12-05 17:06:03 +08:00
parent 24460729b1
commit 334c0b39da
4 changed files with 26 additions and 5 deletions

View File

@@ -36,6 +36,9 @@ configuration:
dest_port:
name: Interface port
description: network port the IP based interface should use (only for tpuart-ip, ncn5120-ip and ipt)
connect_device:
name: connect_device
description: Device to use for connection,After setting this option, the device option becomes invalid, mainly to solve the problem that the device can only select/dev/ttyUSB0 when there are multiple USBs
baudrate:
name: baudrate
description: baudrate(only for tpuart、ft12、ft12cemi、ncn5120)

View File

@@ -37,6 +37,9 @@ configuration:
dest_port:
name: 接口端口
description: 基于IP的接口应使用的网络端口仅适用于tpuart IP、ncn5120 IP和ipt
connect_device:
name: connect_device
description: 连接设备设置此项后device项失效主要解决多个usb时device只能选择/dev/ttyUSB0的问题
baudrate:
name: 波特率
description: 波特率(仅适用于tpuart、ft12、ft12cemi、ncn5120)

View File

@@ -1,3 +1,5 @@
## 1.42.0-2
- 尝试修复 https://github.com/zigbee2mqtt/hassio-zigbee2mqtt/issues/664
## 1.41.0-1
- 升级Zigbee2MQTT最新版本 [`1.41.0`](https://github.com/Koenkk/zigbee2mqtt/releases/tag/1.41.0)
- 将插件特定配置挂载到插件容器 (/addon_config)

View File

@@ -1,10 +1,11 @@
{
"name": "Zigbee2MQTT",
"version": "1.41.0-1",
"version": "1.42.0-2",
"slug": "zigbee2mqtt",
"description": "可以自定义ZigBee的接收连接器",
"uart": true,
"url": "https://gitcode.com/waxgourd/addons",
"udev": true,
"url": "https://github.com/zigbee2mqtt/hassio-zigbee2mqtt/tree/master/zigbee2mqtt",
"startup": "application",
"services": [
"mqtt:need"
@@ -19,8 +20,20 @@
"timeout": 30,
"panel_icon": "mdi:zigbee",
"map": [
"share:rw",
"config:rw"
{
"type": "share",
"read_only": false
},
{
"type": "homeassistant_config",
"read_only": false,
"path": "/config"
},
{
"type": "addon_config",
"read_only": false,
"path": "/addon_config"
}
],
"ports": {
"8485/tcp": 8485,
@@ -62,7 +75,7 @@
},
"serial": {
"port": "str?",
"adapter": "match(zstack|deconz|zigate|ezsp|ember)?",
"adapter": "match(zstack|deconz|zigate|ezsp|ember|zboss)?",
"baudrate": "int?",
"rtscts": "bool?"
},