use of nodomain.freeyourgadget.gadgetbridge.model.BatteryConfig in project Gadgetbridge by Freeyourgadget.
the class Ear1Coordinator method getBatteryConfig.
@Override
public BatteryConfig[] getBatteryConfig() {
BatteryConfig battery1 = new BatteryConfig(0, R.drawable.ic_tws_case, R.string.battery_case);
BatteryConfig battery2 = new BatteryConfig(1, R.drawable.ic_nothing_ear_l, R.string.left_earbud);
BatteryConfig battery3 = new BatteryConfig(2, R.drawable.ic_nothing_ear_r, R.string.right_earbud);
return new BatteryConfig[] { battery1, battery2, battery3 };
}
use of nodomain.freeyourgadget.gadgetbridge.model.BatteryConfig in project Gadgetbridge by Freeyourgadget.
the class GalaxyBudsDeviceCoordinator method getBatteryConfig.
@Override
public BatteryConfig[] getBatteryConfig() {
BatteryConfig battery1 = new BatteryConfig(0, R.drawable.ic_galaxy_buds_l, R.string.left_earbud);
BatteryConfig battery2 = new BatteryConfig(1, R.drawable.ic_galaxy_buds_r, R.string.right_earbud);
return new BatteryConfig[] { battery1, battery2 };
}
Aggregations