Initial commit — WPF guitar note name tutor using FFT frequency detection

This commit is contained in:
2026-05-09 03:17:07 +00:00
commit 99b73f710a
30 changed files with 1637 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
using System;
namespace SoundCapture
{
public class SoundCaptureException : Exception
{
public SoundCaptureException(string message)
: base(message)
{
}
}
}