1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-07-05 21:22:46 +02:00

compile fix

This commit is contained in:
Andreas Shimokawa 2015-05-12 11:12:53 +02:00
parent 7540a3955b
commit f8341918ee

View File

@ -657,9 +657,9 @@ public class PebbleProtocol extends GBDeviceProtocol {
switch (pebbleCmd) { switch (pebbleCmd) {
case APPLICATIONMESSAGE_PUSH: case APPLICATIONMESSAGE_PUSH:
UUID uuid = new UUID(uuid_high, uuid_low); UUID uuid = new UUID(uuid_high, uuid_low);
Log.info(TAG, "got APPLICATIONMESSAGE PUSH from UUID " + uuid + " , dict size " + dictSize); LOG.info("got APPLICATIONMESSAGE PUSH from UUID " + uuid + " , dict size " + dictSize);
if (WeatherNeatUUID.equals(uuid)) { if (WeatherNeatUUID.equals(uuid)) {
Log.info(TAG, "We know you, you are WeatherNeat"); LOG.info("We know you, you are WeatherNeat");
GBDeviceCommandSendBytes sendBytes = new GBDeviceCommandSendBytes(); GBDeviceCommandSendBytes sendBytes = new GBDeviceCommandSendBytes();
sendBytes.encodedBytes = encodeApplicationMessageTest(); sendBytes.encodedBytes = encodeApplicationMessageTest();
cmd = sendBytes; cmd = sendBytes;