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.
strings.h
00001 #pragma once 00002 #include "string" 00003 00004 class strings 00005 { 00006 public: 00007 strings(int string_num); 00008 strings(); 00009 ~strings(void); 00010 00011 void inc_index(); 00012 void reset_index(); 00013 char* get_note(); 00014 float get_freq(); 00015 00016 protected: 00017 void set_values(int string_num); 00018 00019 private: 00020 float frequencies[9]; 00021 char *notes [9]; 00022 int index; 00023 float threshold[6]; 00024 };
Generated on Sat Jul 30 2022 10:40:13 by
1.7.2