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
00001 /*************************************************** 00002 This is a library for grove sound sensor 00003 00004 Written by Nerea Gómez. 00005 00006 ****************************************************/ 00007 00008 #ifndef MBED_GROVE_SOUND_H 00009 #define MBED_GROVE_SOUND_H 00010 #include "mbed.h" 00011 00012 class GROVE_SOUND { 00013 public: 00014 00015 GROVE_SOUND(PinName pin); 00016 float get_decibels(); 00017 00018 private: 00019 00020 AnalogIn _pin; 00021 float decibels; 00022 float values[1000]; 00023 float sum; 00024 float average; 00025 00026 }; 00027 00028 #endif 00029
Generated on Thu Jul 14 2022 15:31:39 by
1.7.2