The creators of the Core Body Temperature monitor have been developing protocols and training procedures to justify spending the 249.95 CHF on their device.
These are broadly outlined at How to use CORE, but seem to follow the pattern of using power meters: i.e. do a test/session to establish zones; then train within certain zones; monitor response
Could this be added to intervals.icu, both on a session and a calendar level?
Could this be expanded to any metric, so you could have times in cadence zones, or time in L/R balance zones? (I don’t even know why this would be helpful, but it seems once you’d done it for HR, Pwr and Temp, you may as well do it for everything)
Hi there I have purchased a CoreBody sensor and I have been using it with great results.
I think you can add a chart to visualize data in Intervals.Icu but for whatever reason its not working for me. How to view / analyse the data from CORE | CORE Help Center
I am using a wahoo device and my intervals icu is connected to strava
perphaps take a look at custom fields? David has implemented a way for users to create scripts that will run thru the activity streams and then process them.
I would like to modify this script (see below) so that it responds to this logic :
If skin_temperature is below 34, ignore core_temperature and ignore time
If skin_temperature is above 37, count time
if core_temperature is above 38.5 and skin_temperature is above 34, count time.
My logic is to parse out the runs in do outside in winter, and count the passive heat training (hot baths, sauna, etc).
My javascript knowledge is null, so any help is appreciated.
Thanks!
temps = streams.get(“core_temperature”).data
temp_threshold_lower = 38.5
temp_threshold_upper = 39.5
time = 0
for(let i = 0; i < temps.length; i++) {
let t = temps[i]
if (t >= temp_threshold_lower && t <= temp_threshold_upper) time +=1
}
time/60
for (i = 0; i < temps.length; i++) {
coreTemp = temps[i];
skinTemp = Tskin[i];
if (skinTemp < Tskin_threshold_lower) {
continue;
}
if (skinTemp > Tskin_threshold_upper) {
time += 1; // Count time in seconds
}
else if (coreTemp > temps_threshold_lower && skinTemp > Tskin_threshold_lower) {
time += 1; // Count time in seconds
}
It definitely would be good to get the time in zones implemented. I bagged myself a Core v1 in the sale with v2 coming out, so quite interested in understanding my body’s relationship with temperature more.