Update documentation

This commit is contained in:
Joel 2021-01-16 23:43:56 +01:00
parent 81875a2cc5
commit 0dbfc5fe6b
No known key found for this signature in database
GPG key ID: BDDDBECD0808290E
53 changed files with 18837 additions and 0 deletions

View file

@ -0,0 +1,25 @@
.. _lib_buzzer:
Buzzer
#######
Class Documentation
********************
.. autoclass:: compLib.Buzzer.Buzzer
:members:
Examples
*********
Turning buzzer on and off
==========================
.. code-block:: python
import time
from compLib.Buzzer import Buzzer
Buzzer.set(True)
time.sleep(1)
Buzzer.set(False)