upm  0.2.0
Sensor/Actuator repository for libmraa (v0.6.1)
Public Member Functions | Protected Attributes

C++ API for Buzzer component. More...

Detailed Description

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.

int chord[] = { DO, RE, MI, FA, SOL, LA, SI, DO, SI };
// create Buzzer instance
upm::Buzzer* sound = new upm::Buzzer(5);
// print sensor name
std::cout << sound->name() << std::endl;
// play sound (DO, RE, MI, etc...), pausing for 0.1 seconds between notes
for (int chord_ind = 0; chord_ind < 7; chord_ind++) {
// play each note for one second
std::cout << sound->playSound(chord[chord_ind], 1000000) << std::endl;
usleep(100000);
}

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
 

Constructor & Destructor Documentation

Buzzer ( int  pinNumber)

Instantiates a Buzzer object.

Parameters
pinNumberBuzzer pin number

Here is the call graph for this function:

~Buzzer ( )

Buzzer object destructor.

Here is the call graph for this function:

Member Function Documentation

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

Parameters
notethe note to be played (DO, RE, MI, etc...) or frequency
delaytime in microseconds for playing the sound, a value of 0 plays the sound indefinitely
Returns
the note played

Here is the call graph for this function:

void stopSound ( )

Stops the sound currently playing. Has to be called when playSound() does not set a delay value.

Here is the caller graph for this function:

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, ...

Parameters
volthe value to set the volume to from 0.0 to 1.0

Here is the caller graph for this function:

float getVolume ( )

Gets the buzzer volume.

Returns
the value the volume was set to
std::string name ( )
inline

Return name of the component.

Returns
name of the sensor

The documentation for this class was generated from the following files: