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
00001 #include "mbed.h" 00002 00003 class Microphone 00004 { 00005 public: 00006 Microphone(PinName pin); 00007 00008 // Returns the raw float value on the pin 00009 float read(); 00010 operator float (); 00011 00012 // Returns a scaled uint8 for transmission over the RF channel 00013 uint8_t getData(); 00014 00015 private: 00016 AnalogIn _pin; 00017 float dc; 00018 };
Generated on Tue Jul 12 2022 11:14:19 by
1.7.2