An open API service indexing awesome lists of open source software.

https://github.com/deadblackclover/pc-beeper

The most primitive audio device available on PC-compatible systems with characteristic "beeps" and "squeaks"
https://github.com/deadblackclover/pc-beeper

beep no-std pc-beeper pc-speaker rust

Last synced: about 1 year ago
JSON representation

The most primitive audio device available on PC-compatible systems with characteristic "beeps" and "squeaks"

Awesome Lists containing this project

README

          

# pc-beeper

![crates.io](https://img.shields.io/crates/v/pc-beeper.svg)
![docs.rs](https://docs.rs/pc-beeper/badge.svg)

The most primitive audio device available on PC-compatible systems with characteristic "beeps" and "squeaks"

## Usage
```rust
use pc_beeper::Speaker;

let mut speaker = Speaker::new();
speaker.beep(1000, 10);
```