# Developer Page Z-wave topology

**URL:** https://community.homey.app/t/developer-page-z-wave-topology/3350
**Category:** Questions & Help
**Created:** [October 28, 2018, 6:29am UTC](https://community.homey.app/t/developer-page-z-wave-topology/3350 "2018-10-28T06:29:57Z")
**Posts on this page:** 19
**Page:** 2

<div class="post-metadata">

### Author: ![Rasmus\_Beyron](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/rasmus_beyron/32/1834_2.png) [@Rasmus\_Beyron](https://community.homey.app/u/Rasmus_Beyron)
#### Post date: [November 7, 2018, 6:00pm UTC](https://community.homey.app/t/developer-page-z-wave-topology/3350/21 "2018-11-07T18:00:27Z")

</div>

This.

---

<div class="post-metadata">

### Author: ![Caseda](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/caseda/32/138695_2.png) [@Caseda](https://community.homey.app/u/Caseda)
#### Post date: [November 7, 2018, 7:35pm UTC](https://community.homey.app/t/developer-page-z-wave-topology/3350/22 "2018-11-07T19:35:23Z")

</div>

for easier reference what @Rasmus_Beyron got as answer via the mail (as the attachment he added in his e-mail reply is a little hard to see/find/read)

> Good evening Klas,
> 
> Thank you for your mail and for reporting this issue. We are aware of this and we will solve this as soon as possible once we find time for it. I am sorry for the inconvenience.
> 
> Best Regards,
> 
> Gijs
> 
> Athom Support

---

<div class="post-metadata">

### Author: ![JaapS](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/jaaps/32/1899_2.png) [@JaapS](https://community.homey.app/u/JaapS)
#### Post date: [November 7, 2018, 8:40pm UTC](https://community.homey.app/t/developer-page-z-wave-topology/3350/23 "2018-11-07T20:40:43Z")

</div>

Thanks Caseda! At least we know the issue will be addressed.

---

<div class="post-metadata">

### Author: ![Lammy](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/lammy/32/11436_2.png) [@Lammy](https://community.homey.app/u/Lammy)
#### Post date: [November 12, 2018, 2:41am UTC](https://community.homey.app/t/developer-page-z-wave-topology/3350/24 "2018-11-12T02:41:03Z")

</div>

The developer-\>Tools-\>Z-Wave page is calling getFailedNodes(), a function that consumes a lot of time per device and always ends up in one or two different time-out errors. While getFailedNodes() awaits completion, all outgoing z-wave calls are timed-out and lost. Incoming z-wave notifications are received and handled.  
I’m sure it gets fixed within the next decade (sorry, pun intended), but in the meantime you can copy the following code and paste it in ‘[https://developer.athom.com/tools/api-playground](https://developer.athom.com/tools/api-playground)’ and get some familiar info.

> ```
> Homey.zwave.runCommand({ command: "getNetworkTopology"})
> .then(async function(nodes) {
> var txt='';
> var stats;
> await Homey.zwave.getState().then(function (s) { stats = s.zw_state.stats; });
> _.forEach(nodes, function (node, key) {
> txt += '\n' + key + ' ' + node.name;
> if (node.props.route != undefined && node.base == undefined) {
> txt += '\n\troute: ' + key + '=>'; 
> for (var r = node.props.route.shift(); r != undefined; r = node.props.route.shift())
> if (r != 0) txt += r + '=>';
> txt += ' 1';
> }
> var stat = stats['node_' + key + '_network'];
> if (stat != undefined && stat.tx != 0) {
> txt += '\n\ttx: ' + stat.tx + ' err: ' + stat.tx_err + ' (' + Math.round(100*stat.tx_err/stat.tx) + '%) rx: ' + stat.rx;
>                   
> }
> if (txt.length > 1900) {
> // Sorry, I am a bit lazy
> alert (txt);
> txt = '';
> }
> });
> alert(txt);
> });
> 
> ```

---

<div class="post-metadata">

### Author: ![BadUncleJessy](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/badunclejessy/32/12435_2.png) [@BadUncleJessy](https://community.homey.app/u/BadUncleJessy)
#### Post date: [November 12, 2018, 8:41am UTC](https://community.homey.app/t/developer-page-z-wave-topology/3350/25 "2018-11-12T08:41:25Z")

</div>

Exact same symptons here as well.

---

<div class="post-metadata">

### Author: ![Joakim\_Ollila](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/joakim_ollila/32/12516_2.png) [@Joakim\_Ollila](https://community.homey.app/u/Joakim_Ollila)
#### Post date: [November 14, 2018, 9:59am UTC](https://community.homey.app/t/developer-page-z-wave-topology/3350/26 "2018-11-14T09:59:19Z")

</div>

Hello,

I needed to move my homey and did want to build the zwave network again so it works. But then I find this… Is there some way to make homey build it again? Other than to wait until they fix this and then “heal”?

---

<div class="post-metadata">

### Author: ![Jeroen\_Somhorst](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/jeroen_somhorst/32/184_2.png) [@Jeroen\_Somhorst](https://community.homey.app/u/Jeroen_Somhorst)
#### Post date: [November 14, 2018, 11:45am UTC](https://community.homey.app/t/developer-page-z-wave-topology/3350/27 "2018-11-14T11:45:34Z")

</div>

Reboot?

---

<div class="post-metadata">

### Author: ![Joakim\_Ollila](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/joakim_ollila/32/12516_2.png) [@Joakim\_Ollila](https://community.homey.app/u/Joakim_Ollila)
#### Post date: [November 14, 2018, 12:00pm UTC](https://community.homey.app/t/developer-page-z-wave-topology/3350/28 "2018-11-14T12:00:54Z")

</div>

That didn’t help. Or then it takes ages. Can I check on it somewhere?

---

<div class="post-metadata">

### Author: ![Jeroen\_Somhorst](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/jeroen_somhorst/32/184_2.png) [@Jeroen\_Somhorst](https://community.homey.app/u/Jeroen_Somhorst)
#### Post date: [November 14, 2018, 12:23pm UTC](https://community.homey.app/t/developer-page-z-wave-topology/3350/29 "2018-11-14T12:23:52Z")

</div>

The zwave page isn’t working currently and will be fixed in the future. A reboot should force homey to rebuild the network.

Is there a specific reason you want to rebuild/heal?

---

<div class="post-metadata">

### Author: ![Joakim\_Ollila](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/joakim_ollila/32/12516_2.png) [@Joakim\_Ollila](https://community.homey.app/u/Joakim_Ollila)
#### Post date: [November 14, 2018, 12:38pm UTC](https://community.homey.app/t/developer-page-z-wave-topology/3350/30 "2018-11-14T12:38:50Z")

</div>

Yeah I moved it about 40meters. But it takes some time to heal. I’ll check tomorrow how it works.

Joakim

---

<div class="post-metadata">

### Author: ![Morgan](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/morgan/32/15416_2.png) [@Morgan](https://community.homey.app/u/Morgan)
#### Post date: [November 19, 2018, 4:15pm UTC](https://community.homey.app/t/developer-page-z-wave-topology/3350/31 "2018-11-19T16:15:32Z")

</div>

I can see the routing again.  
(But still getting error messages.)

---

<div class="post-metadata">

### Author: ![Mario\_Me](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/mario_me/32/12703_2.png) [@Mario\_Me](https://community.homey.app/u/Mario_Me)
#### Post date: [March 19, 2019, 9:16am UTC](https://community.homey.app/t/developer-page-z-wave-topology/3350/32 "2019-03-19T09:16:10Z")

</div>

> [@Caseda](#):
>
> Thank you for your mail and for reporting this issue. We are aware of this and we will solve this as soon as possible once we find time for it. I am sorry for the inconvenience.

Well… eehm… I don’t feel like the issue has been solved… I feel very sorry to disturb the silence in the office but - would it be perhaps possible to eeehm I mean just in case you don’t feel to much pushed - as it shouldn’t get stress or even feel like a job you get paid for - TAKE the time to do the work?!? 😨🤯😠

---

<div class="post-metadata">

### Author: ![Caseda](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/caseda/32/138695_2.png) [@Caseda](https://community.homey.app/u/Caseda)
#### Post date: [March 19, 2019, 9:30am UTC](https://community.homey.app/t/developer-page-z-wave-topology/3350/33 "2019-03-19T09:30:08Z")

</div>

Athom does not read this community forum, so if you want to “push” them you’ll have to email support.

I never seen a message that it was already fixed either, so makes sense that it isn’t fixed yet, there are many more things that needs to be fixed, not just this issue.

And also please quote the entire message, now it seems it was me who said it, which is not the case.

---

<div class="post-metadata">

### Author: ![Mario\_Me](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/mario_me/32/12703_2.png) [@Mario\_Me](https://community.homey.app/u/Mario_Me)
#### Post date: [March 19, 2019, 9:44am UTC](https://community.homey.app/t/developer-page-z-wave-topology/3350/34 "2019-03-19T09:44:41Z")

</div>

🤷‍♂️ Yeah, sorry - you’re right, but:

Honestly - I pushed so many messages to Athom during the last 18 months - I’m running out of energy and enthusiasm, as I once decided to be a user and I’d like to remain being a user and not to get involved to much in their business; just expecting them to do it that pro way.

---

<div class="post-metadata">

### Author: ![PetervdK](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/petervdk/32/20669_2.png) [@PetervdK](https://community.homey.app/u/PetervdK)
#### Post date: [March 19, 2019, 2:29pm UTC](https://community.homey.app/t/developer-page-z-wave-topology/3350/35 "2019-03-19T14:29:52Z")

</div>

18 months? 🤨 This problem was reported in October '18 and is already solved afaik. At least, a week later it worked again and has been working since… 🤔

---

<div class="post-metadata">

### Author: ![Mario\_Me](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/mario_me/32/12703_2.png) [@Mario\_Me](https://community.homey.app/u/Mario_Me)
#### Post date: [March 19, 2019, 2:51pm UTC](https://community.homey.app/t/developer-page-z-wave-topology/3350/36 "2019-03-19T14:51:11Z")

</div>

I didn’t say I pushed messages to them regarding only THAT specific issue 😉

And if it’s been fixed - then it may be just back and occurring again. 🤷‍♂️

---

<div class="post-metadata">

### Author: ![Martijn\_C](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/martijn_c/32/39993_2.png) [@Martijn\_C](https://community.homey.app/u/Martijn_C)
#### Post date: [December 27, 2021, 10:14pm UTC](https://community.homey.app/t/developer-page-z-wave-topology/3350/37 "2021-12-27T22:14:50Z")

</div>

Although an issue from three years ago, this started appearing since a few weeks. A lot of “getFailedNodes” commands in de log which causes Homey to go offline. It seems like most automated requests are still handled but Homey is unreachable for 5-10 minutes. This is happening about 10 times a day… Is the bug introduced again or is it just my system?

---

<div class="post-metadata">

### Author: ![Lammy](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/lammy/32/11436_2.png) [@Lammy](https://community.homey.app/u/Lammy)
#### Post date: [December 31, 2021, 12:05am UTC](https://community.homey.app/t/developer-page-z-wave-topology/3350/38 "2021-12-31T00:05:47Z")

</div>

My Homey and zwave network are working rock solid for months now (knock on wood). 61 zwave devices here and zero tx errors. Same thing for 33 zigbee devices, so at the moment I’m quite happy with Homey.  
I can’t say if it is just your system or not, but I can say mine is working just fine.  
Perhaps one of your zwave devices is bothering the mesh network. For instance by intermittently participating in the network. Check the Z-Wave page on Developer Tools and see if a device stands out with a high Tx Error count.

---

<div class="post-metadata">

### Author: ![Martijn\_C](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/martijn_c/32/39993_2.png) [@Martijn\_C](https://community.homey.app/u/Martijn_C)
#### Post date: [December 31, 2021, 8:23am UTC](https://community.homey.app/t/developer-page-z-wave-topology/3350/39 "2021-12-31T08:23:04Z")

</div>

Yeah, same here. For over a year everything went smooth. I have 144 Z-Wave devices and none of them are giving large amounts of errors or ar unknown. It’s really weird.

[Previous page](https://community.homey.app/t/developer-page-z-wave-topology/3350.md?page=1)
