Play simple tunes on a piezo buzzer asynchronously
Project description
Introduction
Play simple tunes on a piezo buzzer asynchronously
Dependencies
This driver depends on:
Installing from PyPI
On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally from PyPI. To install for current user:
pip3 install circuitpython-async-buzzer
To install system-wide (this may be required in some cases):
sudo pip3 install circuitpython-async-buzzer
To install in a virtual environment in your current project:
mkdir project-name && cd project-name
python3 -m venv .venv
source .env/bin/activate
pip3 install circuitpython-async-buzzer
Installing to a Connected CircuitPython Device with Circup
Make sure that you have circup installed in your Python environment. Install it with the following command if necessary:
pip3 install circup
With circup installed and your CircuitPython device connected use the following command to install:
circup install async_buzzer
Or the following command to update an existing version:
circup update
Usage Example
import asyncio
import pwmio
from async_buzzer import Buzzer
import board
tune = [
("E5",500),
("G5",500),
("A5",1000),
("E5",500),
("G5",500),
("B5",250),
("A5",750),
("E5",500),
("G5",500),
("A5",1000),
("G5",500),
("E5",1500)
]
pwm = pwmio.PWMOut(board.D10, variable_frequency=True)
buzzer = Buzzer(pwm)
async def main():
buzzer.play(tune, wait=False)
for i in range(5):
print(i)
await asyncio.sleep(1)
await buzzer.wait()
asyncio.run(main())
Documentation
API documentation for this library can be found on Read the Docs.
For information on building library documentation, please check out this guide.
Contributing
Contributions are welcome! Please read our Code of Conduct before contributing to help this project stay welcoming.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for circuitpython-async-buzzer-1.0.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9da6c35d3120d99216102902db0c18a696be61ed040e8658072163eeb694a174 |
|
MD5 | 79c0649b1b5b0f098eaeb77040753af2 |
|
BLAKE2b-256 | 6cbc0ff10f6d7d54ef5e943286e8961d21b25cd68af454c1cf126e21338017b8 |
Hashes for circuitpython_async_buzzer-1.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 18a693d947a282baba025e93179d71e76e608f96c7958cb3ab7574aa85df8692 |
|
MD5 | 2292ab0d07c51d91e604408d932305c2 |
|
BLAKE2b-256 | 4823d736ba0c44d8dfc7485c114e2ef27b50524cdd2d5b72297326a0ab57938c |