Attributes Vibration

fox2plus4 years ago

How to change this expression so that the alarm only works when the ignition is off

event == 240  ? "vibration" : null

Teltonika ignition connected to the "di1" input

Anton Tananaev4 years ago

Something like this:

event == 240 && di1 == 0  ? "vibration" : null