I am implementing Sensors in my WatchApp and enable using:
Snsr.setEnabledSensors( [Snsr.SENSOR_HEARTRATE, Snsr.SENSOR_FOOTPOD, Snsr.SENSOR_STRIDE] );
Snsr.enableSensorEvents( method(:onSnsr) );
With the callback function onSnsr() I read sensor information. I can get heartRate but I don’t see a field for foot pod or stride. How to I retrieve information for foot pod and stride?