I create a custom compute attribute named "Bad GSM Signal" as below:
rssi ? rssi <= 3: true : falseBoolean
rssi ? rssi <= 3: true : false
how to implement it to the Notification?, so when it returns true then a web notification would be sent.
I create a custom compute attribute named "Bad GSM Signal" as below:
rssi ? rssi <= 3: true : false
Boolean
how to implement it to the Notification?, so when it returns true then a web notification would be sent.