You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we're regulating an calculating signal strength -> distance on the client in JS. This is bad as it means we have to send many events over the bridge every second.
If this work was done in native code then we would only need to send data over when the value changes. Bridge traffic is minimised and clients can stay dumb.
Signal strength varies dramatically and is largely inaccurate. Therefore readings should be buffered and rounded up/down to normalize these irregularities.
The text was updated successfully, but these errors were encountered:
Currently we're regulating an calculating signal strength -> distance on the client in JS. This is bad as it means we have to send many events over the bridge every second.
If this work was done in native code then we would only need to send data over when the value changes. Bridge traffic is minimised and clients can stay dumb.
Signal strength varies dramatically and is largely inaccurate. Therefore readings should be buffered and rounded up/down to normalize these irregularities.
The text was updated successfully, but these errors were encountered: