1
0
mirror of https://github.com/oliexdev/openScale.git synced 2025-08-17 22:11:35 +02:00

create basic structure for Tanita BC-401 scale, see #793

This commit is contained in:
oliexdev
2021-11-21 13:02:37 +01:00
parent 7d84ba46d9
commit 223b5bb286
2 changed files with 79 additions and 1 deletions

View File

@@ -110,7 +110,7 @@ public class BluetoothFactory {
}
if (deviceName.equals("Hoffen BS-8107")) {
return new BluetoothHoffenBBS8107(context);
}
}
if (deviceName.equals("ADV") || deviceName.equals("Chipsea-BLE")) {
return new BluetoothOKOK(context);
}
@@ -123,6 +123,9 @@ public class BluetoothFactory {
if (deviceName.equals("SBF77") || deviceName.equals("BF950")) {
return new BluetoothBeurerBF950(context, deviceName);
}
if (deviceName.equals("TNT_PAIR")) {
return new BluetoothTanita(context);
}
return null;
}
}

View File

@@ -0,0 +1,75 @@
/* Copyright (C) 2021 olie.xdev <olie.xdev@googlemail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.health.openscale.core.bluetooth;
import android.content.Context;
import java.util.UUID;
import timber.log.Timber;
public class BluetoothTanita extends BluetoothCommunication {
private final UUID WEIGHT_MEASUREMENT_SERVICE = UUID.fromString("273e5100-6b90-4779-83b8-b8bf1dadac35");
private final UUID WEIGHT_MEASUREMENT_NOTIFY_1 = UUID.fromString("273e510f-6b90-4779-83b8-b8bf1dadac35"); // NOTIFY
private final UUID WEIGHT_MEASUREMENT_WRITE_1 = UUID.fromString("273e5108-6b90-4779-83b8-b8bf1dadac35"); // WRITE
private final UUID WEIGHT_MEASUREMENT_NOTIFY_2 = UUID.fromString("273e510e-6b90-4779-83b8-b8bf1dadac35"); // NOTIFY
private final UUID WEIGHT_MEASUREMENT_WRITE_2 = UUID.fromString("273e5107-6b90-4779-83b8-b8bf1dadac35"); // WRITE
private final UUID WEIGHT_MEASUREMENT_NOTIFY_3 = UUID.fromString("273e510d-6b90-4779-83b8-b8bf1dadac35"); // NOTIFY
public BluetoothTanita(Context context) {
super(context);
}
@Override
public String driverName() {
return "Tanita BC-401";
}
@Override
public void onBluetoothNotify(UUID characteristic, byte[] value) {
if (value != null && value.length > 0) {
Timber.d("ON TANITA BLUETOOTH NOTIFY " + BluetoothGattUuid.prettyPrint(characteristic) + " value " + byteInHex(value) + "length" + value.length);
}
}
@Override
protected boolean onNextStep(int stepNr) {
switch (stepNr) {
case 0:
setNotificationOn(WEIGHT_MEASUREMENT_SERVICE, WEIGHT_MEASUREMENT_NOTIFY_1);
break;
case 1:
setNotificationOn(WEIGHT_MEASUREMENT_SERVICE, WEIGHT_MEASUREMENT_NOTIFY_2);
break;
case 2:
setNotificationOn(WEIGHT_MEASUREMENT_SERVICE, WEIGHT_MEASUREMENT_NOTIFY_3);
break;
case 3:
writeBytes(WEIGHT_MEASUREMENT_SERVICE, WEIGHT_MEASUREMENT_WRITE_1, new byte[]{0x01});
break;
case 4:
writeBytes(WEIGHT_MEASUREMENT_SERVICE, WEIGHT_MEASUREMENT_WRITE_2, new byte[]{0x01});
break;
default:
return false;
}
return true;
}
}