From 8eb7ced3563809046d0b569247db490201f7ac98 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Tue, 20 Nov 2018 20:26:21 +1300 Subject: Handle different event types --- src/org/traccar/protocol/FreematicsProtocolDecoder.java | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'src/org/traccar/protocol/FreematicsProtocolDecoder.java') diff --git a/src/org/traccar/protocol/FreematicsProtocolDecoder.java b/src/org/traccar/protocol/FreematicsProtocolDecoder.java index b91690d71..866e0fd6e 100644 --- a/src/org/traccar/protocol/FreematicsProtocolDecoder.java +++ b/src/org/traccar/protocol/FreematicsProtocolDecoder.java @@ -37,9 +37,10 @@ public class FreematicsProtocolDecoder extends BaseProtocolDecoder { } private Object decodeEvent( - Channel channel, SocketAddress remoteAddress, String sentence) throws Exception { + Channel channel, SocketAddress remoteAddress, String sentence) { DeviceSession deviceSession = null; + String event = null; String time = null; for (String pair : sentence.split(",")) { @@ -53,6 +54,8 @@ public class FreematicsProtocolDecoder extends BaseProtocolDecoder { deviceSession = getDeviceSession(channel, remoteAddress, value); } break; + case "EV": + event = value; case "TS": time = value; break; @@ -61,8 +64,8 @@ public class FreematicsProtocolDecoder extends BaseProtocolDecoder { } } - if (channel != null && deviceSession != null && time != null) { - String message = "1#EV=1,RX=1,TS=" + time; + if (channel != null && deviceSession != null && event != null && time != null) { + String message = String.format("1#EV=%s,RX=1,TS=%s", event, time); message += '*' + Checksum.sum(message); channel.writeAndFlush(new NetworkMessage(message, remoteAddress)); } -- cgit v1.2.3