add cadence/power/hr to json

This commit is contained in:
Daniel Barlow 2024-11-06 19:13:47 +00:00
parent 8bd67b2096
commit e111a323f7
2 changed files with 7 additions and 4 deletions

View File

@ -61,9 +61,9 @@ toPoint entity =
in Point
pos
(trkptTime tkp)
Nothing
Nothing
Nothing
(trkptCadence tkp)
(trkptPower tkp)
(trkptHeartRate tkp)
save p = do insert $ fromPoint p

View File

@ -58,7 +58,10 @@ instance ToJSON Point where
toJSON Point {..} =
object
[ "pos" .= pos,
"time" .= time
"time" .= time,
"cadence" .= cadence,
"power" .= power,
"heartRate" .= heartRate
]
-- TODO do we even need this type?