Battery level stays at 0%
Hello all,
I purchased two PCS of Meta Wear R, charged, connected to my smartphone and they work great. But I also needed to implement some kind of battery monitoring in my app and I realized that one of these Meta Wear R devices always return 0% no matter if I plug it in USB. Other one works great.
I read somewhere that upgrading to the newest version of firmware should fix these problems but it didn't fix it.
Could it be hardware issue or I can test something else?
This discussion has been closed.
Comments
@Override
public void success(Byte result) {
((TextView) view.findViewById(R.id.board_battery_level_value)).setText(String.format(Locale.US, "%d", result));
}
@Override
public void failure(Throwable error) {
((TextView) view.findViewById(R.id.board_battery_level_value)).setText(R.string.label_sodium);
}
});