Send a beep to a speaker

Dependencies:   mbed

beep.h

Committer:
faif
Date:
2017-01-22
Revision:
0:c2090cf6119d

File content as of revision 0:c2090cf6119d:

#ifndef BEEP_H
#define BEEP_H

DigitalOut speaker(p20);
DigitalIn button(p18);

void play_sound(DigitalOut& out, float delay);

#endif