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
Something like this:
event == 240 && di1 == 0 ? "vibration" : null
How to change this expression so that the alarm only works when the ignition is off
Teltonika ignition connected to the "di1" input