app4g
14 November 2024 08:24
1
@david I’m trying to determine what needs to be done such that the power meter value / data that is presented in the DATA tab is obtained.
What are you looking for / are pulling?
I am in the midst of adding support for all connected sensors to be written to the FIT file to have the SN / Battery Level and all that
Tx
1 Like
david
14 November 2024 13:59
2
Sure. The following fields are used from the device_info messages:
device_type: Must be AntplusDeviceType.BIKE_POWER (11)
manufacturer & product: Used for the name. If Garmin then product is expanded if possible
serial_number
battery_status
The crank length is derived according to this post:
There might be more than one PM in which case one is chosen as follows:
for (PowerMeter pm : pms) {
if (pm.name != null && pm.serialNo != null && !pm.serialNo.isBlank()) return pm;
}
return pms.get(0);
app4g
14 November 2024 14:06
3
ok thanks…
I got it to work using the Activity Power Meter Custom Field
{
let power_meter
for (let di of icu.fit.device_info) {
if (di.device_type?.value !== 11 /* Power Meter /) continue
let manufacturer = di.manufacturer?.valueName
/ if (!manufacturer) continue */
let serial = di.serial_number?.valueName
/*if (!serial) continue */
let product = di.product?.valueName
/if (!product) continue /
power_meter = manufacturer + (product ? " " + product : “”) + (serial ? " " + serial : “”)
}
power_meter
}
but nothing is shown on the DATA tab. That’s the reason I was thinking there’s something I’m missing
david
14 November 2024 14:21
4
The data tab shows fields on the activity that are filled in when the fit file is processed and others when the activity is analysed. If you have that stuff in the fit file it should show up.
app4g
14 November 2024 14:34
5
Have tried re-analyse and re-process
david
14 November 2024 14:49
6
It looks like you are missing “product”. Intervals.icu requires that and “manufacturer”.
1 Like