Enter forum description here ...
+1
Under review

Release notes update

Andrzej Szymkowicz 4 years ago in bOS Configurator updated by Gruyère Energie SA 4 years ago 4

Hello,

Would it be a big problem to provide precise information about what has changed in a given version?
For example, the latest version has changed the way of presenting modbus type objects in relation to the last upgrade - there is no information about it. Every time an update is a surprise of what's new. We cannot do that for commercial customers.

Andy

+1
Under review

Holidays and Vacation input through front-end

Paul G 4 years ago in bOS Configurator updated by KevinR 4 months ago 9

Hi,


It seems, after searchign in manuals and forums, there is no ability to allow inputing holidays or vacation days through the BoS app, the only way to input holidays and vacations is through the BOS Configurator. 


Is this right_ If so this is weird, not allowing to input a BOS client update its vacations or bank holidays through the front end - or even through an API accessing the typical government site that gives you details of bank holidays.


Has anyone done the above? It feels quite basic

+1
Under review

Sonos function (remember now playing)

Gruyère Energie SA 4 years ago in Devices / Sonos updated by ComfortClick Support 3 years ago 9

Hello ervryone,

I have probably a basic question but I don't understand what this function does ?

Any ideas or exemple ?

+1
Under review

4.8.8 Server update failed, please try again or contact Support! linux

Andreas Costi 4 years ago in General updated by ComfortClick Support 3 years ago 3

fail to update linux , any ideas?

+1
Under review

Push quota exceeded.

David Mikhail 4 years ago in bOS Configurator / Devices updated by ComfortClick Support 7 months ago 32

Hello 

I have new problem with the push function on ios.


Devices : 25.02.2021 22:57:50 : Error : General\Messaging : Error sending iOS push: - Dave 7+ - - Push quota exceeded.


The Push function is limited ? 

Thank you 

Dave

+1
Under review

Android client and 4.8.5

Dejan Recek 4 years ago in bOS Client updated by Łukasz Klinger 4 years ago 6

Hi,


After installing 4.8.5 update the client on an Android 7.5 tablet (latest available version) quit working and could not establish a connection to server. Clearing keys and cache did not help - still no luck. A workaround with Chrome browser IP direct connection and desktop shortcut works perfectly but it will be troublesome for bigger installations with many fixed tablet installations.

+1
Under review

Jigsaw 4.8.5 weather not working

Kristián Vojčík 4 years ago in bOS Server updated by Michiel Kenis 4 years ago 10

Hello.
In last update to 4.8.5 after linux update I notice that weather is not showing any values. I try reboot and readd weather but with no result.

+1

Wizualizacje niestandardowe

Łukasz Klinger 4 years ago in bOS Client updated by Ricardo Pinto | visiontech pt 4 years ago 1

Image 2924

Image 2925

Pochwalcie się swoimi pomysłami

+1
Under review

event logging

Daniel 5 years ago in bOS Client updated by ComfortClick Support 5 years ago 1

What is the most easy way to have an event-log (visible in the user interface)?
Style:

Door open @ 12:35

Door Close @ 12.37

...

I tried with analog log, counter, scheduled tasks,... but no succes


Should be very straigforward I guess but can't find any example


+1

Calculation task (wrong calculation method coded)

Paul G 5 years ago in bOS Configurator 0

The calculation task does not work when both inputs change at the same time and the output of such input is used for further calculation, this is because the Calculation function, as explained in the manual, and confirmed by the trace log, runs a calculation immediately when one of the parameters in the polynom changes. 

Effectively, because in practice the two variables of the polynom do not effectively get updated at the same time, there are a few seconds of difference, probably because bOS serialises tasks rather than parallelise them, then this yields to errors. In summary do not use the calculation task is the variables change at the same time because you will get wrong calculation. This is an interesting bug.....

Example, a water line running a main pipe split in two branches, you do not need three water counters, but just two to know the water consumption of the two branches and the total.

Total water counter A

Partial water counter B

Partial water counter C, the result of subtracting A-B

what bOS incorrectly does

KNX water counter A

KNX water counter B

Calculation task C, which is the result of A-B

When water is used in one of the branches, let's say branch B, then two counters get updated, counter A and counter B, because the counter update do not happen at the same time, but serialised as done by bOS then the sequence is as followed

a) Counter A updated

b) Counter C calculated because one of the variables in polynom changes

c) Counter B updated

d) Counter C calculated again because one of the variables in polynom changes

Because C has changed twice, then if you use the ouput of the calculation as input to a CounterLog, then you will get disastrous results in your Counterlog, the counter log will take the incorrect value calculated in step b as an input, hence contaminating the counterlog. 

Because there is no documentation of this, it has taken a significant amount of time to find the root cause that was driving my CounterLog to go nuts, it is just bad this situation happens and it is not documented anywhere. I assume not many integrator are using calculation tasks because to me this is very basic