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

C++ API for the GroveSpeaker speaker. More...

Detailed Description

UPM module for the GroveSpeaker. This sensor can generate different tones and sounds depending on the frequency of the input signal.

// Instantiate a Grove Speaker on digital pin D2
// Play all 7 of the lowest notes
speaker->playAll();
// Play a medium C-sharp
speaker->playSound('c', true, "med");

Public Member Functions

 GroveSpeaker (int pin)
 
 ~GroveSpeaker ()
 
void playAll ()
 
void playSound (char letter, bool sharp, std::string vocalWeight)
 

Constructor & Destructor Documentation

GroveSpeaker ( int  pin)

GroveSpeaker Constructor

Parameters
pindigital pin to use

GroveSpeaker Destructor

Member Function Documentation

void playAll ( )

Play all alto notes (lowest notes)

Here is the call graph for this function:

void playSound ( char  letter,
bool  sharp,
std::string  vocalWeight 
)

Play a sound and note whether it's sharp or not

Parameters
lettercharacter name of note ('a', 'b', 'c', 'd', 'e', 'f', or 'g')
sharpif true, play sharp version of note; otherwise, do not
vocalWeightstring to determine whether to play low ("low"), medium ("med"), or high ("high") note

Here is the caller graph for this function:


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