Attributes Vibration

fox2plus3 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 Tananaev3 years ago

Something like this:

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