Search found 59 matches

by QNTL
Tuesday 02 May 2023 7:30
Forum: Other questions and discussions
Topic: custom icons
Replies: 42
Views: 9590

Re: custom icons

Do you see errors in the console when enabling the browser development tool (F12 in most browsers)? Do you see any related errors in the Domoticz log file? Hello, I see two errors when getting to my domoticz page, but I'm unable to link this to the specific function. Maybe someone can tell ...
by QNTL
Monday 01 May 2023 20:06
Forum: Other questions and discussions
Topic: custom icons
Replies: 42
Views: 9590

Re: custom icons

No, the custom icons are added into the database. This way you keep them in your backup. (And the images folder should be writable but thats default) Did you try another browser? I just tried with the edge browser, no issues Also try in a private mode to ensure it is not a caching issue I did try ...
by QNTL
Sunday 30 April 2023 14:23
Forum: Other questions and discussions
Topic: custom icons
Replies: 42
Views: 9590

Re: custom icons

Seems to me your zip file content is not correct. Try uploading attached custom icon file. I downloaded your .zip. same result. I've always used this site https://domoticz-icon.aurelien-loyer.fr/ . I have a couple of custom icons, but new ones just don't get added. And if i delete the custom icons ...
by QNTL
Saturday 29 April 2023 23:41
Forum: Other questions and discussions
Topic: custom icons
Replies: 42
Views: 9590

Re: custom icons

What is exactly the problem you have on what version of Domoticz? I can upload custom icons without issues on latest stable and beta. The problem is that the upload button doesn't do anything. There is so icon being uploaded. I can use custom icons by adding them manually, but with every update of ...
by QNTL
Saturday 29 April 2023 17:56
Forum: Other questions and discussions
Topic: custom icons
Replies: 42
Views: 9590

Re: custom icons

JuanUil wrote: Tuesday 09 August 2022 17:00 somebody found a solution for the problem allready?
Since you had issues with this as well, I'm asking you the same question. I still haven't found a solution for this, months later. Maybe you or someone else?
by QNTL
Saturday 29 April 2023 15:28
Forum: Cameras
Topic: Camera motion detection to trigger device (IMOU)
Replies: 30
Views: 12641

Re: Camera motion detection to trigger device (IMOU)

Maybe it is reserverd for those who have the IMOU cloud subscription?
But no, unfortunately it is just the RTSP stream..
by QNTL
Saturday 29 April 2023 14:42
Forum: Cameras
Topic: Camera motion detection to trigger device (IMOU)
Replies: 30
Views: 12641

Re: Camera motion detection to trigger device (IMOU)

I'm just using the RTSP stream in combinatie with ffmpeg to make the videos. I'll delete the file after 30 seconds or so. It is a script to store the video in a direction on my pi. I have it so, that if Video1.mp4 is already present in the folder, it automatically renamed the file to Video2.mp4 if ...
by QNTL
Saturday 29 April 2023 14:18
Forum: Cameras
Topic: Camera motion detection to trigger device (IMOU)
Replies: 30
Views: 12641

Re: Camera motion detection to trigger device (IMOU)

Great, Then I think the search is over. What I have achieved: My IMOU cam, sends a message to Node-Red. Node-Red triggers a device in Domoticz. When the device is triggered, I see it in the Domoticz log. Also, when the device is triggered, it starts a script, making a video. The video gets send ...
by QNTL
Saturday 29 April 2023 11:30
Forum: Cameras
Topic: Camera motion detection to trigger device (IMOU)
Replies: 30
Views: 12641

Re: Camera motion detection to trigger device (IMOU)

I still have that error :( But.. I've looked into another option. Putting a switch node after the message. where the property is 'msg.payload.labelType' == motionAlarm. After that node i've made a http request, which is just a json call to my domoticzs server http://user:password@domoticzip ...
by QNTL
Saturday 29 April 2023 10:33
Forum: Cameras
Topic: Camera motion detection to trigger device (IMOU)
Replies: 30
Views: 12641

Re: Camera motion detection to trigger device (IMOU)

The code in the function node is uneddited from the export you've shared: // Build Domoticz MQTT message when motionAlarm msgd = null; if (msg.payload.labelType == "motionAlarm" ) { // {"command": "switchlight", "idx": 236, "switchcmd": "On" } msgd = {}; msgd.payload = {}; msgd.payload.command ...
by QNTL
Saturday 29 April 2023 9:23
Forum: Cameras
Topic: Camera motion detection to trigger device (IMOU)
Replies: 30
Views: 12641

Re: Camera motion detection to trigger device (IMOU)

I've added the debug window.

Image

Whenever I don't press the 'function' node, it is fine. But when i double click on it, it shows this error code:

Image
by QNTL
Friday 28 April 2023 22:14
Forum: Cameras
Topic: Camera motion detection to trigger device (IMOU)
Replies: 30
Views: 12641

Re: Camera motion detection to trigger device (IMOU)

Hi, Thanks for the help once more. I tried it very quick. I've added the code, but it doesn't seem to work. I get this: TypeError: Cannot read property 'payload' of null I'll search for a solution and report back when I have one. If you know what is the issue, feel free to share it. Strange that it ...
by QNTL
Thursday 27 April 2023 21:59
Forum: Cameras
Topic: Camera motion detection to trigger device (IMOU)
Replies: 30
Views: 12641

Re: Camera motion detection to trigger device (IMOU)

Great to hear you got it working so fast! The rest is just filtering the data in NodeRed and creating an MQTT or HTTP Json request for Domoticz which actually is the easy part as is pretty common stuff for many. ;) You can for example trigger an Dummy Alarm switch for each defined Camera and ...
by QNTL
Thursday 27 April 2023 20:45
Forum: Cameras
Topic: Camera motion detection to trigger device (IMOU)
Replies: 30
Views: 12641

Re: Camera motion detection to trigger device (IMOU)

Okay, yeah, great. I'm there :D I see a lot in the debug, so now it is time for me to figuere out how to get them do do anything in domoticz. I haven't used NodeRed before (even though it is strongly suggested by some on this site). I'll try myself first, but if I'm back, i hope you guys can help :)
by QNTL
Thursday 27 April 2023 15:33
Forum: Cameras
Topic: Camera motion detection to trigger device (IMOU)
Replies: 30
Views: 12641

Re: Camera motion detection to trigger device (IMOU)

I have the IMOU motion detection linked to Domoticz by using an option they have on their website: https://open.imoulife.com/consoleNew/vas/messagePush This will send a pushmessage to the specified external-IP/port when an event occurs, which I have mapped to my Nodered Server and have a Nodered ...
by QNTL
Thursday 27 April 2023 14:04
Forum: Cameras
Topic: Camera motion detection to trigger device (IMOU)
Replies: 30
Views: 12641

Re: Camera motion detection to trigger device (IMOU)

Hi @QNTL, If you are familiar with Node-RED. you may want to look at: https://flows.nodered.org/node/node-red-contrib-dahua-device And perhaps, this may be interesting as well: https://ipcamtalk.com/threads/dahua-cameras-node-red.44722/ And: https://www.domoticz.com/forum/viewtopic.php?t=33882 ...
by QNTL
Sunday 23 April 2023 20:40
Forum: Cameras
Topic: Camera motion detection to trigger device (IMOU)
Replies: 30
Views: 12641

Re: Camera motion detection to trigger device (IMOU)

Hi, I'll look into both options (whenever i've got time). Just wanted to tell there i've found a way. From MotionEye, you can run a command. With that, it can trigger a script, which will swith a devices with a specific IDX on. #!/usr/bin/env python3 import requests DOMOTICZ_IP = '192.168.X.X ...
by QNTL
Sunday 23 April 2023 17:16
Forum: Cameras
Topic: Camera motion detection to trigger device (IMOU)
Replies: 30
Views: 12641

Re: Camera motion detection to trigger device (IMOU)

Okay, Tried another route. I've installed MotionEye. All set up on my raspberry. When there is motion, can get notifications. Either send a email(works), Call a webhook, Run a command or Run an end command. I tried: http://<domoticz-ip/json.htm?type=command&param=switchlight&idx=236&switchcmd=On But ...
by QNTL
Sunday 23 April 2023 8:25
Forum: Cameras
Topic: Camera motion detection to trigger device (IMOU)
Replies: 30
Views: 12641

Re: Camera motion detection to trigger device (IMOU)

So, if I understand correctly, this would be a function only for people with a subscription?
I don't have that (won't get it either) so this will never happen for me?

I thought, since it doesn't save the videos on the cloud, but only a notification, it could be free.
by QNTL
Saturday 22 April 2023 19:35
Forum: Cameras
Topic: Camera motion detection to trigger device (IMOU)
Replies: 30
Views: 12641

Re: Camera motion detection to trigger device (IMOU)

In the developers console, there is a Message Push Service.

Set Your Callback Address. Imou Cloud Will Push The Corresponding Message To The Callback Address Once Triggerred

It talks about a Callback Address. Maybe that can help ?