diff --git a/epicardium/epicardium.h b/epicardium/epicardium.h index 2ad19134960d6ec35e110266ea0abab3754b255a..3e1df57875d60c776b0acb4afbdf614ce81728d7 100644 --- a/epicardium/epicardium.h +++ b/epicardium/epicardium.h @@ -970,7 +970,7 @@ struct max86150_sensor_data { * - ``-EINVAL``: config->ppg_sample_rate is not one of 10, 20, 50, 84, 100, 200 * or config_size is not size of config. * - * .. versionadded:: 1.13 + * .. versionadded:: 1.16 */ API(API_MAX86150_ENABLE, int epic_max86150_enable_sensor(struct max86150_sensor_config *config, size_t config_size)); @@ -979,7 +979,7 @@ API(API_MAX86150_ENABLE, int epic_max86150_enable_sensor(struct max86150_sensor_ * * :returns: 0 in case of success or forward negative error value from stream_deregister. * - * .. versionadded:: 1.13 + * .. versionadded:: 1.16 */ API(API_MAX86150_DISABLE, int epic_max86150_disable_sensor()); diff --git a/pycardium/modules/py/leds.py b/pycardium/modules/py/leds.py index db09834cc63a42c5885bb2dd00dc0d0e1544a3fb..043cef19ffe07ee925eaed63ea91d2d72805d219 100644 --- a/pycardium/modules/py/leds.py +++ b/pycardium/modules/py/leds.py @@ -104,7 +104,7 @@ def flash_rocket(led, value, millis): :param int value: brightness value (0 < value < 32) :param int millis: duration of the rocket being on in milliseconds. - .. versionadded:: 1.?? + .. versionadded:: 1.16 """ return sys_leds.flash_rocket(led, value, millis) diff --git a/pycardium/modules/py/max86150.py b/pycardium/modules/py/max86150.py index c52665c90b53564f28c6645ee923fd84b621c54c..6040eed0a5e3440dd95865b6e9d478b1647f1919 100644 --- a/pycardium/modules/py/max86150.py +++ b/pycardium/modules/py/max86150.py @@ -22,6 +22,8 @@ class MAX86150: print("Red: {} Infrared: {} ECG: {}", sample.red, sample.infrared, sample.ecg) m.close() + + .. versionadded:: 1.16 """ def __init__(self, callback=None, sample_buffer_len=128, sample_rate=200):