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"
- Host: GitHub
- URL: https://github.com/deadblackclover/pc-beeper
- Owner: deadblackclover
- License: gpl-3.0
- Created: 2020-07-23T14:35:34.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-08-01T04:36:18.000Z (almost 4 years ago)
- Last Synced: 2024-10-11T14:48:31.975Z (over 1 year ago)
- Topics: beep, no-std, pc-beeper, pc-speaker, rust
- Language: Rust
- Homepage: https://docs.rs/pc-beeper/
- Size: 26.4 KB
- Stars: 5
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pc-beeper


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);
```