Is it possible to get battery status for a SRAM AXS system using shiftinglistener? I am using the following, but the answer is always '7' And, if it is possible, does it give the battery status of the front or rear derailleur. In my groupset the rear derailleur is the master component so I assume it would give the battery status of this??
ShifterListener = new AntPlus.ShiftingListener();
BikeShifter = new AntPlus.Shifting(ShifterListener);
if(BikeShifter has :batteryStatus) {
if(BikeShifter.batteryStatus != null) {
ShifterBattery = BikeShifter.batteryStatus;
} else {
ShifterBattery = 7;
}
}