Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed 4DGL-uLCD-SE mbed-rtos nRF24L01P
Microphone.h
- Committer:
- Nurchu
- Date:
- 2018-04-18
- Revision:
- 8:0222df74596e
- Parent:
- 6:7c72902a735f
- Child:
- 20:e068469ffb89
File content as of revision 8:0222df74596e:
#include "mbed.h" class Microphone { public: Microphone(PinName pin); float read(); operator float (); uint8_t getData(); private: AnalogIn _pin; };