upm
0.2.0
Sensor/Actuator repository for libmraa (v0.6.1)
|
C++ API for Buzzer component. More...
This file defines the Buzzer C++ interface for libbuzzer. This sensor can make different tones when connected to a pin capable of analog pulse-width modulation. It emits sound using a piezoelectric material that vibrates at different frequencies based on the input voltage.
Public Member Functions | |
Buzzer (int pinNumber) | |
~Buzzer () | |
int | playSound (int note, int delay) |
void | stopSound () |
void | setVolume (float vol) |
float | getVolume () |
std::string | name () |
Protected Attributes | |
std::string | m_name |
Buzzer | ( | int | pinNumber | ) |
int playSound | ( | int | note, |
int | delay | ||
) |
Play a tone for a certain amount of time or indefinitely. When delay is not used, the sound can be stopped by calling stopSound().
note | the note to be played (DO, RE, MI, etc...) or frequency |
delay | time in microseconds for playing the sound, a value of 0 plays the sound indefinitely |
void stopSound | ( | ) |
Stops the sound currently playing. Has to be called when playSound() does not set a delay value.
void setVolume | ( | float | vol | ) |
Sets the volume for the buzzer, but may affect the sound timbre. Works best with halved values, e.g. 1.0, 0.5, 0.25, ...
vol | the value to set the volume to from 0.0 to 1.0 |
float getVolume | ( | ) |
Gets the buzzer volume.
|
inline |
Return name of the component.