diff options
author | Edward Valley <ed.valley@yandex.com> | 2019-07-10 21:29:27 -0400 |
---|---|---|
committer | Edward Valley <ed.valley@yandex.com> | 2019-07-10 21:29:27 -0400 |
commit | 9990000d67907cb41bdc18639d7dbe081c363f09 (patch) | |
tree | 4c90b972247d121d3fecc8e13506e0f82ef0bddf /src/main | |
parent | 0064dec35205fba7b1c8e6c1c0553407688055a8 (diff) | |
download | trackermap-server-9990000d67907cb41bdc18639d7dbe081c363f09.tar.gz trackermap-server-9990000d67907cb41bdc18639d7dbe081c363f09.tar.bz2 trackermap-server-9990000d67907cb41bdc18639d7dbe081c363f09.zip |
Fixed not receiving ignition off event
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/org/traccar/protocol/LaipacProtocolDecoder.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/main/java/org/traccar/protocol/LaipacProtocolDecoder.java b/src/main/java/org/traccar/protocol/LaipacProtocolDecoder.java index 3eecf58a3..767d70a5c 100644 --- a/src/main/java/org/traccar/protocol/LaipacProtocolDecoder.java +++ b/src/main/java/org/traccar/protocol/LaipacProtocolDecoder.java @@ -107,13 +107,17 @@ public class LaipacProtocolDecoder extends BaseProtocolDecoder { private String decodeEvent(String event, Position position) { + position.set(Position.KEY_IGNITION, false); + if (event.length() == 1) { char inputStatus = event.charAt(0); if (inputStatus >= 'A' && inputStatus <= 'D') { int inputStatusInt = inputStatus - 'A'; position.set(Position.PREFIX_IN + 1, inputStatusInt & 1); position.set(Position.PREFIX_IN + 2, inputStatusInt & 2); - position.set(Position.KEY_IGNITION, ((inputStatusInt & 1) != 0) ? true : false); + if ((inputStatusInt & 1) != 0) { + position.set(Position.KEY_IGNITION, true); + } return null; } } |