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.
GROVE_SOUND.h
- Committer:
- ngomez
- Date:
- 2017-07-02
- Revision:
- 0:fa75a7cf49b6
File content as of revision 0:fa75a7cf49b6:
/*************************************************** This is a library for grove sound sensor Written by Nerea Gómez. ****************************************************/ #ifndef MBED_GROVE_SOUND_H #define MBED_GROVE_SOUND_H #include "mbed.h" class GROVE_SOUND { public: GROVE_SOUND(PinName pin); float get_decibels(); private: AnalogIn _pin; float decibels; float values[1000]; float sum; float average; }; #endif