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
Problem:
I want to filter if latitude & longitude = 0 not display in dashboard, other telemetry (sensor,kmph,temperature) save.
what should i code in script rule chain for that function ?
I try this code but not work
This is a...
Problem:
I want to filter if latitude & longitude = 0 not display in dashboard, other telemetry (sensor,kmph,temperature) save.
what should i code in script rule chain for that function ?
I try this code but not work
if (msg.latitude < 0 && msg.longitude > 0 && msg.temperature > -30 && msg.humidity > 0) {
return true;
} else {
return false;
}
Proposed Solution:
Page to Update:
http://thingsboard.io/...
The text was updated successfully, but these errors were encountered: