compile fix
This commit is contained in:
parent
7540a3955b
commit
f8341918ee
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue