There is no need for internet when using astro functions, just set the correct timezone in the time settings and alternative set the lon-lat in the time settings to have a slightly better precision on the location.
19.08.2018, 11:02 (This post was last modified: 19.08.2018, 11:03 by Ruslan25.)
(19.08.2018, 07:02)Erwin van der Zwart Wrote: Hi,
There is no need for internet when using astro functions, just set the correct timezone in the time settings and alternative set the lon-lat in the time settings to have a slightly better precision on the location.
BR,
Erwin
I have one more question:
Is it possible to have the same visualisation on the knx panel or other panel as on w4k without internet connection?
20.08.2018, 09:37 (This post was last modified: 20.08.2018, 09:39 by Erwin van der Zwart.)
Hi,
You can use a 100% KNX based panel, but then the project configuration is done by the panel itself and KNX (TP) will control and update the status of your buttons.
If you want to use the embedded web based visu from the controller then yes you will off course need to connect it over IP.
You can use a 100% KNX based panel, but then the project configuration is done by the panel itself and KNX (TP) will control and update the status of your buttons.
If you want to use the embedded web based visu from the controller then yes you will off course need to connect it over IP.
BR,
Erwin
Exactly, I want want to use the embedded web based visu from the controller. But it's difficult to find panel with rj45 connection.
I want control all astro/time switches from panel. The normal knx panel have own time switch function and w4k have own. How to sync between devices?
There are plenty panels with IP connection, any PC panel can be used as long as it supports a HTML5 browser.. You can also use panels with WiFi connection like iPad or Android Tablets in combination with a WiFi access point.
I don't think you can sync the KNX schedulers from a KNX panel to the controller and vice versa..
Depending on the panel there might be options but mostly it's closed in the panel system.
There are plenty panels with IP connection, any PC panel can be used as long as it supports a HTML5 browser.. You can also use panels with WiFi connection like iPad or Android Tablets in combination with a WiFi access point.
I don't think you can sync the KNX schedulers from a KNX panel to the controller and vice versa..
Depending on the panel there might be options but mostly it's closed in the panel system.
BR,
Erwin
Thanks a lot for all answers. I forgot to say that even WiFi its not allowed
(16.10.2018, 08:16)Ruslan25 Wrote: Hi again
Is it possible to send the right time and date to Knx bus from wiser?
Skickat från min S41 via Tapatalk
Copy paste from w4k manuals
Code:
1234567891011121314151617181920
-- get current data as tablenow = os.date('*t')
-- system week day starts from sunday, convert it to knx formatwday = now.wday == 1and7ornow.wday - 1-- time tabletime = {
day = wday,
hour = now.hour,
minute = now.min,
second = now.sec,
}
-- date tabledate = {
day = now.day,
month = now.month,
year = now.year,
}
-- write to busgrp.write('1/1/2', time, dt.time)
grp.write('1/1/1', date, dt.date)