Search found 184 matches

by Vomera
Sunday 28 January 2024 21:15
Forum: Dashticz
Topic: Weather radar
Replies: 3
Views: 2129

Re: Weather radar

Thanks Vomera! I have it working now, but because sat24 isn't allowing iframe, I had to work around this and I used PHP for it. So I have weerradar_load.php: <?php echo file_get_contents("https://www.sat24.com/nl-nl/city/5575/hd#selectedLayer=euRadarSat&lightning=on"); ?> weerradar.php <iframe id ...
by Vomera
Friday 26 January 2024 15:35
Forum: Dashticz
Topic: Weather radar
Replies: 3
Views: 2129

Re: Weather radar

I am trying to get a weather radar (https://www.sat24.com/nl-nl/city/5575/hd#selectedLayer=euRadarSat&lightning=on) on Dashticz, but so far I am unable to. When following the instructions on https://dashticz.readthedocs.io/en/beta/blocks/specials/html.html, only the text Weerradar is showing. This ...
by Vomera
Wednesday 24 January 2024 19:25
Forum: Temperature and Weather
Topic: Weather alarm from Royal Netherlands Meteorological Institute (KNMI)
Replies: 38
Views: 29560

Re: Weather alarm from Royal Netherlands Meteorological Institute (KNMI)

I guess its working now because see this in the logging. I wil change it back to general alert (use it with the previous script).

Image
by Vomera
Monday 22 January 2024 15:35
Forum: Temperature and Weather
Topic: Weather alarm from Royal Netherlands Meteorological Institute (KNMI)
Replies: 38
Views: 29560

Re: Weather alarm from Royal Netherlands Meteorological Institute (KNMI)

Yeh i make it run :lol: :lol: After a lot of fiddling around how to read an XML file (I had no knowledge of it at all), I managed to read and parse the data from the weather warning file. The problem was to only extract the data that was relevant for a province and not the data for the entire ...
by Vomera
Friday 06 January 2023 14:24
Forum: Python
Topic: [REQUEST] Ikea Trådfri Gateway (smart lights hub controller) plugin?
Replies: 951
Views: 181667

Re: [REQUEST] Ikea Trådfri Gateway (smart lights hub controller) plugin?

I do not see anything strange here... Only for a scene you can also use the normal Domoticz scene function as you should be able to change the color of individual devices too... Perhaps it speeds things up... Yeah thats the thing, it is not a strange behavour, but slow, to activate all lights it ...
by Vomera
Friday 06 January 2023 14:03
Forum: Python
Topic: [REQUEST] Ikea Trådfri Gateway (smart lights hub controller) plugin?
Replies: 951
Views: 181667

Re: [REQUEST] Ikea Trådfri Gateway (smart lights hub controller) plugin?

Here some more logging, the logging before i only filtered at ikea plugin. The scene is activated and dzvents will run, i use dzvents because i need to change the color as well. return { on = { scenes = { 'Woonkamer Aan' } }, logging = { level = domoticz.LOG_INFO, marker = 'template', }, execute ...
by Vomera
Friday 06 January 2023 13:18
Forum: Python
Topic: [REQUEST] Ikea Trådfri Gateway (smart lights hub controller) plugin?
Replies: 951
Views: 181667

Re: [REQUEST] Ikea Trådfri Gateway (smart lights hub controller) plugin?

Is the plugin still in development ? The lights are very slow with responding when i activate a scene in domoticz. Feels like they are being queued and go in order on/off. When i press a button in my living room, sometimes it doesnt respond at all or like 10/15 seconds later. In the mean time i ...
by Vomera
Tuesday 03 January 2023 15:16
Forum: iOS
Topic: Pilot: Home Automation Control (iOS app)
Replies: 1000
Views: 245711

Re: Pilot: Home Automation Control (iOS app)

Hi all:) Maybe someone in the forum knows about this problem. With ios 16 the widgets are rarely show the value's. Before it worked perfectly. Here are some screenshots https://i.imgur.com/paPZmlk.png https://i.imgur.com/iRcuQyg.png I contacted Patrick, but no response. I deleted pilot and the ...
by Vomera
Thursday 23 June 2022 20:59
Forum: Other questions and discussions
Topic: Domoticz/out on mqtt plugin
Replies: 13
Views: 2046

Re: Domoticz/out on mqtt plugin

Hi all! In the hardware tab > Mqtt i want to set , prevent loop to false, but it doesnt save the setting. If i refresh the mqtt settings its back to TRUE https://i.imgur.com/gX30pu1.png I removed the MQTT settings and added the plugin again, but after set it to false, it doesnt save the setting. If ...
by Vomera
Thursday 17 February 2022 17:17
Forum: Dashticz
Topic: Trigger on different text values
Replies: 5
Views: 887

Re: Trigger on different text values

I test it too, thats an other way to implement it. i was already looking to combine 2 function names

edit: test it, and it works
by Vomera
Thursday 17 February 2022 16:52
Forum: Dashticz
Topic: Trigger on different text values
Replies: 5
Views: 887

Re: Trigger on different text values

Okay with loading the dashboard i need to use the code function getStatus_14146(block) But if there will be a new update, it doesnt change. So i figure out that you also need to use the function getChange_14146(block) It means i have to copy for getStatus as also for the getChange . If i have 100 ...
by Vomera
Tuesday 15 February 2022 16:04
Forum: Dashticz
Topic: Trigger on different text values
Replies: 5
Views: 887

Re: Trigger on different text values

Here is example that works: function getStatus_14146(block){ var idx = block.idx; var device = block.device; var tekst = device['Data']; if(device['Data']=="No Data"){ block.addClass='none' block.icon = 'far fa-thumbs-up' } // geen actie else if (tekst.includes('geen waarschuwingen')){ block ...
by Vomera
Sunday 06 February 2022 12:27
Forum: Dashticz
Topic: Trigger on different text values
Replies: 5
Views: 887

Trigger on different text values

Hi All, I saw Meteoalarm didnt work anymore. So i got a new script that i found on this https://www.domoticz.com/forum/viewtopic.php?t=37919 (thank you for that) With Meteoalarm i always trigger on text value. For example meteoalarm gives me Wind(3) or Wind(2) (Every time the same text value's), i ...
by Vomera
Sunday 06 February 2022 12:02
Forum: Dashticz
Topic: Change icon coulour and text based on value
Replies: 1
Views: 770

Re: Change icon coulour and text based on value

You can try with

Code: Select all

.alertnormal .title {
    color: green !important;
}
or

Code: Select all

.alertnormal .value {
    color: green !important;
}
by Vomera
Friday 04 February 2022 16:18
Forum: Temperature and Weather
Topic: Weather alarm from Royal Netherlands Meteorological Institute (KNMI)
Replies: 38
Views: 29560

Re: Weather alarm from Royal Netherlands Meteorological Institute (KNMI)

Tnx for this! It's the first time i use node red. Didnt know i had it install it (but i use mqtt). After some trying and figuring out how it works, i get the script working :D Now indeed see which results it will give, because i want to use the value's with dashticz to give warning weather icons :D ...
by Vomera
Sunday 16 May 2021 11:41
Forum: Dashticz
Topic: custom.js Status of other device?
Replies: 10
Views: 991

Re: custom.js Status of other device?

I expect the addClass setting for device 3962 is reinitialized when device 3962 is updated. You could request the data for device 9450 from the function getStatus_3962. I would not put the functions within the afterGetDevices function: The idea is that the getStatus functions get called when the ...
by Vomera
Saturday 15 May 2021 19:38
Forum: Dashticz
Topic: custom.js Status of other device?
Replies: 10
Views: 991

Re: custom.js Status of other device?

I don't know if it's related to this subject, but i have also problem with status of an other object. When the website loads or when there is a new update from the block the colors are right, but after a whole minute the block will go to its normal state (no colors) See the screenshots below with ...
by Vomera
Friday 02 April 2021 21:24
Forum: Python
Topic: Python Plugin: TUYA
Replies: 507
Views: 109694

Re: Python Plugin: TUYA

EdwinK wrote: Friday 02 April 2021 10:26 I just noticed this appearing again, about every second.

2021-04-02 10:24:56.251 Error: Tuya: (Tuya) handleThread: Expecting value: line 1 column 1 (char 0) line 198
You can see if the answer above this post will help
by Vomera
Friday 02 April 2021 21:20
Forum: Python
Topic: Python Plugin: TUYA
Replies: 507
Views: 109694

Re: Python Plugin: TUYA

021-04-02 13:20:46.573 Error: (Tuya) handleThread: Expecting value: line 1 column 1 (char 0) line 198 Execute this and return the cli results sudo pip3 install tuyaha With Sudo command he said its already installed. So i tried to use the command pip3 install tuyaha . Tuya installed, maybe in the ...
by Vomera
Friday 02 April 2021 13:22
Forum: Python
Topic: Python Plugin: TUYA
Replies: 507
Views: 109694

Re: Python Plugin: TUYA

The second tuyaha is not needed with my version of the plug-in. I was mislead with the naming of the directory. You are using the version of guino in that version is has limited control of RGB. Can you try my version of the plug[in. https://github.com/Xenomes/Domoticz-TUYA-Plugin. Okay tried again ...