mirror of
https://gitcode.com/waxgourd/addons
synced 2025-12-06 12:28:28 +08:00
升级了knxd-wg、zigbee2mqtt.
This commit is contained in:
@@ -36,6 +36,9 @@ configuration:
|
|||||||
dest_port:
|
dest_port:
|
||||||
name: Interface port
|
name: Interface port
|
||||||
description: network port the IP based interface should use (only for tpuart-ip, ncn5120-ip and ipt)
|
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:
|
baudrate:
|
||||||
name: baudrate
|
name: baudrate
|
||||||
description: baudrate(only for tpuart、ft12、ft12cemi、ncn5120)
|
description: baudrate(only for tpuart、ft12、ft12cemi、ncn5120)
|
||||||
|
|||||||
@@ -37,6 +37,9 @@ configuration:
|
|||||||
dest_port:
|
dest_port:
|
||||||
name: 接口端口
|
name: 接口端口
|
||||||
description: 基于IP的接口应使用的网络端口(仅适用于tpuart IP、ncn5120 IP和ipt)
|
description: 基于IP的接口应使用的网络端口(仅适用于tpuart IP、ncn5120 IP和ipt)
|
||||||
|
connect_device:
|
||||||
|
name: connect_device
|
||||||
|
description: 连接设备,设置此项后device项失效,主要解决多个usb时device只能选择/dev/ttyUSB0的问题
|
||||||
baudrate:
|
baudrate:
|
||||||
name: 波特率
|
name: 波特率
|
||||||
description: 波特率(仅适用于tpuart、ft12、ft12cemi、ncn5120)
|
description: 波特率(仅适用于tpuart、ft12、ft12cemi、ncn5120)
|
||||||
@@ -1,3 +1,5 @@
|
|||||||
|
## 1.42.0-2
|
||||||
|
- 尝试修复 https://github.com/zigbee2mqtt/hassio-zigbee2mqtt/issues/664
|
||||||
## 1.41.0-1
|
## 1.41.0-1
|
||||||
- 升级Zigbee2MQTT最新版本 [`1.41.0`](https://github.com/Koenkk/zigbee2mqtt/releases/tag/1.41.0)
|
- 升级Zigbee2MQTT最新版本 [`1.41.0`](https://github.com/Koenkk/zigbee2mqtt/releases/tag/1.41.0)
|
||||||
- 将插件特定配置挂载到插件容器 (/addon_config)
|
- 将插件特定配置挂载到插件容器 (/addon_config)
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
{
|
{
|
||||||
"name": "Zigbee2MQTT",
|
"name": "Zigbee2MQTT",
|
||||||
"version": "1.41.0-1",
|
"version": "1.42.0-2",
|
||||||
"slug": "zigbee2mqtt",
|
"slug": "zigbee2mqtt",
|
||||||
"description": "可以自定义ZigBee的接收连接器",
|
"description": "可以自定义ZigBee的接收连接器",
|
||||||
"uart": true,
|
"uart": true,
|
||||||
"url": "https://gitcode.com/waxgourd/addons",
|
"udev": true,
|
||||||
|
"url": "https://github.com/zigbee2mqtt/hassio-zigbee2mqtt/tree/master/zigbee2mqtt",
|
||||||
"startup": "application",
|
"startup": "application",
|
||||||
"services": [
|
"services": [
|
||||||
"mqtt:need"
|
"mqtt:need"
|
||||||
@@ -19,8 +20,20 @@
|
|||||||
"timeout": 30,
|
"timeout": 30,
|
||||||
"panel_icon": "mdi:zigbee",
|
"panel_icon": "mdi:zigbee",
|
||||||
"map": [
|
"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": {
|
"ports": {
|
||||||
"8485/tcp": 8485,
|
"8485/tcp": 8485,
|
||||||
@@ -62,7 +75,7 @@
|
|||||||
},
|
},
|
||||||
"serial": {
|
"serial": {
|
||||||
"port": "str?",
|
"port": "str?",
|
||||||
"adapter": "match(zstack|deconz|zigate|ezsp|ember)?",
|
"adapter": "match(zstack|deconz|zigate|ezsp|ember|zboss)?",
|
||||||
"baudrate": "int?",
|
"baudrate": "int?",
|
||||||
"rtscts": "bool?"
|
"rtscts": "bool?"
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user