├── .travis.yml ├── README.md ├── Serial Lab.sln ├── Serial Lab ├── AboutBox1.Designer.cs ├── AboutBox1.cs ├── AboutBox1.resx ├── App.config ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Serial Lab.csproj ├── Serial Lab.csproj.user ├── Serial Lab.user └── icon.ico ├── SerialLabSetupV1.0.0.msi └── imgs ├── logo.png ├── plotter.png ├── sc1.png ├── sc2.png └── sc3.png /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsayde/Serial-Lab/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsayde/Serial-Lab/HEAD/README.md -------------------------------------------------------------------------------- /Serial Lab.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsayde/Serial-Lab/HEAD/Serial Lab.sln -------------------------------------------------------------------------------- /Serial Lab/AboutBox1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsayde/Serial-Lab/HEAD/Serial Lab/AboutBox1.Designer.cs -------------------------------------------------------------------------------- /Serial Lab/AboutBox1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsayde/Serial-Lab/HEAD/Serial Lab/AboutBox1.cs -------------------------------------------------------------------------------- /Serial Lab/AboutBox1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsayde/Serial-Lab/HEAD/Serial Lab/AboutBox1.resx -------------------------------------------------------------------------------- /Serial Lab/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsayde/Serial-Lab/HEAD/Serial Lab/App.config -------------------------------------------------------------------------------- /Serial Lab/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsayde/Serial-Lab/HEAD/Serial Lab/Form1.Designer.cs -------------------------------------------------------------------------------- /Serial Lab/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsayde/Serial-Lab/HEAD/Serial Lab/Form1.cs -------------------------------------------------------------------------------- /Serial Lab/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsayde/Serial-Lab/HEAD/Serial Lab/Form1.resx -------------------------------------------------------------------------------- /Serial Lab/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsayde/Serial-Lab/HEAD/Serial Lab/Program.cs -------------------------------------------------------------------------------- /Serial Lab/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsayde/Serial-Lab/HEAD/Serial Lab/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Serial Lab/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsayde/Serial-Lab/HEAD/Serial Lab/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Serial Lab/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsayde/Serial-Lab/HEAD/Serial Lab/Properties/Resources.resx -------------------------------------------------------------------------------- /Serial Lab/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsayde/Serial-Lab/HEAD/Serial Lab/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Serial Lab/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsayde/Serial-Lab/HEAD/Serial Lab/Properties/Settings.settings -------------------------------------------------------------------------------- /Serial Lab/Serial Lab.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsayde/Serial-Lab/HEAD/Serial Lab/Serial Lab.csproj -------------------------------------------------------------------------------- /Serial Lab/Serial Lab.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsayde/Serial-Lab/HEAD/Serial Lab/Serial Lab.csproj.user -------------------------------------------------------------------------------- /Serial Lab/Serial Lab.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsayde/Serial-Lab/HEAD/Serial Lab/Serial Lab.user -------------------------------------------------------------------------------- /Serial Lab/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsayde/Serial-Lab/HEAD/Serial Lab/icon.ico -------------------------------------------------------------------------------- /SerialLabSetupV1.0.0.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsayde/Serial-Lab/HEAD/SerialLabSetupV1.0.0.msi -------------------------------------------------------------------------------- /imgs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsayde/Serial-Lab/HEAD/imgs/logo.png -------------------------------------------------------------------------------- /imgs/plotter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsayde/Serial-Lab/HEAD/imgs/plotter.png -------------------------------------------------------------------------------- /imgs/sc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsayde/Serial-Lab/HEAD/imgs/sc1.png -------------------------------------------------------------------------------- /imgs/sc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsayde/Serial-Lab/HEAD/imgs/sc2.png -------------------------------------------------------------------------------- /imgs/sc3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsayde/Serial-Lab/HEAD/imgs/sc3.png --------------------------------------------------------------------------------