Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update named tuple doc
  • Loading branch information
kattni committed Apr 9, 2020
commit 82aae019eaf53da8f4adb81eb282ebc8dc9c19e2
8 changes: 4 additions & 4 deletions adafruit_ble_cycling_speed_and_cadence.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,20 +63,20 @@
)
"""Namedtuple for measurement values.

.. py:attribute:: CSCMeasurementValues.cumulative_wheel_revolutions
.. :attribute:: cumulative_wheel_revolutions:

Cumulative wheel revolutions (int).

.. py:attribute:: CSCMeasurementValues.last_wheel_event_time
.. :attribute:: last_wheel_event_time:

Time (int), units in 1024ths of a second, when last wheel event was measured.
This is a monotonically increasing clock value, not an interval.

.. py:attribute:: CSCMeasurementValues.cumulative_crank_revolutions
.. :attribute:: cumulative_crank_revolutions:

Cumulative crank revolutions (int).

.. py:attribute:: CSCMeasurementValues.last_crank_event_time
.. :attribute:: last_crank_event_time:

Time (int), units in 1024ths of a second, when last crank event was measured.
This is a monotonically increasing clock value, not an interval.
Expand Down