Zigbee2mqtt network map
Moderator: leecollings
-
- Posts: 39
- Joined: Saturday 03 February 2018 18:42
- Target OS: Raspberry Pi / ODroid
- Domoticz version: latest
- Contact:
Zigbee2mqtt network map
Simple network map for zigbee2mqtt plugin using custom template page
https://github.com/kovainfo/Domoticz-zi ... etwork-map
https://github.com/kovainfo/Domoticz-zi ... etwork-map
Last edited by ak97 on Sunday 05 April 2020 13:06, edited 1 time in total.
Re: Zigbee2mqtt network map
Nice. I have to get a workaround because 2020.1 does not work for me (yet) because of Zwave problems.
-
- Posts: 68
- Joined: Friday 12 December 2014 14:42
- Target OS: Raspberry Pi / ODroid
- Domoticz version: 2020.1
- Contact:
Re: Zigbee2mqtt network map
Domoticz 4.10717
I can see raw.json gets populated
However the custom panel under Zigbee is blank
I can see raw.json gets populated
However the custom panel under Zigbee is blank
-
- Posts: 22
- Joined: Thursday 15 November 2018 11:22
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: Zigbee2mqtt network map
I did also the install and facing same problem as Bigted.
Zigbee, KAKU, Hue, Google, Honeywell, MotionEye, Telegram, Tasmota, Shelly, IFTTT, etc
-
- Posts: 39
- Joined: Saturday 03 February 2018 18:42
- Target OS: Raspberry Pi / ODroid
- Domoticz version: latest
- Contact:
Re: Zigbee2mqtt network map
What OS and platform for Domoticz you use?
-
- Posts: 22
- Joined: Thursday 15 November 2018 11:22
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: Zigbee2mqtt network map
Domoticz v4.10935
Operating System: Raspbian GNU/Linux 9 (stretch)
Kernel: Linux 4.19.42-v7+
Zigbee, KAKU, Hue, Google, Honeywell, MotionEye, Telegram, Tasmota, Shelly, IFTTT, etc
-
- Posts: 39
- Joined: Saturday 03 February 2018 18:42
- Target OS: Raspberry Pi / ODroid
- Domoticz version: latest
- Contact:
Re: Zigbee2mqtt network map
Do you have a file:
/home/pi/domoticz/www/js/jquery-3.4.1.min.js
may be this file is missing in Domoticz less than v2020?
/home/pi/domoticz/www/js/jquery-3.4.1.min.js
may be this file is missing in Domoticz less than v2020?
-
- Posts: 22
- Joined: Thursday 15 November 2018 11:22
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: Zigbee2mqtt network map
I have this one
jquery-3.3.1.min.js
so the 3.4.1 is indeed missing
Zigbee, KAKU, Hue, Google, Honeywell, MotionEye, Telegram, Tasmota, Shelly, IFTTT, etc
-
- Posts: 39
- Joined: Saturday 03 February 2018 18:42
- Target OS: Raspberry Pi / ODroid
- Domoticz version: latest
- Contact:
Re: Zigbee2mqtt network map
ok! that's it!
try modify file in /templates/zigbeemap/zigbeemap.html
and change
try modify file in /templates/zigbeemap/zigbeemap.html
and change
to:<script type="text/javascript" src="/js/jquery-3.4.1.min.js"></script>
<script type="text/javascript" src="/js/jquery-3.3.1.min.js"></script>
-
- Posts: 22
- Joined: Thursday 15 November 2018 11:22
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: Zigbee2mqtt network map
Yep, I have images now! Great.
But.... I only see the orginal sensors. Your sensors. How do I get my sensors?
Zigbee, KAKU, Hue, Google, Honeywell, MotionEye, Telegram, Tasmota, Shelly, IFTTT, etc
-
- Posts: 39
- Joined: Saturday 03 February 2018 18:42
- Target OS: Raspberry Pi / ODroid
- Domoticz version: latest
- Contact:
Re: Zigbee2mqtt network map
1. Mosquitto clients are installed?
2. dzVents support is enabled in Domoticz?
3. you must create dzVents script from readme:
2. dzVents support is enabled in Domoticz?
3. you must create dzVents script from readme:
Code: Select all
return {
on = {
customEvents = {
'CreateZigbeeMap' -- event triggered by emitEvent
}
},
data = {},
logger = {},
execute = function(domoticz, triggeredItem)
function SendCommand()
cmd = "/home/pi/domoticz/www/templates/zigbeemap/zigbeemap.sh"
domoticz.utils.osExecute(cmd)
end
if (triggeredItem.isCustomEvent) then
domoticz.utils._.print(triggeredItem.data)
SendCommand()
end
end
}
-
- Posts: 39
- Joined: Saturday 03 February 2018 18:42
- Target OS: Raspberry Pi / ODroid
- Domoticz version: latest
- Contact:
Re: Zigbee2mqtt network map
may be need add eXecute attribute for /home/pi/domoticz/www/templates/zigbeemap/zigbeemap.sh:
Code: Select all
chmod +x /home/pi/domoticz/www/templates/zigbeemap/zigbeemap.sh
-
- Posts: 22
- Joined: Thursday 15 November 2018 11:22
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: Zigbee2mqtt network map
1. Yes
2. Yes
3. Maybe stupid question
Where should the file be located?
a. /home/pi/domoticz/scripts/dzVents/scripts or
b. /home/pi/domoticz/scripts/dzVents/generated_scripts
and what is the extension?
a. lua
b. dzvents
Thanks for your time/help
Zigbee, KAKU, Hue, Google, Honeywell, MotionEye, Telegram, Tasmota, Shelly, IFTTT, etc
-
- Posts: 39
- Joined: Saturday 03 February 2018 18:42
- Target OS: Raspberry Pi / ODroid
- Domoticz version: latest
- Contact:
Re: Zigbee2mqtt network map
1. Open Domoticz web-interfaceeleutscher wrote: ↑Sunday 05 April 2020 14:511. Yes
2. Yes
3. Maybe stupid question
Where should the file be located?
a. /home/pi/domoticz/scripts/dzVents/scripts or
b. /home/pi/domoticz/scripts/dzVents/generated_scripts
and what is the extension?
a. lua
b. dzvents
Thanks for your time/help
2. Setup -> More Options -> Events
3. Create dzVents envent
4. Copy&Paste content of script
-
- Posts: 22
- Joined: Thursday 15 November 2018 11:22
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: Zigbee2mqtt network map
1. Open Domoticz web-interface
2. Setup -> More Options -> Events
3. Create dzVents envent
4. Copy&Paste content of script
[/quote]
That is what I did. But still no luck. Could it be because ! am still on dzVents version: 2.4.24?
Zigbee, KAKU, Hue, Google, Honeywell, MotionEye, Telegram, Tasmota, Shelly, IFTTT, etc
-
- Posts: 39
- Joined: Saturday 03 February 2018 18:42
- Target OS: Raspberry Pi / ODroid
- Domoticz version: latest
- Contact:
Re: Zigbee2mqtt network map
Here is what I found:eleutscher wrote: ↑Sunday 05 April 2020 18:50 That is what I did. But still no luck. Could it be because ! am still on dzVents version: 2.4.24?
https://www.domoticz.com/wiki/Domoticz_ ... ents_3.0.0
Yes, dzVents must be a 3.0 and above
Maybe there is another way to call the script to create a network map, but I did not think about it. generating an event when opening a page is the easiest solution for me ...
Re: Zigbee2mqtt network map
I am on version 4.10717 and in that version CustomEvents where not implemented yet.
Who is online
Users browsing this forum: No registered users and 0 guests