28.02.2019, 06:52
(This post was last modified: 28.02.2019, 06:53 by Erwin van der Zwart.)
Hi,
Here is the custom JS to refresh the browser by KNX command:
Be sure to refresh the browser once to have this loaded after you have added it.
BR,
Erwin
Here is the custom JS to refresh the browser by KNX command:
Code:
$(function(){
if (typeof grp != 'undefined') {
grp.listen('32/0/1', function(object, state) {
var value = object.value;
if (state == 'value') {
if (value == true) {
location.reload();
}
}
}, true);
}
});
BR,
Erwin