This repository has been archived on 2025-06-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
compLIB/_sources/lib/Buzzer.rst.txt
Konstantin Lampalzer d555d55b2c
Update documentation
2021-01-16 01:55:10 +01:00

25 lines
No EOL
339 B
ReStructuredText

.. _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)