mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-27 20:36:51 +01:00
Refactoring some parts. Added support for param synchronisation with band
This commit is contained in:
parent
5b3ef8999f
commit
ae9ebc1be8
@ -226,6 +226,8 @@ public class GBDaoGenerator {
|
|||||||
Entity activitySample = addEntity(schema, "HPlusHealthActivitySample");
|
Entity activitySample = addEntity(schema, "HPlusHealthActivitySample");
|
||||||
addCommonActivitySampleProperties("AbstractActivitySample", activitySample, user, device);
|
addCommonActivitySampleProperties("AbstractActivitySample", activitySample, user, device);
|
||||||
activitySample.addByteArrayProperty("rawHPlusHealthData");
|
activitySample.addByteArrayProperty("rawHPlusHealthData");
|
||||||
|
activitySample.addIntProperty("rawHPlusCalories").notNull();
|
||||||
|
activitySample.addIntProperty("rawHPlusDistance").notNull();
|
||||||
activitySample.addIntProperty(SAMPLE_RAW_INTENSITY).notNull().codeBeforeGetterAndSetter(OVERRIDE);
|
activitySample.addIntProperty(SAMPLE_RAW_INTENSITY).notNull().codeBeforeGetterAndSetter(OVERRIDE);
|
||||||
activitySample.addIntProperty(SAMPLE_STEPS).notNull().codeBeforeGetterAndSetter(OVERRIDE);
|
activitySample.addIntProperty(SAMPLE_STEPS).notNull().codeBeforeGetterAndSetter(OVERRIDE);
|
||||||
activitySample.addIntProperty(SAMPLE_RAW_KIND).notNull().codeBeforeGetterAndSetter(OVERRIDE);
|
activitySample.addIntProperty(SAMPLE_RAW_KIND).notNull().codeBeforeGetterAndSetter(OVERRIDE);
|
||||||
|
@ -56,9 +56,6 @@ public final class HPlusConstants {
|
|||||||
public static final byte COMMAND_SET_PREF_FINDME = 0x0a;
|
public static final byte COMMAND_SET_PREF_FINDME = 0x0a;
|
||||||
public static final byte COMMAND_SET_PREF_SAVE = 0x17;
|
public static final byte COMMAND_SET_PREF_SAVE = 0x17;
|
||||||
public static final byte COMMAND_SET_PREF_END = 0x4f;
|
public static final byte COMMAND_SET_PREF_END = 0x4f;
|
||||||
public static final byte COMMAND_SET_INCOMMING_SOCIAL = 0x31;
|
|
||||||
public static final byte COMMAND_SET_INCOMMING_SMS = 0x40;
|
|
||||||
public static final byte COMMAND_SET_DISPLAY_TEXT = 0x43;
|
|
||||||
public static final byte COMMAND_SET_DISPLAY_ALERT = 0x23;
|
public static final byte COMMAND_SET_DISPLAY_ALERT = 0x23;
|
||||||
public static final byte COMMAND_SET_PREF_ALLDAYHR = 53;
|
public static final byte COMMAND_SET_PREF_ALLDAYHR = 53;
|
||||||
|
|
||||||
@ -68,10 +65,18 @@ public final class HPlusConstants {
|
|||||||
public static final byte COMMAND_SET_CONF_SAVE = 0x17;
|
public static final byte COMMAND_SET_CONF_SAVE = 0x17;
|
||||||
public static final byte COMMAND_SET_CONF_END = 0x4f;
|
public static final byte COMMAND_SET_CONF_END = 0x4f;
|
||||||
|
|
||||||
|
public static final byte COMMAND_SET_PREFS = 0x50;
|
||||||
|
public static final byte COMMAND_SET_SIT_INTERVAL = 0x51;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public static final byte DATA_STATS = 0x33;
|
public static final byte DATA_STATS = 0x33;
|
||||||
public static final byte DATA_SLEEP = 0x1A;
|
public static final byte DATA_SLEEP = 0x1A;
|
||||||
|
|
||||||
|
public static final byte COMMAND_ACTION_INCOMING_SOCIAL = 0x31;
|
||||||
|
public static final byte COMMAND_ACTION_INCOMMING_SMS = 0x40;
|
||||||
|
public static final byte COMMAND_ACTION_DISPLAY_TEXT = 0x43;
|
||||||
|
|
||||||
|
|
||||||
public static final String PREF_HPLUS_USER_ALIAS = "hplus_user_alias";
|
public static final String PREF_HPLUS_USER_ALIAS = "hplus_user_alias";
|
||||||
public static final String PREF_HPLUS_FITNESS_GOAL = "hplus_fitness_goal";
|
public static final String PREF_HPLUS_FITNESS_GOAL = "hplus_fitness_goal";
|
||||||
@ -79,4 +84,11 @@ public final class HPlusConstants {
|
|||||||
public static final String PREF_HPLUS_ALLDAYHR = "hplus_alldayhr";
|
public static final String PREF_HPLUS_ALLDAYHR = "hplus_alldayhr";
|
||||||
public static final String PREF_HPLUS_UNIT = "hplus_unit";
|
public static final String PREF_HPLUS_UNIT = "hplus_unit";
|
||||||
public static final String PREF_HPLUS_TIMEMODE = "hplus_timemode";
|
public static final String PREF_HPLUS_TIMEMODE = "hplus_timemode";
|
||||||
|
public static final String PREF_HPLUS_WRIST = "hplus_wrist";
|
||||||
|
public static final String PREF_HPLUS_SWALERT = "hplus_sw_alert";
|
||||||
|
public static final String PREF_HPLUS_ALERT_TIME = "hplus_alert_time";
|
||||||
|
public static final String PREF_HPLUS_SIT_START_TIME = "hplus_sit_start_time";
|
||||||
|
public static final String PREF_HPLUS_SIT_END_TIME = "hplus_sit_end_time";
|
||||||
|
public static final String PREF_HPLUS_COUNTRY = "hplus_country";
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -145,7 +145,7 @@ public class HPlusCoordinator extends AbstractDeviceCoordinator {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static byte getCountry(String address) {
|
public static byte getCountry(String address) {
|
||||||
return (byte) prefs.getInt(HPlusConstants.PREF_HPLUS_ALLDAYHR + "_" + address, 10);
|
return (byte) prefs.getInt(HPlusConstants.PREF_HPLUS_COUNTRY + "_" + address, 10);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -199,4 +199,38 @@ public class HPlusCoordinator extends AbstractDeviceCoordinator {
|
|||||||
return (byte) prefs.getInt(HPlusConstants.PREF_HPLUS_ALLDAYHR + "_" + address, 10);
|
return (byte) prefs.getInt(HPlusConstants.PREF_HPLUS_ALLDAYHR + "_" + address, 10);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static byte getSocial(String address) {
|
||||||
|
|
||||||
|
//TODO: Figure what this is. Returning the default value
|
||||||
|
|
||||||
|
return (byte) 255;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static byte getUserWrist(String address) {
|
||||||
|
return (byte) prefs.getInt(HPlusConstants.PREF_HPLUS_WRIST + "_" + address, 10);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public static boolean getSWAlertTime(String address) {
|
||||||
|
return (boolean) prefs.getBoolean(HPlusConstants.PREF_HPLUS_SWALERT + "_" + address, false);
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public static int getAlertTime(String address) {
|
||||||
|
return (int) prefs.getInt(HPlusConstants.PREF_HPLUS_ALERT_TIME + "_" + address, 0);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public static int getSITStartTime(String address) {
|
||||||
|
return (int) prefs.getInt(HPlusConstants.PREF_HPLUS_SIT_START_TIME + "_" + address, 0);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public static int getSITEndTime(String address) {
|
||||||
|
return (int) prefs.getInt(HPlusConstants.PREF_HPLUS_SIT_END_TIME + "_" + address, 0);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -35,7 +35,9 @@ import nodomain.freeyourgadget.gadgetbridge.entities.DaoSession;
|
|||||||
import nodomain.freeyourgadget.gadgetbridge.entities.Device;
|
import nodomain.freeyourgadget.gadgetbridge.entities.Device;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.entities.HPlusHealthActivitySample;
|
import nodomain.freeyourgadget.gadgetbridge.entities.HPlusHealthActivitySample;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.entities.User;
|
import nodomain.freeyourgadget.gadgetbridge.entities.User;
|
||||||
|
import nodomain.freeyourgadget.gadgetbridge.entities.UserAttributes;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.impl.GBDevice;
|
import nodomain.freeyourgadget.gadgetbridge.impl.GBDevice;
|
||||||
|
import nodomain.freeyourgadget.gadgetbridge.model.ActivitySample;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.model.Alarm;
|
import nodomain.freeyourgadget.gadgetbridge.model.Alarm;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.model.CalendarEventSpec;
|
import nodomain.freeyourgadget.gadgetbridge.model.CalendarEventSpec;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.model.CallSpec;
|
import nodomain.freeyourgadget.gadgetbridge.model.CallSpec;
|
||||||
@ -99,14 +101,12 @@ public class HPlusSupport extends AbstractBTLEDeviceSupport {
|
|||||||
|
|
||||||
builder.add(new SetDeviceStateAction(getDevice(), GBDevice.State.INITIALIZING, getContext()));
|
builder.add(new SetDeviceStateAction(getDevice(), GBDevice.State.INITIALIZING, getContext()));
|
||||||
|
|
||||||
//Fill device info
|
|
||||||
requestDeviceInfo(builder);
|
|
||||||
|
|
||||||
getDevice().setFirmwareVersion("0");
|
getDevice().setFirmwareVersion("0");
|
||||||
getDevice().setFirmwareVersion2("0");
|
getDevice().setFirmwareVersion2("0");
|
||||||
|
|
||||||
//Initialize device
|
//Initialize device
|
||||||
setInitValues(builder);
|
setInitValues(builder);
|
||||||
|
syncPreferences(builder);
|
||||||
|
|
||||||
builder.notify(getCharacteristic(HPlusConstants.UUID_CHARACTERISTIC_MEASURE), true);
|
builder.notify(getCharacteristic(HPlusConstants.UUID_CHARACTERISTIC_MEASURE), true);
|
||||||
|
|
||||||
@ -121,22 +121,78 @@ public class HPlusSupport extends AbstractBTLEDeviceSupport {
|
|||||||
return builder;
|
return builder;
|
||||||
}
|
}
|
||||||
|
|
||||||
private HPlusSupport setInitValues(TransactionBuilder builder){
|
private HPlusSupport setInitValues(TransactionBuilder builder) {
|
||||||
LOG.debug("Set Init Values");
|
LOG.debug("Set Init Values");
|
||||||
builder.write(ctrlCharacteristic, HPlusConstants.COMMAND_SET_INIT1);
|
builder.write(ctrlCharacteristic, HPlusConstants.COMMAND_SET_INIT1);
|
||||||
builder.write(ctrlCharacteristic, HPlusConstants.COMMAND_SET_INIT2);
|
builder.write(ctrlCharacteristic, HPlusConstants.COMMAND_SET_INIT2);
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
private HPlusSupport sendUserInfo(TransactionBuilder builder){
|
private HPlusSupport sendUserInfo(TransactionBuilder builder) {
|
||||||
builder.write(ctrlCharacteristic, HPlusConstants.COMMAND_SET_PREF_START);
|
builder.write(ctrlCharacteristic, HPlusConstants.COMMAND_SET_PREF_START);
|
||||||
builder.write(ctrlCharacteristic, HPlusConstants.COMMAND_SET_PREF_START1);
|
builder.write(ctrlCharacteristic, HPlusConstants.COMMAND_SET_PREF_START1);
|
||||||
|
|
||||||
|
syncPreferences(builder);
|
||||||
|
|
||||||
builder.write(ctrlCharacteristic, new byte[]{HPlusConstants.COMMAND_SET_CONF_SAVE});
|
builder.write(ctrlCharacteristic, new byte[]{HPlusConstants.COMMAND_SET_CONF_SAVE});
|
||||||
builder.write(ctrlCharacteristic, new byte[]{HPlusConstants.COMMAND_SET_CONF_END});
|
builder.write(ctrlCharacteristic, new byte[]{HPlusConstants.COMMAND_SET_CONF_END});
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private HPlusSupport syncPreferences(TransactionBuilder transaction) {
|
||||||
|
LOG.info("Attempting to sync preferences...");
|
||||||
|
transaction.add(new ConditionalWriteAction(ctrlCharacteristic) {
|
||||||
|
@Override
|
||||||
|
protected byte[] checkCondition() {
|
||||||
|
|
||||||
|
byte sex = HPlusCoordinator.getUserSex(getDevice().getAddress());
|
||||||
|
byte age = HPlusCoordinator.getUserAge(getDevice().getAddress());
|
||||||
|
byte bodyHeight = HPlusCoordinator.getUserHeight(getDevice().getAddress());
|
||||||
|
byte bodyWeight = HPlusCoordinator.getUserWeight(getDevice().getAddress());
|
||||||
|
int goal = HPlusCoordinator.getGoal(getDevice().getAddress());
|
||||||
|
byte displayTime = HPlusCoordinator.getScreenTime(getDevice().getAddress());
|
||||||
|
byte country = HPlusCoordinator.getCountry(getDevice().getAddress());
|
||||||
|
byte social = HPlusCoordinator.getSocial(getDevice().getAddress()); // ??
|
||||||
|
byte allDayHeart = HPlusCoordinator.getAllDayHR(getDevice().getAddress());
|
||||||
|
byte wrist = HPlusCoordinator.getUserWrist(getDevice().getAddress());
|
||||||
|
byte alertTimeHour = 0;
|
||||||
|
byte alertTimeMinute = 0;
|
||||||
|
|
||||||
|
if (HPlusCoordinator.getSWAlertTime(getDevice().getAddress())) {
|
||||||
|
int t = HPlusCoordinator.getAlertTime(getDevice().getAddress());
|
||||||
|
|
||||||
|
alertTimeHour = (byte) (t / 256);
|
||||||
|
alertTimeMinute = (byte) (t % 256);
|
||||||
|
}
|
||||||
|
|
||||||
|
byte unit = HPlusCoordinator.getUnit(getDevice().getAddress());
|
||||||
|
byte timemode = HPlusCoordinator.getTimeMode((getDevice().getAddress()));
|
||||||
|
|
||||||
|
return new byte[]{
|
||||||
|
HPlusConstants.COMMAND_SET_PREF_COUNTRY,
|
||||||
|
sex,
|
||||||
|
age,
|
||||||
|
bodyHeight,
|
||||||
|
bodyWeight,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
(byte) (goal / 256),
|
||||||
|
(byte) (goal % 256),
|
||||||
|
displayTime,
|
||||||
|
country,
|
||||||
|
0,
|
||||||
|
social,
|
||||||
|
allDayHeart,
|
||||||
|
wrist,
|
||||||
|
alertTimeHour,
|
||||||
|
alertTimeMinute,
|
||||||
|
unit,
|
||||||
|
timemode
|
||||||
|
};
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
private HPlusSupport setCountry(TransactionBuilder transaction) {
|
private HPlusSupport setCountry(TransactionBuilder transaction) {
|
||||||
LOG.info("Attempting to set country...");
|
LOG.info("Attempting to set country...");
|
||||||
@ -200,10 +256,10 @@ public class HPlusSupport extends AbstractBTLEDeviceSupport {
|
|||||||
|
|
||||||
return new byte[]{
|
return new byte[]{
|
||||||
HPlusConstants.COMMAND_SET_PREF_DATE,
|
HPlusConstants.COMMAND_SET_PREF_DATE,
|
||||||
(byte) (year / 256),
|
(byte) (year / 256),
|
||||||
(byte) (year % 256),
|
(byte) (year % 256),
|
||||||
(byte) (month),
|
(byte) (month),
|
||||||
(byte) (day)
|
(byte) (day)
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -251,11 +307,30 @@ public class HPlusSupport extends AbstractBTLEDeviceSupport {
|
|||||||
transaction.add(new ConditionalWriteAction(ctrlCharacteristic) {
|
transaction.add(new ConditionalWriteAction(ctrlCharacteristic) {
|
||||||
@Override
|
@Override
|
||||||
protected byte[] checkCondition() {
|
protected byte[] checkCondition() {
|
||||||
Calendar c = Calendar.getInstance();
|
int startTime = HPlusCoordinator.getSITStartTime(getDevice().getAddress());
|
||||||
|
int endTime = HPlusCoordinator.getSITEndTime(getDevice().getAddress());
|
||||||
|
|
||||||
|
Calendar now = Calendar.getInstance();
|
||||||
|
|
||||||
return new byte[]{
|
return new byte[]{
|
||||||
HPlusConstants.COMMAND_SET_PREF_SIT,
|
HPlusConstants.COMMAND_SET_SIT_INTERVAL,
|
||||||
0, 0, 0, 0, 0
|
(byte) (startTime / 256),
|
||||||
|
(byte) (startTime % 256),
|
||||||
|
(byte) (endTime / 256),
|
||||||
|
(byte) (endTime % 256),
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
(byte) (now.get(Calendar.YEAR) / 256),
|
||||||
|
(byte) (now.get(Calendar.YEAR) % 256),
|
||||||
|
(byte) (now.get(Calendar.MONTH) + 1),
|
||||||
|
(byte) (now.get(Calendar.DAY_OF_MONTH)),
|
||||||
|
(byte) (now.get(Calendar.HOUR)),
|
||||||
|
(byte) (now.get(Calendar.MINUTE)),
|
||||||
|
(byte) (now.get(Calendar.SECOND)),
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -443,7 +518,7 @@ public class HPlusSupport extends AbstractBTLEDeviceSupport {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onSetCallState(CallSpec callSpec) {
|
public void onSetCallState(CallSpec callSpec) {
|
||||||
switch(callSpec.command){
|
switch (callSpec.command) {
|
||||||
case CallSpec.CALL_INCOMING: {
|
case CallSpec.CALL_INCOMING: {
|
||||||
showText(callSpec.name, callSpec.number);
|
showText(callSpec.name, callSpec.number);
|
||||||
break;
|
break;
|
||||||
@ -454,7 +529,7 @@ public class HPlusSupport extends AbstractBTLEDeviceSupport {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onSetCannedMessages(CannedMessagesSpec cannedMessagesSpec) {
|
public void onSetCannedMessages(CannedMessagesSpec cannedMessagesSpec) {
|
||||||
LOG.debug("Canned Messages: "+cannedMessagesSpec);
|
LOG.debug("Canned Messages: " + cannedMessagesSpec);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -535,7 +610,7 @@ public class HPlusSupport extends AbstractBTLEDeviceSupport {
|
|||||||
TransactionBuilder builder = new TransactionBuilder("realTimeHeartMeasurement");
|
TransactionBuilder builder = new TransactionBuilder("realTimeHeartMeasurement");
|
||||||
byte state = 0;
|
byte state = 0;
|
||||||
|
|
||||||
if(enable)
|
if (enable)
|
||||||
state = HPlusConstants.HEARTRATE_ALLDAY_ON;
|
state = HPlusConstants.HEARTRATE_ALLDAY_ON;
|
||||||
else
|
else
|
||||||
state = HPlusConstants.HEARTRATE_ALLDAY_OFF;
|
state = HPlusConstants.HEARTRATE_ALLDAY_OFF;
|
||||||
@ -556,7 +631,7 @@ public class HPlusSupport extends AbstractBTLEDeviceSupport {
|
|||||||
byte[] msg = new byte[2];
|
byte[] msg = new byte[2];
|
||||||
msg[0] = HPlusConstants.COMMAND_SET_PREF_FINDME;
|
msg[0] = HPlusConstants.COMMAND_SET_PREF_FINDME;
|
||||||
|
|
||||||
if(start)
|
if (start)
|
||||||
msg[1] = 1;
|
msg[1] = 1;
|
||||||
else
|
else
|
||||||
msg[1] = 0;
|
msg[1] = 0;
|
||||||
@ -577,7 +652,7 @@ public class HPlusSupport extends AbstractBTLEDeviceSupport {
|
|||||||
byte[] msg = new byte[15];
|
byte[] msg = new byte[15];
|
||||||
msg[0] = HPlusConstants.COMMAND_SET_DISPLAY_ALERT;
|
msg[0] = HPlusConstants.COMMAND_SET_DISPLAY_ALERT;
|
||||||
|
|
||||||
for(int i = 0;i<msg.length - 1; i++)
|
for (int i = 0; i < msg.length - 1; i++)
|
||||||
msg[i + 1] = (byte) "GadgetBridge".charAt(i);
|
msg[i + 1] = (byte) "GadgetBridge".charAt(i);
|
||||||
|
|
||||||
builder.write(ctrlCharacteristic, msg);
|
builder.write(ctrlCharacteristic, msg);
|
||||||
@ -606,7 +681,7 @@ public class HPlusSupport extends AbstractBTLEDeviceSupport {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onSendConfiguration(String config) {
|
public void onSendConfiguration(String config) {
|
||||||
LOG.debug("Send Configuration: "+config);
|
LOG.debug("Send Configuration: " + config);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -617,74 +692,74 @@ public class HPlusSupport extends AbstractBTLEDeviceSupport {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private void showText(String message){
|
private void showText(String message) {
|
||||||
showText(null, message);
|
showText(null, message);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void showText(String title, String body){
|
private void showText(String title, String body) {
|
||||||
LOG.debug("Show Notification");
|
LOG.debug("Show Notification");
|
||||||
|
|
||||||
TransactionBuilder builder = new TransactionBuilder("showText");
|
TransactionBuilder builder = new TransactionBuilder("showText");
|
||||||
if(ctrlCharacteristic == null)
|
if (ctrlCharacteristic == null)
|
||||||
ctrlCharacteristic = getCharacteristic(HPlusConstants.UUID_CHARACTERISTIC_CONTROL);
|
ctrlCharacteristic = getCharacteristic(HPlusConstants.UUID_CHARACTERISTIC_CONTROL);
|
||||||
|
|
||||||
byte[] msg = new byte[20];
|
byte[] msg = new byte[20];
|
||||||
for(int i = 0; i < msg.length; i++)
|
for (int i = 0; i < msg.length; i++)
|
||||||
msg[i] = 32;
|
msg[i] = 32;
|
||||||
|
|
||||||
msg[0] = HPlusConstants.COMMAND_SET_DISPLAY_TEXT;
|
msg[0] = HPlusConstants.COMMAND_ACTION_DISPLAY_TEXT;
|
||||||
|
|
||||||
String message = "";
|
String message = "";
|
||||||
|
|
||||||
if(title != null){
|
if (title != null) {
|
||||||
if(title.length() > 12) {
|
if (title.length() > 12) {
|
||||||
message = title.substring(0, 12);
|
message = title.substring(0, 12);
|
||||||
}else {
|
} else {
|
||||||
message = title;
|
message = title;
|
||||||
for(int i = message.length(); i < 12; i++)
|
for (int i = message.length(); i < 12; i++)
|
||||||
message += "";
|
message += " ";
|
||||||
}
|
|
||||||
}
|
}
|
||||||
message += body;
|
}
|
||||||
|
message += body;
|
||||||
|
|
||||||
int length = message.length() / 17;
|
int length = message.length() / 17;
|
||||||
|
|
||||||
builder.write(ctrlCharacteristic, new byte[]{HPlusConstants.COMMAND_SET_INCOMMING_SOCIAL, (byte) length});
|
builder.write(ctrlCharacteristic, new byte[]{HPlusConstants.COMMAND_ACTION_INCOMING_SOCIAL, (byte) 255});
|
||||||
|
|
||||||
int remaining = 0;
|
int remaining = 0;
|
||||||
|
|
||||||
if(message.length() % 17 > 0)
|
if (message.length() % 17 > 0)
|
||||||
remaining = length + 1;
|
remaining = length + 1;
|
||||||
else
|
else
|
||||||
remaining = length;
|
remaining = length;
|
||||||
|
|
||||||
msg[1] = (byte) remaining;
|
msg[1] = (byte) remaining;
|
||||||
int message_index = 0;
|
int message_index = 0;
|
||||||
int i = 3;
|
int i = 3;
|
||||||
|
|
||||||
for(int j=0; j < message.length(); j++){
|
for (int j = 0; j < message.length(); j++) {
|
||||||
msg[i++] = (byte) message.charAt(j);
|
msg[i++] = (byte) message.charAt(j);
|
||||||
|
|
||||||
if(i == msg.length){
|
if (i == msg.length) {
|
||||||
message_index ++;
|
message_index++;
|
||||||
msg[2] = (byte) message_index;
|
msg[2] = (byte) message_index;
|
||||||
builder.write(ctrlCharacteristic, msg);
|
builder.write(ctrlCharacteristic, msg);
|
||||||
|
|
||||||
msg = msg.clone();
|
msg = msg.clone();
|
||||||
for(i=3; i < msg.length; i++)
|
for (i = 3; i < msg.length; i++)
|
||||||
msg[i] = 32;
|
msg[i] = 32;
|
||||||
|
|
||||||
if(message_index < remaining)
|
if (message_index < remaining)
|
||||||
i = 3;
|
i = 3;
|
||||||
else
|
else
|
||||||
break;
|
break;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
msg[2] = (byte) remaining;
|
msg[2] = (byte) remaining;
|
||||||
|
|
||||||
builder.write(ctrlCharacteristic, msg);
|
builder.write(ctrlCharacteristic, msg);
|
||||||
builder.queue(getQueue());
|
builder.queue(getQueue());
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isExpectedDevice(BluetoothDevice device) {
|
public boolean isExpectedDevice(BluetoothDevice device) {
|
||||||
@ -703,14 +778,14 @@ public class HPlusSupport extends AbstractBTLEDeviceSupport {
|
|||||||
|
|
||||||
UUID characteristicUUID = characteristic.getUuid();
|
UUID characteristicUUID = characteristic.getUuid();
|
||||||
byte[] data = characteristic.getValue();
|
byte[] data = characteristic.getValue();
|
||||||
if(data.length == 0)
|
if (data.length == 0)
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
switch(data[0]){
|
switch (data[0]) {
|
||||||
case HPlusConstants.DATA_STATS:
|
case HPlusConstants.DATA_STATS:
|
||||||
return processDataStats(data);
|
return processDataStats(data);
|
||||||
case HPlusConstants.DATA_SLEEP:
|
case HPlusConstants.DATA_SLEEP:
|
||||||
return processSleepStats(data);
|
return processSleepStats(data);
|
||||||
default:
|
default:
|
||||||
LOG.info("Unhandled characteristic changed: " + characteristicUUID);
|
LOG.info("Unhandled characteristic changed: " + characteristicUUID);
|
||||||
|
|
||||||
@ -718,10 +793,10 @@ public class HPlusSupport extends AbstractBTLEDeviceSupport {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean processSleepStats(byte[] data){
|
private boolean processSleepStats(byte[] data) {
|
||||||
LOG.debug("Process Sleep Stats");
|
LOG.debug("Process Sleep Stats");
|
||||||
|
|
||||||
if(data.length < 19) {
|
if (data.length < 19) {
|
||||||
LOG.error("Invalid Sleep Message Length " + data.length);
|
LOG.error("Invalid Sleep Message Length " + data.length);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -735,13 +810,12 @@ public class HPlusSupport extends AbstractBTLEDeviceSupport {
|
|||||||
int ts = (int) (System.currentTimeMillis() / 1000);
|
int ts = (int) (System.currentTimeMillis() / 1000);
|
||||||
HPlusSampleProvider provider = new HPlusSampleProvider(gbDevice, session);
|
HPlusSampleProvider provider = new HPlusSampleProvider(gbDevice, session);
|
||||||
|
|
||||||
Intent intent = new Intent(DeviceService.ACTION_REALTIME_SAMPLES)
|
//TODO: Store Sample. How?
|
||||||
.putExtra(DeviceService.EXTRA_REALTIME_SAMPLE, record.getRawData() )
|
|
||||||
.putExtra(DeviceService.EXTRA_TIMESTAMP, System.currentTimeMillis());
|
|
||||||
|
|
||||||
LocalBroadcastManager.getInstance(getContext()).sendBroadcast(intent);
|
//provider.addGBActivitySample(record);
|
||||||
|
|
||||||
}catch (GBException e) {
|
|
||||||
|
} catch (GBException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
@ -751,14 +825,16 @@ public class HPlusSupport extends AbstractBTLEDeviceSupport {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private boolean processDataStats(byte[]data){
|
private boolean processDataStats(byte[] data) {
|
||||||
|
//TODO: Store Calories and Distance. How?
|
||||||
|
|
||||||
LOG.debug("Process Data Stats");
|
LOG.debug("Process Data Stats");
|
||||||
|
|
||||||
if(data.length < 15) {
|
if (data.length < 15) {
|
||||||
LOG.error("Invalid Stats Message Length " + data.length);
|
LOG.error("Invalid Stats Message Length " + data.length);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
double distance = ( (int) data[4] * 256 + data[3]) / 100.0;
|
double distance = ((int) data[4] * 256 + data[3]) / 100.0;
|
||||||
|
|
||||||
int x = (int) data[6] * 256 + data[5];
|
int x = (int) data[6] * 256 + data[5];
|
||||||
int y = (int) data[8] * 256 + data[7];
|
int y = (int) data[8] * 256 + data[7];
|
||||||
@ -778,9 +854,12 @@ public class HPlusSupport extends AbstractBTLEDeviceSupport {
|
|||||||
if (bpm != HPlusHealthActivitySample.NOT_MEASURED) {
|
if (bpm != HPlusHealthActivitySample.NOT_MEASURED) {
|
||||||
HPlusHealthActivitySample sample = createActivitySample(device, user, ts, provider);
|
HPlusHealthActivitySample sample = createActivitySample(device, user, ts, provider);
|
||||||
sample.setHeartRate(bpm);
|
sample.setHeartRate(bpm);
|
||||||
|
sample.setSteps(0);
|
||||||
|
sample.setRawIntensity(ActivitySample.NOT_MEASURED);
|
||||||
|
sample.setRawKind(HPlusSampleProvider.TYPE_ACTIVITY); // to make it visible in the charts TODO: add a MANUAL kind for that?
|
||||||
provider.addGBActivitySample(sample);
|
provider.addGBActivitySample(sample);
|
||||||
}
|
}
|
||||||
}catch (GBException e) {
|
} catch (GBException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
|
Loading…
Reference in New Issue
Block a user