wasp: watch: docstrings for the watch namespace

This commit is contained in:
Daniel Thompson 2020-05-14 23:22:57 +01:00
parent d11e6eb4a1
commit e391480b50
2 changed files with 42 additions and 0 deletions

View file

@ -12,6 +12,8 @@ System
.. automodule:: wasp
:members:
.. automodule:: watch
.. automodule:: draw565
:members:

View file

@ -1,6 +1,46 @@
# SPDX-License-Identifier: LGPL-3.0-or-later
# Copyright (C) 2020 Daniel Thompson
"""Watch driver instances
~~~~~~~~~~~~~~~~~~~~~~~~~
.. data:: watch.backlight
Backlight driver, typically a board specific driver with a single
:py:meth:`set` method.
.. data:: watch.battery
Battery driver, typically the generic metering driver,
:py:class:`drivers.battery.Battery`.
.. data:: watch.button
An instance of machine.Pin (or a signal) that an application can use
to poll the state of the hardware button.
.. data:: watch.display
Display driver, typically :py:class:`drivers.st7789.ST7789_SPI`.
.. data:: watch.drawable
Drawing library for :py:data:`watch.display`. It will be adapted to match the
bit depth of the display, :py:class:`draw565.Draw565` for example.
.. data:: watch.rtc
RTC driver, typically :py:class:`drivers.nrf_rtc.RTC`.
.. data:: watch.touch
Touchscreen driver, for example :py:class:`drivers.cst816s.CST816S`.
.. data:: watch.vibrator
Vibration motor driver, typically :py:class:`drivers.vibrator.Vibrator`.
"""
import time
def sleep_ms(ms):
time.sleep(ms / 1000)