To contribute to this page, edit the following file
Custom devices (DiY) CC2530.ROUTER #
Model | CC2530.ROUTER |
Vendor | Custom devices (DiY) |
Description | CC2530 router |
Exposes | led, linkquality |
Picture | ![]() |
Notes #
Pairing #
At first boot it will automatically be in pairing mode and join your network. To reset it into pairing mode power-cycle it three times as follows:
1) power on 2) wait 2sec 3) power off 4) repeat above steps 2 further times 5) power on and wait for it to join your network
Exposes #
Led (binary) #
Value can be found in the published state on the led
property.
It’s not possible to read (/get
) or write (/set
) this value.
If value equals true
led is ON, if false
OFF.
Linkquality (numeric) #
Link quality (signal strength).
Value can be found in the published state on the linkquality
property.
It’s not possible to read (/get
) or write (/set
) this value.
The minimal value is 0
and the maximum value is 255
.
The unit of this value is lqi
.
Manual Home Assistant configuration #
Although Home Assistant integration through MQTT discovery is preferred, manual integration is possible with the following configuration:
binary_sensor:
- platform: "mqtt"
state_topic: "zigbee2mqtt/<FRIENDLY_NAME>"
availability_topic: "zigbee2mqtt/bridge/state"
value_template: "{{ value_json.led }}"
payload_on: true
payload_off: false
sensor:
- platform: "mqtt"
state_topic: "zigbee2mqtt/<FRIENDLY_NAME>"
availability_topic: "zigbee2mqtt/bridge/state"
value_template: "{{ value_json.linkquality }}"
unit_of_measurement: "lqi"
icon: "mdi:signal"