aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/protocol/T55ProtocolDecoder.java
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2017-05-19 14:41:23 +0500
committerAbyss777 <abyss@fox5.ru>2017-05-19 14:58:08 +0500
commit9e758d437c048b954d224935664b76d6f6f8416c (patch)
tree6e1468437fc094245ae484e2eb9e6cc92116a2d6 /src/org/traccar/protocol/T55ProtocolDecoder.java
parentf523e3b995f5f1895cf3dea700be34f4b74dccf9 (diff)
downloadtrackermap-server-9e758d437c048b954d224935664b76d6f6f8416c.tar.gz
trackermap-server-9e758d437c048b954d224935664b76d6f6f8416c.tar.bz2
trackermap-server-9e758d437c048b954d224935664b76d6f6f8416c.zip
Adjust battery and batteryLevel type
Diffstat (limited to 'src/org/traccar/protocol/T55ProtocolDecoder.java')
-rw-r--r--src/org/traccar/protocol/T55ProtocolDecoder.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/traccar/protocol/T55ProtocolDecoder.java b/src/org/traccar/protocol/T55ProtocolDecoder.java
index efd647ad3..f1a03ed44 100644
--- a/src/org/traccar/protocol/T55ProtocolDecoder.java
+++ b/src/org/traccar/protocol/T55ProtocolDecoder.java
@@ -219,7 +219,7 @@ public class T55ProtocolDecoder extends BaseProtocolDecoder {
position.setCourse(parser.nextDouble(0));
position.setAltitude(parser.nextDouble(0));
- position.set(Position.KEY_BATTERY, parser.next());
+ position.set(Position.KEY_BATTERY, parser.nextDouble(0));
return position;
}