diff options
author | Abyss777 <abyss@fox5.ru> | 2017-05-19 14:41:23 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-05-19 14:58:08 +0500 |
commit | 9e758d437c048b954d224935664b76d6f6f8416c (patch) | |
tree | 6e1468437fc094245ae484e2eb9e6cc92116a2d6 /src/org/traccar/protocol/H02ProtocolDecoder.java | |
parent | f523e3b995f5f1895cf3dea700be34f4b74dccf9 (diff) | |
download | trackermap-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/H02ProtocolDecoder.java')
-rw-r--r-- | src/org/traccar/protocol/H02ProtocolDecoder.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/org/traccar/protocol/H02ProtocolDecoder.java b/src/org/traccar/protocol/H02ProtocolDecoder.java index fdef2e3c1..800ad0953 100644 --- a/src/org/traccar/protocol/H02ProtocolDecoder.java +++ b/src/org/traccar/protocol/H02ProtocolDecoder.java @@ -82,18 +82,18 @@ public class H02ProtocolDecoder extends BaseProtocolDecoder { } - private String decodeBattery(int value) { + private Integer decodeBattery(int value) { switch (value) { case 6: - return "100%"; + return 100; case 5: - return "80%"; + return 80; case 4: - return "60%"; + return 60; case 3: - return "20%"; + return 20; case 2: - return "10%"; + return 10; default: return null; } @@ -123,7 +123,7 @@ public class H02ProtocolDecoder extends BaseProtocolDecoder { position.setTime(dateBuilder.getDate()); double latitude = readCoordinate(buf, false); - position.set(Position.KEY_BATTERY, decodeBattery(buf.readUnsignedByte())); + position.set(Position.KEY_BATTERY_LEVEL, decodeBattery(buf.readUnsignedByte())); double longitude = readCoordinate(buf, true); int flags = buf.readUnsignedByte() & 0x0f; |