├── .gitattributes ├── .gitignore ├── App.config ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── ICON.ico ├── ICON.png ├── LICENSE ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── README └── image │ ├── ProgramMenu.png │ ├── SetupWizard.png │ ├── download.png │ ├── setup.png │ ├── w1.png │ ├── w2.png │ ├── w3.png │ ├── w4.png │ ├── window.gif │ └── window.png ├── Resources └── RictyDiminished-Regular.ttf ├── SerialMonitorEssential.csproj ├── SerialMonitorEssential.sln ├── SetupSerialMonitorEssential └── SetupSerialMonitorEssential.vdproj └── app.manifest /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/771-8bit/SerialMonitorEssential/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/771-8bit/SerialMonitorEssential/HEAD/.gitignore -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/771-8bit/SerialMonitorEssential/HEAD/App.config -------------------------------------------------------------------------------- /Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/771-8bit/SerialMonitorEssential/HEAD/Form1.Designer.cs -------------------------------------------------------------------------------- /Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/771-8bit/SerialMonitorEssential/HEAD/Form1.cs -------------------------------------------------------------------------------- /Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/771-8bit/SerialMonitorEssential/HEAD/Form1.resx -------------------------------------------------------------------------------- /ICON.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/771-8bit/SerialMonitorEssential/HEAD/ICON.ico -------------------------------------------------------------------------------- /ICON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/771-8bit/SerialMonitorEssential/HEAD/ICON.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/771-8bit/SerialMonitorEssential/HEAD/LICENSE -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/771-8bit/SerialMonitorEssential/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/771-8bit/SerialMonitorEssential/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/771-8bit/SerialMonitorEssential/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/771-8bit/SerialMonitorEssential/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/771-8bit/SerialMonitorEssential/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/771-8bit/SerialMonitorEssential/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/771-8bit/SerialMonitorEssential/HEAD/README.md -------------------------------------------------------------------------------- /README/image/ProgramMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/771-8bit/SerialMonitorEssential/HEAD/README/image/ProgramMenu.png -------------------------------------------------------------------------------- /README/image/SetupWizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/771-8bit/SerialMonitorEssential/HEAD/README/image/SetupWizard.png -------------------------------------------------------------------------------- /README/image/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/771-8bit/SerialMonitorEssential/HEAD/README/image/download.png -------------------------------------------------------------------------------- /README/image/setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/771-8bit/SerialMonitorEssential/HEAD/README/image/setup.png -------------------------------------------------------------------------------- /README/image/w1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/771-8bit/SerialMonitorEssential/HEAD/README/image/w1.png -------------------------------------------------------------------------------- /README/image/w2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/771-8bit/SerialMonitorEssential/HEAD/README/image/w2.png -------------------------------------------------------------------------------- /README/image/w3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/771-8bit/SerialMonitorEssential/HEAD/README/image/w3.png -------------------------------------------------------------------------------- /README/image/w4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/771-8bit/SerialMonitorEssential/HEAD/README/image/w4.png -------------------------------------------------------------------------------- /README/image/window.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/771-8bit/SerialMonitorEssential/HEAD/README/image/window.gif -------------------------------------------------------------------------------- /README/image/window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/771-8bit/SerialMonitorEssential/HEAD/README/image/window.png -------------------------------------------------------------------------------- /Resources/RictyDiminished-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/771-8bit/SerialMonitorEssential/HEAD/Resources/RictyDiminished-Regular.ttf -------------------------------------------------------------------------------- /SerialMonitorEssential.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/771-8bit/SerialMonitorEssential/HEAD/SerialMonitorEssential.csproj -------------------------------------------------------------------------------- /SerialMonitorEssential.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/771-8bit/SerialMonitorEssential/HEAD/SerialMonitorEssential.sln -------------------------------------------------------------------------------- /SetupSerialMonitorEssential/SetupSerialMonitorEssential.vdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/771-8bit/SerialMonitorEssential/HEAD/SetupSerialMonitorEssential/SetupSerialMonitorEssential.vdproj -------------------------------------------------------------------------------- /app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/771-8bit/SerialMonitorEssential/HEAD/app.manifest --------------------------------------------------------------------------------