#zigbee-archived
1 messages · Page 167 of 1
It's always worth planning out your goals, but they will absolutely adjust and change when you learn of new things or features are added. And sometimes it's worth just starting and doing things somehow to see what works and doesn't so you have a starting point for improvements. I have yet to move all my IKEA and Aqara stuff to be paired directly to Home Assistant, but as I want to fix a broken HomeKit automation I slowly do, and that's better (for me) than trying to find a whole uninterrupted day.
@elder badge check the pins for recommended sticks
Then you can use the stuff built into HA to run zinger
*zigbee
Yeah, thank you @cerulean abyss, I probably figured out already that the Tradfri isn't just acting like a controller router, but also wants to do stuff itself, and doesn't allow HA to actually control the devices (for instance, turning off a light bulb from the dashboard not using a scene, just plainly doesn't work)
Yeah third party hubs are a little tricky
Because it’s up to whatever is exposed for the integration
However you can ditch the IKEA hub and use whatever hub with other IKEA stuff (what I do) so that’s the best option
IKEA’s stuff is cheap and great
except its stupid hub wich doesn't expose what I want to, yup, figured out...
Yeah hubs aren’t great
🤷♂️ ty for the sugg
Can someone show me how light grouping in ZHA looks like?
Also, don't use static IPs @elder badge use DHCP reservations 
mondayish people don't configure up their pfSense machines with random crap DHCP ranges just to have DHCP leases assigned to them, lazy people just create a single DHCP range in an unused space for WiFi guests and such, and keep everything else static... (LOL)
I'm one of those people
I have never seen a consumer router that didn't support reservations
I set static dhcp reservation in pfsense for anything that shouldn’t move
Aka servers & some smart home stuff
You mean a reservation
Yes I missed a word
I have been up since 4am. It’s currently 10:40pm
I am tired

it's not that the router (or rather, pfSense firewall) doesn't support reservations, it's that I'm too lazy to add secondary ranges and add 00:00:00:00:00:00 MAC reservations to all of them to "preserve" the range for reservations, and figure out all the devices MAC addresses, and configure them in the firewall/router, and such and such...
easier to just nano /etc/network/interfaces and set static and address 192.168.1.10/24
I let the device hit the network, then set a static from that
Saves me typing in mac addresses
Lazy/10
that is also true...
I do that too, very lazy here
we're system engineers after all, right?
Setting static ip on the device itself isn’t ideal anymore, and funny things can happen with dhcp and that
That would be what you do for static mapping to a reservation, which is not what I meant

our job is to set up scripts that let us come into the office in the morning and enjoy a nice tea/coffee and read the newspaper instead of doing our "work", because our "work" is being done by our automations that we set up earlier...
Not that ip addresses really matter, point to the DNS name that is already populated from dhcp
Don't care what the IP is really
if you let DHCP manage the DNS system too, you would be right 😅
I actually have a dedicated virtual machine with a bind9 instance and custom scripts to edit/check the zones and reload the system
It is pretty normal to let DHCP populate dns
DHCP shoves my pihole address at clients. So then ads go poof
I manage everything by hand 😂
I do too, inside my labs
With software defined networking we don't really care much for the IP addresses anyway, the service DNS names should be absolute
I had a piHole too on a RPi 3, it went kaput when I unplugged it accidentally before powering off the Pi (power from POE switch, cable without the clip, easy to fall off) and the entire filesystem got corrupted...
Unless you wanna try tempting fate with other people at home don’t break home networking 
My pihole is through a VM (also this is probably #the-water-cooler now)
well, in my home it's me and my gadzillion devices, and my grandma with her phone, so... 😅
(yeah, it's OT now)
hi everyone. I have an issue with a zigbee thermostat (radiator control). It shows all the available states in zigbee2mqtt but the temperature value is not available as a separate value in homeassistant. target and current temperature are available in a device called climate.<name>
any chance i can get the temperature value alone ?
Is the entity disabled in home assistant?
no
but i just saw that zigbee2mqtt has some info on the device:
local_temperature: Current temperature measured on the device (in °C). Reading (/get) this attribute is not possible.
does that mean its not available as a separate entity although its displayed together with the setpoint ?
@elder badge i did not read it all don't know if anybody answer but ikea has nothing to do with static ip's on routers, is normal that they don't know, however is to easy to setup a static ip in your router (considering you mention words like docker compose, steak and VM in the same sentence) you should know how to do this
however for zigbee I'd choose another coordinator if i were you
@fleet stump posted a code wall, it is moved here --> https://hastebin.com/idobugezox
Geez, I thought I kept it short enough to not get busted 😉 I guess HassBot didn't like my couple lines. Anyway, Berne, I was saying that not exactly what you are looking for, but might help in how to pull a value out of an entity using a template: https://www.toptal.com/developers/hastebin/idobugezox
Thx, I'll try that. But I was hoping to do it in the UI only
Where are you looking to use that value? You can from the UI if you updating something with a template. The quick answer to your question would be:
value_template: "{{ state_attr('climate.greatroom_kumo', 'current_temperature') }}"
That is how you get the value from the climate entity
Hi. I have a sonoff zigbee switch modified as a relay, connected to HA thru zigbee2mqtt.
I have a cover switch that turns the sonoff on-> wait 300ms -> off
However sometimes I notice a huge delay between me clicking the cover button, and the switch acting. Sometimes it turns on but delay before turning off.
I just watched the event log.
2021-12-24T23:37:31.246054+00:00 Call_service event triggered on the cover switch.
Following events: Switch ON, mqtt ON, Switch OFF, mqtt OFF. all 4 finished by 2021-12-24T23:37:31.584207+00:00
aka within a second
However, the actual zigbee switch "state_changed" event triggered at 2021-12-24T23:37:43.708418+00:00
12s later
Is it a link quality issue? or something else?
I lost connection to one of my zigbee smart plugs. Next to restarting HA and stuff how do i troubleshoot it
btw Merry Christmas everyone
Hi, I installed the deconz addon and my phoscon gateway is all is up and running. I want another application on my network to connect to the phoscon GW. However it's not discoverable it says. I see the Phoscon GW use a 172 ip address. However it should run on my host network (192 ip range) to make it discoverable. Any idea how to change that?
I just want to display it together with another temperature on a mini graph card. I need to create a separate entities for that, right?
The example I provided should work for you then, I think. I don't use that card, but I just read the page on it, and it says it should work with any sensor or binary_sensor. I don't know of a way to do it in the UI, but if you added to your config:
sensor:
- platform: template
sensors:
my_temperature:
friendly_name: My Temperature
unit_of_measurement: 'ºF'
value_template: "{{ state_attr('climate.my_climate', 'current_temperature') }}"
This would create a sensor called sensor.my_temperature from the "current_temperature" property of the "climate.my_climate" entity. You could then (from the UI) add that sensor to your card.
Did you activate the port forwarding in the add on config setting? Also 172 means it’s a docker IP, should be fine to use your HA IP with the correct port
zha groups (found under the zha integration) are they regular groups? or light groups? or something different?
I am transitioning my hue/innr lights from Hue hub to zha
They are ZigBee groups
Which is the preferred way to group ZigBee entities
I guess they are at least, I don't use zha
ahh I see. I will try it then. I don't know more needs to group then lights but maybe there is (and switches)
trying to pair a previously paired innr bulb(was hue integration). The reset seems to take effect but damn zha won't find it. I use a innr switch that is about 2 meters away from the light I am trying to pair. Anyone got tips?
nm, found a button that makes sure I try to pair using the inrr swtich.
Indeed, I activated the port forwarding. I can access it using the 192 IP range and port by manually typing the address. However my 3rd party app is not auto discovering it. It searches for a phoscon gateway, but it doesn't find it.
I was not talking about my router, I was talking about the official Ikea Tradfri ZigBee gateway, which has no network control whatsoever. anyway, like you and many others said, better off with another USB / standalone third party gateway not from Ikea themselves.
damn, why is easy install always complicate, i use another orange pi pc 2 (h564bit or something) installed fesh armbian to test ZigBee2Mqtt integration, but after all installed some errors throw out due to npm or nodejs and third time reinstalling but obviously something regarded with less standard OPI platform as if i fould have normal raspi on desk it would probably start at first.... but i was able to bind group on ZigBee layer practically without using any Home-assistant (except configuration portion) now remote work binded to one dimmer but just few possibility no flexibility of asigning buttons to scene, and if i pull stick and put it in phone charger it work same :), so for more flexibility need to instal ZigBee2Mqtt and integrate it to H.A.
someonee said that is better to use x86 embedded machine for HA software and tools, but i tried on VirtualBox and stuck on lot instalation traps, where you cant install nodejs or something because all is mostly bult for arm machines
That's not true - it's built for many architectures, including x86
I run both HA and Z2M on x86 without any issues
Docker FTW though, you're making life hard for yourself by compiling from source
hey guys im really struggling with this ; I updated my zigbee firmware and in ZHA ; now I have 2 coordinators ; 1 is unknown , with the old devices connected to it that aren't polling anything because I need to repair ; and I have the new coordinator and everything i swonky. How do i remove the old coordinator showing up?
How did you migrate coordinators
yep, get a zzh or sonof one
Hi everybody
Had to reinstall my HA and now I’m having problems with some integrations. My ConBee II sees my sensor in the PhosCon setup, but then there is no zigbee entity in my HA. I actually have an error in the integration pane, can I post here the log if someone can help?
Put it in something like pastebin and share the link. If someone can help they will
ok
Please use a code share site to share code or logs, for example:
- https://www.codepile.net/ (select YAML as the language)
- https://paste.debian.net/ (select YAML as the language)
- https://hastebin.com/ (sometimes may not allow you to save)
Please don't use Pastebin, since it can randomly add spaces to the main view. Please also don't share text as images since it makes it harder for people to help you. Remember that others may have colour blindness, impaired vision, etc.
@mint sand posted a code wall, it is moved here --> https://hastebin.com/kegogotumu
Anybody seen ZigBee switches that looks like a standard light switch on a cable like normal standalone table lamps might have. Want to retrofit on older lamps, while retaining manual control.
not sure why my zigbee plug on my front porch is being flacky.
It has worked with no issues for a couple of weeks. Anyone know what to do with it. Currently its unavailable. The last stats were LQI: 255 RSSI: -80
not sure if that is good or not
trying to learn more about zigbee networking
255 is either perfect or who knows
haha
The lower the RSSI the worse it is
What should be my troubleshooting steps
Add devices between it and the next nearest router to improve the signal
1500 sqft house
I story
square shape
1 story*
5 zigbee plugs
so I am assuming they are all routers
They might be
using a hubz usb stick with HA intergration
when i look in the intergration they are all routers
Then they probably are, but you either have interference or too far between them
A few walls... 
for interference i have a few wifi networks
So, not optimal
See the pin on interference
ya maybe added a plug in the middle
At least
Your coordinator is unreachable
you mean the ConBee II?
Yes
But in the sidebar if I click on deCONZ, I can get inside and configure averything normally.
Well, that sounds like the #add-ons-archived I guess
Well, the problem is simple
in the sidebar if I click on deCONZ
yet
File "/usr/src/homeassistant/homeassistant/components/zha
Remove ZHA
ok
i finally configured H.A. and zigbee2Mqtt and now i have one question, as i would like to make "non standard" automation example: connecting 3 of 5 buttons on IKEA 5 button rc to one zone (kitchen) and 2 side buttons for 2 small room toggle light, now I studying how to do it and where to do it, on ZigBee2Mqtt or on HomeAssistant side ? tips ?
I’m getting a bit lost, using the web SSH addon, I cn not even see this folder structure
my problem setting up zigbee2Mqtt was hadn't user right to acces USBstick but i was digging in wrong places 😛
the src folder is empty
Well, no, you don't delete files, you remove the integration
If you're deleting files, other than for custom components, you're doing it wrong
ok 😅
was just trying to follow suggestion
sO I just remove the integration and then create again?
ok, Solved. Acrually removing and then adding again, just showed me a message I had tomAuthorize the HA app. just allowed the app authorization and then added the integration agin and is working now
actually no idea how ZHA was on my system, I just installed DeConz
Well, you had to do it - nothing sets itself up
for sure 😅
now I will try to Tasmotize my Tuya sockets so I can get rid of the Tuya Cloud integration 🙂
ZHA was automatically downloaded for me too recently when installed my conbee 2
Sounds like another good reason for me to never enable any discovery bits in HA or default_config
My understanding is that it'll prompt you to set up ZHA, but not set it up
ah, still no success no trigger from zigbee2Mqtt remotes, at least i didn't find how to set Z2M to relay it from ZB to MQTT at the momment
good thing is when you bind at ZB layer button to dimmer it work even if all SBC stuck, but is limited but all at least more advanced is dependent on 3 software and SDcard and few things...
If you set up Z2M according to the docs you'll have entities in HA
You'll also have Device triggers showing in the automation UI
I found my issue. I was not Close enough to the stick. I had 1.5m clear air. I had to move it closer like 30cm clear air to another Ikea bulb 💡 for it to join my network.
Then you have serious issues with interference or coverage
Looks promising , but is that zigbee? Does look like it?
Nothing actually installs automatically… people just don’t read anything before clicking buttons 😂
I'd like to migrate my HA on pi to a rack server. However, I want the zigbee coordinator to be not on the server. How do I achieve that?
For HA, I assume I can just snapshot then restore on the rack server
Zigbee2mqtt
I'm running that yes
Then zigbee2mqtt can run anywhere
On a pi
And your rack server talks to it over mqtt
Which is what I do
Like this?
base_topic: zigbee2mqtt
server: mqtt://10.0.10.18```
so I still need HA to be running on a pi right?
Please bare with me. tbh, I am not too understanding what mqtt is even though I have been running it for years.
Now I have all 3 above on a pi.
In my case, should I have HA & mosquitto on my r520?
Install z2m on pi (any OS), with the CC25131, then configure it to my r520 mosquitto IP?
It isn't great
update about ikea remote: it was sending action triggers to some broadcast subchannel and current USBfw couldnt capture it, but zigbee2mqtt detected ikeaRC update and flashing was around 3h:30min and after that i see new triggers on mqtt explorer, so it should be doable now. tuya-remote stil out of triggers but i can use it on some dummy pozition with zigbee layer bond to group...
or not..... not working again.... lol...
Does ZHA support setting transmit power with the new firmware? https://github.com/Koenkk/Z-Stack-firmware/issues/323
zigbee2mqtt seems to support this with transmit_power
https://github.com/zigpy/zigpy-znp#configuration but you likely won't see a difference
@mighty bloom posted a code wall, it is moved here --> https://hastebin.com/geparumawi
@mighty bloom posted a code wall, it is moved here --> https://hastebin.com/utekakutif
@mighty bloom posted a code wall, it is moved here --> https://hastebin.com/ibehucatiw
I know there is a guy here who is happy with IKEA bulbs as repeaters, my problem with that was I have 3 x 604.084.83 which has the bug that drops all devices after a while and do not route traffic again until is power cycled. now can you recommend a bulb with over 1000 lumen (higher the better) that can do white light (white spectrum -> warm - cold) that DO NOT have this bug?
for me they are fail
and they never had a firmware update
I've tried testing server, normal server url, nothing
ah i don't know i removed them some time ago from my network
sry man
i do really appreciate you want to help

i think i'll put one in just to see
@mighty bloom Rule #6: Please do not post codewalls (text longer than 15 lines) - use sites such as https://www.codepile.net/ (pick YAML for the language) or https://paste.debian.net/ (pick YAML for the language).
Please take the time now to review all of the rules and references in #rules.
do you know maybe why Im having a time lag between my xiomi movement sensor, and action in my HA?
I checked my automation, and there is no delay or whatsoever in automation
Im using RTCGQ11LM - https://www.zigbee2mqtt.io/devices/RTCGQ11LM.html#xiaomi-rtcgq11lm
Well, the questions are:
- ZHA, Zigbee2MQTT, deCONZ?
- Depends on (1)
Ah, so, the answer to (1) is Zigbee2MQTT, based on your post on their Discord
Have you checked to see whether HA sees the state change when Z2M does?
I use three of those for years and have never had latency
It's likely the "lag" is in the device, but we'll see
hello, ive just started adding zigbee devicas to my house. im currently looking into buying a zigbee one but it looks like most of them are managed through apps. My question is, is there a hub that doesnt need to connect to the internet or that doesnt use an app that connects to the internet, for offline usage?
Yes
See pinned messages
Zigbee2mqtt, zha are your good options
Don't buy a Conbee or a cc25xx
Buy something CC2652 based. This list is a good one, both Tube and Electrolama have been proven to have excellent customer service. The current generation of EZSP sticks (see here for some) are also a good choice for ZHA.
Anything CC2530 or CC2531 based should be avoided - they're old, slow, and only suitable for a dozen or so devices. The Sonoff ZBbridge isn't advised since it uses WiFi (built in interference causing stability/reliability issues), and the HUSBZB-1 uses an older chipset so should be avoided.
Finally, the ConBee range are fine with deCONZ, but experience with ZHA and Zigbee2MQTT appears to be mixed.
What’s the link to the z2mqtt discord
https://www.zigbee2mqtt.io/ -> Support
@jolly narwhal thanks!
Does anyone integrate Xiaomi's gas detector in ZHA?
After I transferred from Zigbee2MQTT, I found that it is unavailable, what should I do?😩
The following is the device link:
https://zigbee.blakadder.com/Xiaomi_JTQJ-BF-01LM_BW.html
Why did you move from Z2M to ZHA? I went the other way to make sure all my Aqara and Xiaomi devices are supported.
Is aqara better supported on zha? I have yet to buy a device that didn't work with Z2M out of the box, except a Norwegian produced ZigBee bulb
I moved everything to Zigbee2MQTT, it’s definitely better supported.
hi guys... realised i can't backup and restore entities from deconz Ii to sonoff stick... so have decided to Nuke and Pave
need to nuke ZHA and start again, want to remove all zigbee entities and will recreate them with the new stick (re-pair)
how do i nuke existing ?
I'm guessing delete the database
But if it is an #add-ons-archived i guess it can just be deleted overall
No idea
Remove the ZHA integration, delete zigbee.db, and readd ZHA
If you haven't done it yet I have a script to migrate between the two
Arrrrrrr!
Done it... Oops
Now wrestling with re-pairing everything
I have the old ZigBee.db file
If you haven't re-joined any devices, the old stick will have all the network settings
The database currently doesn't store network settings, just info about devices
I put the old deconz to one side before I started... Hardly got anywhere so if there's a way to back it out and try again am all ears
The old stick is a deconz
The new stick is a sonoff 3.
I heard that you couldn't go from one to the other
Sorry I mean the old stick is a conbee 2
New one sonoff stick
My Mrs is not happy things not working at the moment.
One day she will see the light! Hahaha
Follow the instructions here: https://github.com/zigpy/zigpy-cli/pull/2
i'll take a look - thanks Pud
Np, send me a message if it doesn't work. You may also need to update your Conbee to the latest firmware to fully copy its state, some settings aren't available in older firmwares.
error: command 'gcc' failed: No such file or directory
i docker exec'd into my HA instance before following the steps
don't think i have updated the conbee firmware so might guess might need to do it
Maybe the environment is too restrictive now. Do you have another computer with Python 3.8 or newer installed?
yip
so i can i check...
these steps downloads what;s on the stick to a backup file
so indepenedt of ha kinda
Yes
and then i can reapply to a new stick
therefore can do on another lappy
cool - will try
python 3.9.7 on this laptop - pop os, will try
The backup is JSON so as long as the frame_counter for the network key is non-zero for the Conbee backup, you won't need to update the firmware
ok, so compiled on popos
this command though... cigpy -vv radio deconz /dev/serial/by-id/usb-dresden_elektronik_ingenieurtechnik_GmbH_ConBee_II_DE2149812-if00 backup deconz.json
zigpy not cig
fails with AttributeError: 'NoneType' object has no attribute 'close'
Do you see any indication in the very verbose logging that it was able to connect to your stick?
Your user may not have permission to open serial ports
checking ta
Running sudo venv/bin/zigpy instead of zigpy should "fix" that temporarily, I don't know what the proper procedure is in Pop OS
trying ta
no dice.. grrr
dmesg output
[96987.829096] usb 1-1.2: Product: ConBee II
[96987.829101] usb 1-1.2: Manufacturer: dresden elektronik ingenieurtechnik GmbH
[96987.829106] usb 1-1.2: SerialNumber: DE2149812
[96987.830068] cdc_acm 1-1.2:1.0: ttyACM0: USB ACM device
[97018.984341] cdc_acm 1-1.2:1.0: acm_port_activate - usb_submit_urb(ctrl irq) failed
Can you PM me the full debug output (or upload it somewhere)? It'll likely have the underlying error above the final traceback
can anyone recommend a good zigbee bulb over 1000 lumen?
They’re expensive, but Hue has some bright bulbs now (I think up to 1600 lumen)
IKEA also has/had some CW/WW 1000 lumen lights
Hihi! I'm new to home automation, but not new to Linux admin or programming.
I have set up scenes in Phoscon, and they're working-- my light bulb changes color depending on the scene.
Where I'm stuck is in trying to do scene selection from HomeAssistant. The Phoscon scenes don't appear as HomeAssistant scenes, so I'm guessing I need to invoke them through deCONZ or something, but I'm unsure how to do this. Is there a guide on invoking Phoscon scenes from HomeAssistant scripts?
(I'm also not sure if this is better asked here or in automations)
https://www.home-assistant.io/integrations/deconz#scene says that they should show in HA
Reading now, thanks.
OK. So, my scenes should be showing up in HA's listings, then? Should I blow away and reinstall deCONZ?
It's worth noting I set it up months ago when first starting out, and upgraded the system a few times since then before actually getting any smart bulbs
They should show in
-> States
If I filter states by the term 'scene', the only items which appear are ones I've created through HomeAssistant, not the ones through Phoscon.
I'd check the log file, see if there's anything obvious/related to deCONZ/Phoscon
OK.
Checking, thanks.
Nothing obvious. I'm going to restart the system and see if new log entries that are relevant come up, since maybe any relevant ones would have been pushed out by now.
Yeah, not finding anything. I can see errors from upnp and ipp, but not anything concerning deCONZ.
Or Phoscon
Restart deCONZ?
In the integrations, told it to reload, and then, for good measure, disabled and re-enabled. I can see the scenes now! Not sure which of those two things did it, unfortunately, since I didn't check between each. Thanks!
welp, i'm not sure whats going on... but I can't seem to add any additional Zigbee devices to my instance.
I currently use HUBZ1 combo stick for both zwave and zigbee. Works fine for my needs.
I have existing zigbee devicees working. (buttons mostly).
However, when I'm trying to add another ikea button/remote... my instance isn't detecting it. Any suggestions?
if I tap my existing ikea buttons... they show up in the detection logs.
You say you have mostly buttons - do you have any mains powered devices that act as repeaters?
The HUSBZB is probably capped at 32 direct children.
hmmm... I don't have any other mains devices 'yet'. I have one of the ikea smart plugs I'm going to connect, which should act as a repeater.
I figured out my issue with these ikea buttons... seems you have to wake them by pressing the reset button 5 times (not included in the instructions) and then follow the reset steps (holding on the 5th press for 10 seconds)
Getting the following error in Z2M - the Adaptive Lighting integration is attempting to change the state of the lamp but looks like it isn't getting through. I have seen this when lights have the power cut to them, but can confirm power is on with these lights and they are connected to Z2M and are showing the correct state in HA. Any ideas on how I may fix?
Error Publish 'set' 'state' to 'Bedroom Lamp Right' failed: 'Error: Command 0x0017880104e915e4/11 genLevelCtrl.moveToLevelWithOnOff({"level":254,"transtime":10}, {"timeout":10000,"disableResponse":false,"disableRecovery":false,"disableDefaultResponse":false,"direction":0,"srcEndpoint":null,"reservedBits":0,"manufacturerCode":null,"transactionSequenceNumber":null,"writeUndiv":false}) failed (Data request failed with error: 'MAC no ack' (233))'
i've got three aqara buttons that just will not join ZA
ZHA*
two switch.aq3's and a switch.aq2
managed to get one of the aq3's to join, but ZHA didn't recognise is as a button
unk_model by unk_manufacturer
Morning! (Or whatever in your timezone 🤣).
I'm using Zigbeetomqtt and I have some xiaomi QBKG23LM Switches that reports temperature values. Acording to this page :
https://www.zigbee2mqtt.io/devices/QBKG23LM.html#options
The temperature values can be offset (which is working properly) and the precision can be changed from 0 to 3.
Whenever I change the precision doesn't work at all. Keeps reporting as an integral instead of float. It's not something about the UI because in the zigbeetomqtt logs appears as an int.
Any clues?
Thanks, very helpfull
Never had any issues with my Xiaomi temp sensors, would not trust the other devices integrated temp sensor tho
I know is not trustworthy, but it's a good approximation for the measure. I'm not going to bind any critical process to those measures, just want to know roughly the temperature in my house as I already have those switches all around the place.
I'm not asking if the measure is precise, I'm asking why the precision setting is doing nothing please stick to the subject of question.
No worries champ
I can't connect my hue devices to home assistant using zigbee2mqtt. I got a bridge and I used it to unbind them but they won;t connect anyway. Anyone got some ideas what am I doing wrong?
Which bridge?
Z2m doesn't use a bridge, it uses a coordinator
In reality z2m is the bridge
Well I got 1 led strip and 2 bulbs, 1 was new so I connected it easily, but the other ones were connected to bridge v1 and I cant get them to connect using coordinator
I tried connecting them to my bridge and then deleting them from device list in app but they wont connect to anything else then the bridge
Its v1 bridge so I really want to bypass it
I tried this method of reseting them : Hue bridge
When the bulb is still connected to the Hue bridge, you can simply factory reset the bulb by removing it from the bridge via the Hue app. Orphaned bulbs (configured to connect to a non-existing Zigbee network) can be adopted by a Hue bridge by entering the 6 character serial number in the Philips Hue app
Any ideas how to reset those devices using bridge v1? They dont blink after deleting them so that may be the problem
What bridge?
Hue bridge?
You can't use that with zigbee2mqtt
So I don't understand the issue
The best way to reset a bulb is to use the dimmer switch
I dont have the dimmer switch but I have hue bridge v1 which is supposed to be able to reset bulbs but it doesnt work at all
Maybe only v2 does it, if thats true then I just gotta but dimmer switch
Never done that, thankfully i only have 4 hue bulbs
The tradfri ones are just 6 resets
No idea if the hue support that
Since I have four dimmer switches I just used that
Well its listed under 1 of 5 methods of reseting without note about v1 not working
Dimmer should work on led strip too, right?
Perhaps?
`I found a simple way to reset a Hue SMART+ Flexible LED Light Strip (listed in their hard-copy manual in the box):
To reset product to manufacturer default setting, power cycle the accessory 5 times. Accessories will flash 4 times when reset is successful.`
I am setting up my Sonoff 3.0 and am having difficulties with the web UI opening. In the docs it says to add a port setting in the configuration yaml file. When I do this the configuration fails. Any ideas
On what integration?
I heard about that too, doesnt work at all
zigbee2mqtt - Should I ask in add on instead
Invalid config for [frontend]: [port] is the error
Your zigbee2mqtt config does not go in HA's configuration.yaml

Thanks, It now has loaded, but the dashboard is taken forever to load. Must be another setup error
Anyone know of a zigbee motor or unit to control shades (nylon pull cords) ?
Have you checked the pins?
Hello,
Wondering if someone can help me with finding a product. I'm looking for a zigbee controlled roller shutter. I have tried a few but they all work with the smart life/tuya app and Im looking for one that I can directly connect to my zigbee conbee II usb that is linked to home assistant.
Thank you

I don't see anything that would answer my question? I'm not asking how to make it work, just looking for a specific device and was hoping someone uses something like that
There's a pinned message listing known working hardware
Both lists include various roller shutter/blind options
Apologies. I looked over that.
Thanks
According to ZB2MQTT, these should be supported but whenever I pair it says unsupported. https://www.zigbee2mqtt.io/devices/E1D-G73WNA.html
Oh wait...
and they were never heard from again
Can anyone point me in the direction of a good guide to Zigbee & HA? Im looking at something that will help me understand the differences in functionality between a USB Zigbee adaptor, and one of those WiFi bridges i've read about.
Thanks in advance!
They all work the same way which is through a serial connection. The network based adaptors just create a serial link over tcp. WiFi is generally not recommended as it may not be a stable as a hard wired connection, also zigbee and WiFi use the same 2.4 ghz band, so the WiFi could interfere with the zigbee coordinator in such close proximity.
Thanks - what would you say is real advantage of a direct connected adaptor, such as USB, over a WiFi bridge? just range and placement convenience?
How about config wise? Is one methodology easier to get up and running than another? im kinda looking, like most people i'd guess, for simplicity of setup of devices.
I’m biased as I make and sell Ethernet connected coordinators. I’d stay away from WiFi. Setup is not much different you either pick/specify the serial port or use the IP address of a network connect one.
Benefits of Ethernet are central placement away from ha server, or if using a VM based install it may be easier than dealing with serial pass through
If i went with a bridge, i'd wire it in with Ethernet, but WiFi shouldnt be too much of an issue if its been tuned properly.
What about device detection itself? Is it just a case of putting a given Zigbee device into pairing mode, pair on the bridge and away you go, it appears as a device/entity in HA?
as long as the device follows standards or has a quirk (ZHA) or has a converter (Zigbee2mqtt)
ok, great. Thanks for answering!
As someone who doesn't make them but does use them I can say the adapter I'm using (which @molten linden happened to make) has been rock solid. I use a POE version and have it placed wherever I thought it would be the least amount of interference with just ethernet connecting it which is SO nice.
Are you able to link to that model you are using please? I prefer PoE gear where i can, less cabling.
I PM'd you it, not sure the rules on posting links to sites, I assume it's OK since it's listed on HA's site but I am new to the discord server 🙂
Its linked off the Zigbee2mqtt supported adaptors and that’s linked in the pins… my store at https://tubeszb.com
If linked it here before so 🙈
Thanks! got it
👍
That'll be useful for when i start (re)buying parts.
Had a right mare with first some long-term TP-Link bulbs i had, then all these recent AWS outages messing up Wyze and my ability to actually use my lights, i just want to get some Zigbee compatible bulbs and start building out my automations with HA and equipment that doesn't need a cloud connection to actually function.
I'm converting from Hubitat (also a platform really big on local automation and control) and have a ton of zigbee RGBW bulbs in use. I did ZHA when I first set up but wonder if I should have gone Zigbee2MQTT for future compatability (I'm using Zwave2MQTT)
Zigbee 😱
Still struggling with my Aqara WXKG12LM buttons
They just won’t join to ZHA
I have a WXKG11LM that won’t join either. Two other 11LM’s joined fine!
try to enable joining via an outlet if you have some, or go to another part of the house and try there
Yep, tried moving them about. Best I could get was an “unk_model” device to connect.
maybe it could be that it tries to join via a device that cannot deal with xiaomis bullshit 😅
Maybe haha
I take them to the same place that I connected my two working 11LM’s and they don’t connect there.
I sit right on top of my slaesh coordinator and I can get them to connect as unk_model
Get a joining debug log. If ZHA can't even read the device's model and manufacturer attributes, that means that either its battery is dead or the Aqara sensor goes to sleep too quickly (and doesn't have a quick init quirk). Have you tried clicking the button periodically while it's initializing?
I have not
It’s got a fresh battery in it though
I’ll try that now
"Starting interview"
then it just sits there until the join times out
What does the joining log show?
i'll let you know when it stops
[0x8f05] Invalid state on future for 0x6e seq -- probably duplicate response
The whole log
Device is initialized <Device model=None manuf=None nwk=0x8F05 ieee=00:15:8d:00:02:5d:ac:a9 is_initialized=True>
Try fully removing it with ZHA, then re-joining it after 30 seconds
have i mentioned there are too many clicks required to navigate into ZHA? because there are.
removing and retrying now
it's possible i tried to pair this one earlier this morning and forgot to remove it again
looks like we're back to "Starting interview" and never progressing any further
no, holy shit it worked
Did it read the model and manufacturer name properly this time?
yeah looks like it
battery is reading as ?
and i haven't confirmed it's actually working yet
it truncated the device name when it joined
but it seems to be working
Truncated the device name?
like it cut it off
What does it show?
That is interesting. What exact value for the model and manufacturer does the device signature show?
lumi.sensor_swit
by LUMI
Same thing in the JSON?
I wonder how that happened: MODELS_INFO: [(LUMI, "lumi.sensor_swit")],
"manufacturer": "LUMI",
"model": "lumi.sensor_swit",
Yeah, it's in the quirk so it's correct
I guess they got tired of typing out the entire device model name each time
haha now the second aq3 won't pair at all
and it's the one i put the fresh battery in 🤦♂️
Try taking the battery out and putting it back in
goes to find a coin
And make sure you start joining it within 60s of clicking one of the "add device" buttons
yep, i'm within 5s
no joy
the wind must have been blowing in the right direction when i paired the first button
now i'm getting this: https://pastebin.com/LwftWEEU
morning guys... have nearly finished re-pairing ALL my zigbee ZHA devices after moving from Conbee II to the sonoff 3 stick

hehe, I thank you...
So a v basic question... now that i have a sonoff in place... I can shutdown HA at some point, take out the zigbee stick and insert in to linux PC and run... zigpy -vv radio znp /dev/serial/by-id/... backup sonoff-zigbee.json
and that will get me a backup of my zigbee network that I can reuse in future ?
that right - in essence i am asking the noob question, the zigbee network is stored on the stick - that right ?
i should also probably update the firmware on the sonoff stick right ? bit nervous about that...
trip to ikea later for more lights and PIRs etc ! haha
HA sees my sonoff stick as follows... "Texas Instruments CC1352/CC2652, Z-Stack 3.30+ (build 20210708)"
the conbee II is on the shelf !
and my house is working great! (mostly) hehe
Am grateful for further guidance.... 🙂
No idea, I run Z2M which creates a backup everytime I reboot it i think
Then I have incremental backups of my zigbee2mqtt folder
that sounds sensible... after a couple of days of recreating my network i think I need to back up !
stupid ikea symfonisk volume control thing
its apparently supported by ZHA, but its not working
the battery entity always show 'unknown' and its not firing zha_events
anyone confirm I've got the right idea? device database is retained by the stick ?
so it must have some sort of emmc memory on it that is written
or such like
and backing it up (after unpluigghing on another pc) is ok... zigpy -vv radio znp /dev/serial/by-id/... backup sonoff-zigbee.json (edited)
[08:10]
I thought it was kept in HA in the zigbee.db file, but im not sure
Depends on which integration you use
ZHA behaves differently from Zigbee2MQTT, and who knows what deCONZ does
ISTR that the details are in the software and the stick
Lmao, changed battery in a vibration sensor, 2h later… 🤔
https://i.ibb.co/Pm77BPN/FD17-CC3-F-9-FD4-4860-82-C2-8340-D8-E94-FAF.png
I’m trying to transfer my devices from ZHA to zigbee2mqtt and got a new USB stick. I planned to transfer one device at a time from my old ZHA/USB stick. I started with a new sonoff plus stick and added a new hue bulb to it with zigbee2mqtt. No problem at first but suddenly ZHA hijacked the bulb. I tried to remove it from ZHA but it keeps getting readded. So I tried a new bulb wich also was automatically added to ZHA. I don’t even press add new device it just gets added. Is there a setting to avoid this from happening? I have added a end device, a Hue outdoor sensor to z2m and that works.
ZHA does not keep the network open. Are you sure on your new stick you created the new network ?
Hmm i did not know that was a thing.
I was thinking to maybe upgrade my stick if the newer one is better than my old one (COnbeeII)
Yes. Its very strange. I tick permit join in z2m and it connectas and after a while it disconnects and connects to the old system.
And you have removed it from the old system?
The network state can't really be fully backed up and then restored because you can't control other routers on the network. All the backup will contain are the basic network settings and what devices are currently children of the coordinator (which will usually find new parents after the coordinator is offline for a while).
Are both using TI coordinators? Did you previously use the ZHA coordinator with Z2M? They could be using the exact same network settings
Hello everyone, i fairly new to homeassistant and i am currently trying to get zigbee2mqtt working.
i followed that guide (https://www.youtube.com/watch?v=-YeObwEZqL4) and i am currently getting those errors:
Zigbee2MQTT:error 2021-12-28 18:20:33: Error while starting zigbee-herdsman
Zigbee2MQTT:error 2021-12-28 18:20:33: Failed to start zigbee
Zigbee2MQTT:error 2021-12-28 18:20:33: Exiting...
Zigbee2MQTT:error 2021-12-28 18:20:33: Error: Failed to connect to the adapter (Error: SRSP - SYS - ping after 6000ms)
at ZStackAdapter.<anonymous> (/app/node_modules/zigbee-herdsman/dist/adapter/z-stack/adapter/zStackAdapter.js:94:31)
at Generator.throw (<anonymous>)
at rejected (/app/node_modules/zigbee-herdsman/dist/adapter/z-stack/adapter/zStackAdapter.js:25:65)
i googled a bit and tried to set the port in the config to the by_id port of my adapter but that didnt work.
does anyone has an idea how to get it running?
ofc also tried restarting the addon and my homeassistant aswell
i have a conbee2, not sure about the firmware, how can i look it up?
No idea, probably in deconz
i dont have deconz installed right now, cause everything else i did with zigbee worked so far
gonna install it now
SRSP - SYS - ping is for TI coordinators running Z-Stack
You need to specify in your Z2M config file that it's a Conbee

and where do i do that in the config, as ai said i am new to HA so i have now idea where to look in the Z2M config
https://www.zigbee2mqtt.io/guide/adapters/#recommended, in the "ConBee II" section
did that, now i get an "undefined" error:
Zigbee2MQTT:error 2021-12-28 18:34:02: Error while starting zigbee-herdsman
Zigbee2MQTT:error 2021-12-28 18:34:02: Failed to start zigbee
Zigbee2MQTT:error 2021-12-28 18:34:02: Exiting...
Zigbee2MQTT:error 2021-12-28 18:34:02: undefined
i added:
adapter: deconz
to the config
i have one of these ikea zigbee repeaters... are they just plug and play ?
Well, yes
Has anyone else noticed Zigbee (using zzh + z2m) malfunctioning after upgrade to core-2021.12.6? Had to hard reboot (unplug) the stick...
Zigbee2MQTT has nothing to do with HA - any upgrades to one won't impact the other
What firmware is on your ZZH? There was a rare lockup bug fixed by a firmware revision
If responding to me, it was when upgrading core. Just stating what I use as mentioned in the topic
Yes, but I'm saying that updates to HA cannot impact Zigbee2MQTT
That's like assuming that putting fuel in your car could have caused your mobile phone to run out of charge
Oh! Currently running 20210708
Ok. So Core has nothing to do with the stick?
Just asking to understand this better
Then it could perhaps be the lockup issue, checking for new firmware now, thanks for the heads up 🙂 Hm. Already on the latest... 😧
I think it was already fixed in 20210708
Would be worth upgrading the firmware on the stick anyway though
But I'm already running that same version? Would there be a point of rewriting it?
I know (that's why I said I think it was already fixed in that version). There's a newer version you can upgrade to though
Sorry... I found the one I had, hence the question. I'll look harder then 🙂
Thanks 🙂
Make sure to pick the right one based on the table
Anyone on ZHA had trouble with updating from the Ikea Test Channel firmware to the Ikea Stable Firmware? I'm trying on blinds and open/close remotes
Hello
I have a vent with 2 speed
from an electrical point of view, the vent has L, N1 and N2
if L is connected to L and N connected to N1 then I have speed 1, and speed 2 if N connected to N2
I have purchased a zigbee module for curtains
using the device from the GUI I can managed to have either speed 1 or 2
however, the card (or whatever it is called) is a bit weird as it considers the openness level of the curtain (which obviously does not exist for me)
and I can not figure a way of basically controlling what I want (either stop, speed 1 or speed 2)
you should be able to override the device and define it as a fan.
maybe?
maybe
I am having a hard time trying to get it to do what I want sending mqtt payloads that are supposed to replay what happens when I use the physical switches (i.e connecting S1/S2 to L)
getting stuff like :
{"backlight_mode":"LOW","calibration":"ON","calibration_time":37.1,"linkquality":55,"motor_reversal":"ON","moving":"DOWN","position":100}
{"backlight_mode":"LOW","calibration":"ON","calibration_time":37.1,"linkquality":57,"motor_reversal":"ON","moving":"STOP","position":100}
{"backlight_mode":"LOW","calibration":"ON","calibration_time":4.4,"linkquality":55,"motor_reversal":"ON","moving":"STOP","position":100}
{"backlight_mode":"LOW","calibration":"ON","calibration_time":4.4,"linkquality":65,"motor_reversal":"ON","moving":"UP","position":100}
but it seems that replaying does not reproduce the same result
my understanding is that the position plays some rile here
role
now works a bit better
basically if I say position 100 it will be in case 1
if I repeat position 100 then it will stop all
then position 0 will be case 2 (I mean speed 2)
then position 0 again will stop
Could anybody recommend a temp+humidity sensor working over ZHA or zigbee2mqtt?
so basically I know how to set speed 1 or 2, but then to figure how to set stop I need to set again the current position I guess
xiaomi WSDCGQ11LM
Ahh found that one before, got any with a screen too?😅
Any Xiaomi one
Hi all. I have a zigbee Centralite thermostat. I'm trying to find a way to either A) program the thermostat so the onboard temp sensor isn't active so I can use a separate remote zigbee temp sensor in place of it or B) if there's a means to use both (onboard and remote zigbee temp sensor). End goal being I want to stash a temp sensor in a cooler room so it can be kept to adequate levels. So far I'm striking out a bit and just not sure if adding a second temp sensor is possible?
That's likely not strictly possible with most zigbee thermostats. The zigbee portion of the thermostat allows you to set parameters (set point, heat or cool, fan on auto off) and read parameters (set point, current temp, current humidity etc), but the thermostat operates stand alone still (AKA it looks at the set point vs it's internal temperature and operates as though zigbee doesn't exist). The best you could do is write an automation that continues to turn up & down the thermostat set point until the secondary temperature sensor reaches it's intended value I believe
@quartz cedar thanks for that explanation. That helps articulate where my gut/assumptions were starting to fall the more I dug in to this. This may be best for another channel but my only hesitation is if I have an automation playing with the levels based on the status of a remote temp sensor, that feels like I lose control of quickly adjusting the preferred set point of where I want the house to be. (I mean I guess that goes against the point of home automation but I still felt some degree of manual control might be nice on the fly)
And now you've found the reason they make zoning hardware for HVAC 😄
when I was in a similar situation my solution involved limits on both sides, "this room should only get as cold as 65, then turn the heat up a bit" and "this room / the thermostat should never get above 72" (I had temperature sensors in lots of rooms, basically)
I actually ended up moving the temperature around very little and instead relying on the fan, since it was a forced air thing, it helped even things out
Yeah. It feels more like I would almost need to kick this off with hardware that was purpose built for zones and multiple areas, as opposed to a standard zigbee thermostat that I try to shoehorn in additional functionality.
the key really is zone dampers if you have forced air
so you can limit air to hot rooms and open the vents to cold rooms
or booster fans, for your cold room 🙂
I do have forced air, but none of the dampers are automated by any stretch.
well, at least you have dampers, most aren't so lucky and have no ability to balance anything
I keep them all shut in the area of the fireplace so the fireplace can be more responsible for heating those areas. But that fireplace is close to the thermostat, so, it tricks the thermostat in to thinking the house is warm when really it's just the living room/hallway/kitchen/dining room while anyone in bedrooms are freezing their butts off because the forced air furnace is never firing.
have you considered the brute force route and moving the thermostat to a hallway between the bedrooms?
but then the other variable is what if the pellet stove runs out because I got held up at work. Then I have the reverse problem. 😄
Sounds like you need some controlled dampers!
well, I've thought about it yes. Relative to other DIY work I've done in the house, moving the thermostat would be easy. Problem is we have a major renovation coming up in a few months and I'm not sure how the design will ultimately land, so it feels silly to move it currently.
But then as I sit here pouring hours in to trying to figure out the potentials and what if's and whatnot I sit back and think, geez, I can open my app and adjust temp so easily, do I need to automate this? (bearing in mind manual control is still a preference of mine, which if I automate the snot out of this I may limit my ability to do any quick adjustments on my own accord)
yea it may just be as simple as "Turn the heat up automatically on the weekends when it's more likely people are in bedrooms during the day, otherwise let me manually adjust it"
Yeah, I thought about that. But our schedules are so random... I mean my wife is out of town with the kids for 3 days, so, the climate control that's best suited for these 3 days is vastly different than the norm. But our norm is anything but normal... She sometimes pulls 16s at the hospital, I often have board meetings that keep me at work from 7a-11p in total, etc.
Almost makes me wonder if our lives are too chaotic to accurately automate 😄
HVAC can be tricky to automate imho, comfortable is typically different between seasons, activity level and people involved. I would prefer a different temperature when I'm watching the football game on the weekend vs my wife when she's got her pile o' blankets on and is watching a movie, despite that being essentially the same activity (in the living room, TV on)
we've gotten pretty ok with "this room is this temperature during the day/night+season" so, living room is 68 during the day in the winter, living room is 66 during the night in the winter, living room is 72 during the day in the summer, living room is 75 during the night in the summer
then from there the temperature only changes twice a day (6AM and 11PM) so manual overrides are usually still decently effective
but we have normal work and sleep schedules, which you do not get to enjoy 🙂
yeah, I hear ya there. The other thing I thought about is maybe getting a power monitoring smart plug since the pellet stove requires electricity and basically rigging up an automation to say if pellet stove is on, adjust set point on thermostat to 78 (to account for the overthrow fireplace heat hitting the thermostat and hopefully get distant rooms around say 71-72 or so), and when power is off (i.e. if the stove ran out of pellets), adjust set point on thermostat to 72
But I'm not sure how manual overrides play in to that. Like what if my smart plug tells thermostat to go to 78, and I'm like naw dude that's still too cold in this back room. If I drag the thermostat slider to be 80 instead, would it stay put? Or would the automation kick it back down to 78?
depends on how you structure the automation
what will trigger it, a change in state of the power monitoring? how often does that fire? etc
since you have a thermostat with a temp sensor, I'd just add a temp sensor to the cold room, and do an offset. "Hey it's more than 3 degrees cooler, up the thermostat a bit since we assume the pellet stove is on" that way you could handle if you don't have pellets "hey the offest isn't very big just keep it at 71 like normal as the back room is 70)
Yeah, I did think about that. I may have to play with this a bit. I just worry that I'll automate myself to insanity if I block myself out of manual adjustments. Because at the end of the day if my wife wants to crank the heat and I'm at work in a board meeting where I can't help/respond/etc and she finds my automation rule kicks in to undo her kicking it up a notch, it'll be my neck. 😄
WAF is always a concern!
Although I could always do the 2nd temp sensor in the cool room and just... not automate it. Just use it as reference. I could see my little man's room is cooler than I expected, so, crank the tstat up on lovelace manually
you could also create a virtual switch that is a condition of the automation, if she flips the switch the automation stops touching the setpoint.
though it'd probably be good to have an automation still running in the background, e.g. if power to pellet stove shuts off, adjust set point to 72 on thermostat
otherwise I run the risk of the pellet stove shutting off (out of pellets etc) but the furnace still being locked to 78 or whatever the prior high-point was to compensate for the fireplace heat
there's no telling when the stove may run out. All depends on multiple factors. I could cook a bag in 3/4 of a day or a bag may last me 2.5 days...
and monitoring power is the only easy way I can think of to know it's running
if I do this by a separate temp sensor it could still be the heat from the furnace while the stove has been off for hours
Maybe I'll do that now that I think about that more... I'm okay with automating the furnace thermostat back down to 72 if the pellet stove is off... but I worry about how much oil I'd burn if the stove is off unbeknownst to me and all the while the furnace temp is running hot as per its prior manual setting.
man you weren't lying about hvac. No obvious answers. 😄
home automation should always be looked at with the lens of "Is there a reliable/known trigger for the automation I want to happen"
I did have a hilarious alternative idea. Smart plug with a fan aimed at the thermostat to push some of the hot air away from it. 😄
if temp above x, kick on. if temp below y, shut off.
Always the try the simplest thing first LOL
any idea how often automations run? Thinking like... if I have a zigbee power plug that if it sees no power is detected then sets the temp to a lower value on the zigbee tstat, but then I manually override it, how long can I expect that override to stay before the rule would fire again to overwrite my manual setting?
automations run based on triggers
(https://www.home-assistant.io/docs/automation/trigger/) so depends on what your trigger is
at the moment I don't even have trigger filled out -- just condition and action. Heh.
so in your example, it'd probably be power (Watts) above a certain amount (AKA the fan is running on the pellet stove)
(we should have this discussion in #automations-archived for the record)
ah shoot, did get a little derailed with the original point of why I was here
so in that case your at the mercy of how often your plug reports power (many plugs can be configured to report based on % change or only if it changes at least X watts etc)
but that's pretty under the hood stuff
one handy thing you could do is include a minimum time, "if the power is over XWatts for 15 minutes"
via the hysteresis option
trigger:
- platform: numeric_state
entity_id: !input 'power_sensor'
for:
minutes: !input 'starting_hysteresis'
above: !input 'starting_threshold'
It'd be cool if I could rig it up so it only runs one time and never again unless it detects power AND later detects no power again, then repeat the cycle (run once but never again until power is seen/then later not seen)
but I'll tinker around with that on my own accord
You can do that, take a look at the "mode" option 🙂
Oh neat, I'll check that out.
I mean, I believe you can do that I haven't done that LOL
thanks for your time. appreciate your insight. 🙂
for sure! good luck!
Konke, cause screw xiaomi and tuya
Konke can only be used on 11, 15, and 20 though I think
So channel 25 peeps need not apply
Oh it's 15, 20, 25
So channel 11 peeps need not apply
so i wake up this morning, and its all just magically working... events are working, so is battery level.. 🤷♂️
Is it possible to integrate Conbee 2 tick with zigbee2mqtt?
Possible, yes
Recommended, eh
https://www.zigbee2mqtt.io/information/supported_adapters.html is the official guidance though
Thanks ans sorry for dull questions. I'm trying to find myself in this ecosystem, with difficulties :/
hello
I'm trying to flash a SONOFF Zigbee 3.0 USB Dongle Plus, and the instructions I've found say I have to use use FLASH-PROGRAMMER-2 from TI.
The register page is down, so I cannot download the software.
Is there anywhere else I can download it, or instructions that don't involve downloading it?
Thanks
See the link I shared above, it has a whole bunch of flashing instructions that use different software
I'm using zigbee2mqtt for a while now, since yesterday, I can only turn my switches on through the HA dashboard.
Immediately after that the switch on the HA integration goes back to off while in z2m it appears correctly as on.
So HA doesn't recognize that the switch is on therefore I can't turn it back off.
This behavior began yesterday, did any one encountered it?
right, thanks.
I had skipped right to 1.2.2 because of python.
I'll try it
Hi All,
Anyone have a link to download "SmartRF Flash Programmer v2" not from TI website as it's not possible to register right now to the site "This part of the TI website is currently undergoing scheduled system maintenance." (for a week already)
Thanks
can this be done with tasmotize instead?
No idea, doubt it
ok, thanks
does it keep all my settings (devices) if i upgrade it via this method ?
Nope. that's a total different chipset.
ok, thanks
I'll try that - thanks!
no idea
Can anyone recommend a good RGBW LED controller for bare strips? I got on from Aliexpress but it doesn't really expose the channels as entities and other things are pretty wonky
I've been happy with the Gledopto ones
https://www.zigbee2mqtt.io/devices/GL-C-008P.html is the one I've got currently
Can you set white and color independently?
hello! can some one give a link for radiator thermostat which work with Z2M (without native hub)?
Some models of them support that - the one I have doesn't
ppl, i've found those sensores for doors very cheap, like 4.23€ each if in package
Does any one did try one of this? if yes, how is the battery life on those?
https://s.click.aliexpress.com/e/_Ao9OrO
it's a CR2032 battery
i mean, battery life 😂
my telepathy skills failed me again
@violet dagger btw, I did add a few more devices (12) to z2m
ok... i guess
https://sonoff.tech/wp-content/uploads/2021/12/SONOFF-Zigbee-3.0-USB-dongle-plus-firmware-flashing-1-1.pdf
I followed the instructions up to the serial port assistant.
I send the 55 55 code and get no response
the flash appears to have run correctly
how do I post the log
can't find it
I know there are special charactert
@tame storm I compared my z2m with the HA dashboard and they sync correctly.
why are you still using the TI Flash Programmer method?
because I'm not registered, and the registering site is down since yesterday
so the reason you're using the method for which you cannot download the required software is "because you're not registered"? hmmm....
are you using google translate so something gets lost in translation?
no, why?
@hearty basalt I just installed my SONOFF Zigbee USB Plus dongle and wanted to know why are you flashing new software on the dongle?
I'm using the first method: phyton+serial port assistant
and cannot download FLASH-PROGRAMMER-2
installed Python, ran uartLog.py, with the file CC1352P2_CC2652P_launchpad_coordinator_20211217.hex on the same folder
point 1.2.1
can go with 1.2.2 because I can't get FLASH-PROGRAMMER-2, unfortunately
that's the exact reason why you shouldn't be using that method yet you are
do you have any sugestions?
not really no
I think I've figured it out
I thought that uartLog.py was supposed to send the file
I'm sending the file though serial port assistant, not very clear on the instructions
now I get a 3 in response?!
just follow this: https://github.com/JelmerT/cc2538-bsl/pull/114#issuecomment-981666618
Is it true the current version from z2m coordinator firmware doesnt support 20db? I thought I heard it was not implemented yet?
I will try to find it. I think it was on the github
also which firmware 😛
damn i need to upgrade
Then its correct since that latest is dev
I upgraded to dev and noticed no difference
I saw in a video that this one is supposed to work at 20 db
Z-Stack_3.x.0 20211217
https://github.com/Koenkk/Z-Stack-firmware/tree/develop/coordinator/Z-Stack_3.x.0/bin
saw it in this video
https://www.youtube.com/watch?v=IpDZDCd-9Mk
oh
I've managed to follow the instructions on the link, how do I know if it's working?
I guess you should see some higher lqi
or lower
It's my first time using a zigbee dongle...
I don't know what you are saying
lqi is a mystery nobody understands
I think different sticks report different
deconz dongle usually report sky high
Lol Conbee
Yes, different chipsets report it differently
basically, if everything is working don't ask questions
I have about 60-90 on the core network with a tube
Yes
The software you used will tell you if it worked or not
After that, the software you're using it with will likely tell you what firmware version is on the stick
@jolly narwhal who dont want more db?
There is no need with enough routers 
You don't want everyone to be a child device of the coordinator
true. after I removed all xiaomi I had a stable zigbee over 3 floors
like this?
py llama-bsl.py -p COM3 -b 115200 -evw CC1352P2_CC2652P_launchpad_coordinator_20211217.hex
Opening port COM3, baud 115200
Reading data from CC1352P2_CC2652P_launchpad_coordinator_20211217.hex
Your firmware looks like an Intel Hex file
Connecting to target...
CC1350 PG2.0 (7x7mm): 352KB Flash, 20KB SRAM, CCFG.BL_CONFIG at 0x00057FD8
Primary IEEE Address: 00:12:4B:00:24:C0:35:A5
Performing mass erase
Erasing all main bank flash sectors
Erase done
Writing 360448 bytes starting at address 0x00000000
Write 104 bytes at 0x00057F980
Write done
Verifying by comparing CRC32 calculations.
Verified (match: 0xba5c19c5)
what software are you going to run on?
Verified (match: 0xba5c19c5) is verified
home assistant
z2m
then boot it in z2m and look at the logs. then it show you the version etc
ok, I'll try
thanks
Z2M's UI tells you all about the coordinator - just have a look
I'm still running February firmware
welcome to the club
Should probably upgrade
and break everything!!!!
However did you know?
previous experiences
I had no issues with the latest updates luckily
got some good improvements like pair from entity
Haven't had issues with my ZigBee network for years
In general its been very stable here too
but I have not dared to put my hue things on z2m yet
Also I dont know if ch25 is reduced db as in the us
I run the hue hub on 20 and z2m on 25
🤢
what now?
20 for z2m, drop the hue hub
Then I have to re-pair
Have the lowered tx power on channel 25 been measured somewhere? I doubt that it is actually implemented
I've been running on 25 for years now, I cannot tell any difference compared to by other network 🤷♂️
my 25 and 20 is quite quiet
but if 25 got some limits I would keep away from it
26 I KNOW have issue
26 allegedly has power limits in the US; I haven't heard the same for 25 though
IF 25 got the same I need to get away from 25
Is it a reason why hubs like hue can change channel on the fly, while our third party cant. it seems like the zigbee protocol can handle channel change without repair
I've always assumed it was just transparently unpairing and re-pairing everything
It would be cool if we could replicate it
I connected the dongle to home assistant running on a raspberry pi
It was detected and I must have configured it wrong that generated an error and I can't find it no more
how can I restart the configuration?
So I just installed and paired an aqara light switch in my bathroom to control my fan. The switches import into the light domain where I'd like them in the switch domain.
Is there anyway to modify that vs making template switches?
What zigbee software are you using?
HUBZ USB stick & the ZigBee integration
ZHA then
Yes!
do you know how to reset a device in home assistant?
I miss configured SONOFF-Zigbee-3.0-USB-dongle-plus and now it doesn't show anywhere
@tropic depot RTFM 🤦♂️. Working now, thanks!
All good there is a lot there
Hello all, I search plug to get consumption in HA, without cloud, if you can advised me for a gateway and a plug (or module)
See the answers to your crosspost in #hardware-archived 😉
oki Tinkerer
Crossposting is generally frowned on since it can result in a lot of wasted time with different people trying to help you, unaware of what else is going on
I see zigbee plug on aliexpress but I need a gateway to connect the plug to my pi?
I can post aliexpress link here?
Whatever suits, just remember that anything after the ? isn't needed
That USB stick is fine
with this plusg: https://fr.aliexpress.com/item/1005003646930652.html
two model
Read the description
one is wifi the second is zigbee no?
Then you need to check that your choice of ZHA or Zigbee2MQTT supports it
Generally speaking Tuya is a shit show, not unlike most of the Sonoff stuff. I'd not recommend it
this is better : https://fr.aliexpress.com/item/4001118546894.html
My GLEDOPTO bulb lost power last night, and after plugging it back in and waiting a couple hours:
- no longer see it in my Z2M dashboard
- Entity not available in HA.
Should I just re-pair it?
I'm running z2m in a docker container
what do you do when a device is paired with zha but see in the logs all kinds of errors and the device doesn't report status or anything?
the documentation of core mosquitto contains the following instruction "Create a new user for MQTT via your Home Assistant's frontend Configuration -> Users (manage users) , (i.e. not on Mosquitto's Configuration tab). Notes:"
does that mean creating a user just like any HA user ?
correct
thanks
hi! I have this dimmer switch. Feels good, looks good, working fine!
https://zigbee.blakadder.com/assets/images/devices/Eardatek_EDM-1ZAA-EU.jpg
however I don't see a way to set brightness in zha automation
anyone had some luch with these or similar switches?
ok I see now that I can actually call a service light.toggle with brightness, and t works!
As I sometimes had issues with my CC2531 dongle (it would require power cycle among other issues), I came here asking for recommendations a few months back. I have been explained that CC2531 was not recommended (as explained here https://www.zigbee2mqtt.io/guide/adapters/#recommended) and that CC2652P would be a good choice. I have then purchased a CC2652P and my troubles started. The main problem was that many devices were marked as not supported (although they showed as supported with the CC2531)
the CC2652P has a recent firmware
I would really like to get it working as it was "recommended"
so, I have set the CC2531 (which works) on my HA install
and just installed a new HA on another machine to play with the CC2652P
is there any reason why a device would pair just fine with CC2531 and not with CC2652P ? because I am trying again some xiaomi switches (i.e., trying to pair them to the current system with CC2531 vs. pairing them in the new/test/temporary install with CC2652P) and still have the same issue (pairs fine with CC2531 and hows up as unsupported with CC2652P)
Choice of coordinator should not change supportedness of devices in Z2M
More likely is that the pairing process is not completed
also, check your configs with the cc2652 for the zigbee settings. Is it the same channel and network key?
I think you need them to be different (create different zigbee networks)
I made sure they are different
just in case, I'll try to reflash the device (it came already flashed when I purchased it). Not sure this will do a miracle but it probably wont hurt
trying cc2538-bsl for that
and getting error ERROR: module 'serial' has no attribute 'Serial'
problem with serial/Serial solved
I think zha is assigning my door sensors as an older model and that's why they pair but don't work. not really seeing a way to fixing that cause the device type is accurate
I re-paired my bulb, and z2m paired it. The coolest part was that it paired the bulb with the name I had given it previously, so HA found it immediately. It fell off the network, but kept the name - how does that work?
It's in the config file
Back before the frontend was there I renamed everything manually in z2m config file before connecting to HA
Might be in the db these days too
Gotcha. Thanks atxbyea !!!

Have you tried reconfiguring it?
yes it fails
no idea how the pairing process retrieves what the device it is but it's almost like it just assumed it was a diffrent model, set everything up for that model (even while throwing errors during the pairing process) and then said here you go, device configured
ZHA goes with what the device says. What does the signature look like?
{ "node_descriptor": "NodeDescriptor(logical_type=<LogicalType.EndDevice: 2>, complex_descriptor_available=0, user_descriptor_available=0, reserved=0, aps_flags=0, frequency_band=<FrequencyBand.Freq2400MHz: 8>, mac_capability_flags=<MACCapabilityFlags.AllocateAddress: 128>, manufacturer_code=4456, maximum_buffer_size=82, maximum_incoming_transfer_size=82, server_mask=11264, maximum_outgoing_transfer_size=82, descriptor_capability_field=<DescriptorCapability.NONE: 0>, *allocate_address=True, *is_alternate_pan_coordinator=False, *is_coordinator=False, *is_end_device=True, *is_full_function_device=False, *is_mains_powered=False, *is_receiver_on_when_idle=False, *is_router=False, *is_security_capable=False)",
"endpoints": { "1": { "profile_id": 260, "device_type": "0x0402", "in_clusters": [ "0x0000", "0x0001", "0x0003", "0x0020", "0x0500", "0x0b05" ],
"out_clusters": [ "0x0019" ] } }, "manufacturer": "lk", "model": "ZB-DoorSensor-D0003", "class": "zigpy.device.Device" }
Should work. Does it have any external buttons? Any way to keep it awake during reconfiguration?
no
I mean it's a door sensor so i just move the magnet away from it etc
but it still fails
It probably fails because the sensor is asleep. Try rejoining it but keep it awake.
what do you mean?
I have removed and readded it like 3 times
I have not tried initializing pairing mode while doing a reconfig though, that wat you mean?
No, I mean that reconfiguration is just re-initializing the sensor. If it fails, the sensor likely went to sleep before ZHA has a chance to setup binding and attribute reporting to make it work.
so should i try and move the magnet back and forth during the whole setup?
that would mean the thing goes to sleep rather quickly lol
It means exactly that
That's what you get for buying crap @fossil spear 
Has anyone got lucky with setting up conbee ii to zigbee2mqtt? in HA i have google like a maniac but it's almost nothing worth reading.
@austere patioGot them working. It was a two pack so I got frustrated and decided to try the second one and it paired and started working instantly, so I removed the first one and readded it and it started working. no idea what that was about
That's what you get for buying zigbee - fixed
Nah, Xiaomi/aqara is golden
Is it possible to have home assistant show the correct status of a ZigBee light that was adjusted by a mqtt message?
I have Christmas lights which support 16 modes, but none of these modes are exposed so the only way to use them is adding buttons with mqtt messages, however the light status itself isn't aware of the changes bekend done, and will show the incorrect color, brightness, etc, even won't show the on/off state
Assuming you mean Zigbee2MQTT, then HA shows whatever is on the MQTT topics
Yes Zigbee2mqtt, its not showing the topic set for the light
Is there anyway to see the set topic?
it's not showing in the z2m ui either so I guess some things are missing in its converter(?)
I used this button https://www.toptal.com/developers/hastebin/bepofefoza.makefile
And the UI showed the light as off, when i turned it on through home assistant it reports the light as being white
Hello !
Just got a pair of hue bulbs.
I already have zigbee2mqtt working well.
Should I use the hue bridge and integration, or zigbee2mqtt directly.
I've read that the hue integration is fast now.
Z2M
Is the light entity even capable of reading this mqtt topic
does endpoint mean the devices aren't meshing and just connecting to the coordinator directly or do they just mesh out of the box automatically?
is endpoint the same as enddevice?
oh nm i see, enddevice is a type that don't route messages
Where are you seeing endpoint?
I thought I saw endpoint, it says enddevice
I know jack about zigbee. wasn't sure If I had to add them to a cluster to make them mesh but apparently it's just the devices that have to support it from the sounds of it
Clusters in Zigbee aren't related to the mesh itself, they're bundles of functionality. For example, the on/off cluster has commands and attributes controlling the on/off functionality for a device.
is anyone here using "friends of hue switches" (gira / senic in this case)?
it seems like i was stupid enough to install them everywhere in our house - and they're very unreliable 🥵
Are those the Zigbee green power ones that don't use batteries?
yes
sounded better than the hue wall switches
i found 3 different issues with them:
- some switches don't seem to send commands on every button press
- many switches report combination presses when just hitting one rocker "press_2_and_4" when i just hit "4"
- quite often the "press" messages are lost, then they only report "release_2" and omit the "press_2" message
my wife is mad and i'm mad as well because they cost a fortune 🙄
I assume you're using Z2M. Do the problem switches show what "parent" router (I think it's called a Green Power proxy) they're using?
yes, Z2M. and i don't find any information on the receiving entity / ZGP proxy
i think it's just sending a signal and hopes any capable device (only hue?) picks it up and relays it?
You're right
@austere patio you might be correct, those switches closest to a hue device work best (i'm talking about 2m vs 5m plain air distance - their signals seem really weak). so i need to place more lights or other hue repeaters-
but there is still the issue with incorrect presses reported
hey im running into a strange problem with a zigbee light i just got (just one ikea tradfri bulb for now) im using ZHA with a CC2531 usb dongle
the problem im running into is that when changing the zigbee light with a scene it only half changes to the new state
say i have a scene that sets the light to 80% red but its currently at 100% white (NOT set by a scene) this works the light changes as expected
but if i have a scene that sets the light to 80% red but its currently at 100% white (set by a scene) the light changes to a halfway mix of both colors and the brightness changes correctly
then if you activate the scene a second time the color changes correctly
it only happens when changing from a scene to another scene
and quite frankly im confused as heck and i dont know how to debug this
as my wifi connected lights change correctly i expect that this a problem caused by either the zigbee bulb firmware / zha intergration / cc2531 dongle
but i really got no clue
the light entity in HA shows as the correct color and brightness even if it the bulb has not changed correctly
@knotty frost do you have ZHA logging enabled and what do the logs say?
https://www.home-assistant.io/integrations/zha/#debug-logging
alright i was looking in the log and dont see anything odd but im not really sure what im looking for
thats the output i can see thats related to the activating the scene and the bulb not fully changing
it changed to the correct brightness but color did not change
i noticed sometimes it does work so it could it be a signal thing?
i mean i hope not its like 1m open air between the 2 devices
but i suppose something could be intefering
ive also noticed the rgb color wheel seems to be linked with white spectrum
trying to set a teal just sets solid white
so im thinking thats probably related
From my experience some devices are just weird like that and you’ll need to trial and error on different lightbulb models to find one that works well. Bad signal quality can also cause weird behaviour like this.
yea
im gonna try changing my network to a different channel as its on the default right now and 100% overlapping my wifi
Could help. Also have you tried using service calls instead of scenes to control your lightbulb? For example using the light turn on service
its 1 bulb
its a scene because its restoring colour settings across multiple different types of lights
Changing the channel isn't possible at the moment without re-joining every device
And will have to be done with a command line utility (https://github.com/zigpy/zigpy-znp/blob/dev/TOOLS.md#network-backup) by editing the channel in the JSON
really?
The ZHA channel setting won't take effect unless a new network is being formed, so you can either do the backup/restore or re-flash your coordinator firmware to erase all the settings
i saw you can set a channel for zigpy in the configuration.yaml file
oh so i cant just change it in configuration then form a new network somehow
id have to reflash the dongle firmware?
The "form a new network" part isn't doable without re-flashing or doing the backup thing
ah seems like a pain
ill try some other stuff first then
if it comes to it i will
Reflashing takes like 30s with the serial bootloader flashing utility
just trying out on ota upgrade on the bulb i have
ah nevermind its already up to date
just switched to zigbee2mqtt from zha and its all solved now
Anybody have the tuya vibration sensors?
eheh crasy price for zigbee door sensors 😄 4 = 4.25€ each
https://s.click.aliexpress.com/e/_A4Ep6y
and you always get what you pay for 😉
actually their are good xD
mhm...sure...
i can show you if you want
now i'm curious as to how
by my webcam and video chat
how will that show me whether they're good?
or from my youtube channel
I'm wondering if there are any in-wall dimmers that can work as power usage meters too?
unless by good you mean: working currently
if i recall correctly, yes a few
You can't tell if things are good until they've had time in use
Things that appear good can turn out to be crap
#sonoff
Like the Tuya water leak sensors, which eat batteries like there's no tomorrow
Or the Konke sensors that also go through batteries pretty fast - compared to Xiaomi anyway
i can repost after a year if you want
the only good "Tuya" device is the BW-SHP13 plug
or you don't repost in a year 🤣
acctually, I need to open one to see if they are exactly one that ive got a year ago and still work without change battery
I will check it tonight
knowing tuya, those devices will either be unavailable or have changed their internals 3 times in a year
Hey guys, I'm looking to roll my own doorbell setup, via zigbee, Can anyone recommend a discreet zigbee button that can be used outdoors?
i use a regular outdoor momentary switch hooked to a door sensor
Your options will vary according to where in the world you are too - what works fine in countries with moderate climate may not work in others
i do have a sonoff button outside which still didn't corrode
Sensor on the inside with standard doorbell button on the outside is likely to be a longer term solution
that's been working for me for over two years
how does that work then, you have the doorbell wired to a switch ?
trying to work out where to place the 'smart' part of it basically
doorbell is the part that rings, there's always a momentary button/switch connected to it
you disconnect the ringy part and connect a sensor using existing wiring that will tell you when the button/switch is pressed
there's also versions with a relay where you keep the existing doorbell
aye i get ya now,
makes perfect sense , didn't think to look into it from that angle
cheers
Hello everyone when i try setting up zigbee2mqtt i get error msg the usb im using is conbee ii and it stands that it's supported the msg i get is: Error: Failed to connect to the adapter (Error: SRSP - SYS - ping after 6000ms)
at ZStackAdapter.start (/app/node_modules/zigbee-herdsman/src/adapter/z-stack/adapter/zStackAdapter.ts:102:27)
at Controller.start (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:123:29) anyone got any good ide? ive tried for 2 days already and im just sat up a new HA in virtualbox to test again
Did you add the setting to tell it you're using a ConBee stick?


