├── .gitattributes ├── .gitignore ├── App.config ├── Bounds.cs ├── Forms ├── About.Designer.cs ├── About.cs ├── About.resx ├── ChangeSettings.Designer.cs ├── ChangeSettings.cs ├── ChangeSettings.resx ├── EnterText.Designer.cs ├── EnterText.cs ├── EnterText.resx ├── GCodePreview.Designer.cs ├── GCodePreview.Preview.cs ├── GCodePreview.cs ├── GCodePreview.resx ├── GenHeightMap.Designer.cs ├── GenHeightMap.cs ├── GenHeightMap.resx ├── NewHeightMap.Designer.cs ├── NewHeightMap.cs ├── NewHeightMap.resx ├── ThreeFloatPicker.Designer.cs ├── ThreeFloatPicker.cs └── ThreeFloatPicker.resx ├── GCode ├── Arc.cs ├── GCodeCommand.cs ├── GCodeParser.cs ├── GCodeUtils.cs ├── Movement.cs ├── OtherCode.cs └── Straight.cs ├── GRBL.cs ├── GrblHeightProbe2.csproj ├── HeightMap.cs ├── Helpers.cs ├── Main ├── Main.Buttons.cs ├── Main.Console.cs ├── Main.Designer.cs ├── Main.HeightMapIO.cs ├── Main.OpenGCode.cs ├── Main.Preview.cs ├── Main.Probing.cs ├── Main.UpdateNotifier.cs ├── Main.cs └── Main.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs └── Resources.resx ├── README.md ├── Resources ├── coin.png ├── logo.ico ├── logo.svg ├── pause52.png └── play124.png ├── Settings.Designer.cs ├── Settings.settings └── Vector3.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/.gitignore -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/App.config -------------------------------------------------------------------------------- /Bounds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Bounds.cs -------------------------------------------------------------------------------- /Forms/About.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Forms/About.Designer.cs -------------------------------------------------------------------------------- /Forms/About.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Forms/About.cs -------------------------------------------------------------------------------- /Forms/About.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Forms/About.resx -------------------------------------------------------------------------------- /Forms/ChangeSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Forms/ChangeSettings.Designer.cs -------------------------------------------------------------------------------- /Forms/ChangeSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Forms/ChangeSettings.cs -------------------------------------------------------------------------------- /Forms/ChangeSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Forms/ChangeSettings.resx -------------------------------------------------------------------------------- /Forms/EnterText.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Forms/EnterText.Designer.cs -------------------------------------------------------------------------------- /Forms/EnterText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Forms/EnterText.cs -------------------------------------------------------------------------------- /Forms/EnterText.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Forms/EnterText.resx -------------------------------------------------------------------------------- /Forms/GCodePreview.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Forms/GCodePreview.Designer.cs -------------------------------------------------------------------------------- /Forms/GCodePreview.Preview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Forms/GCodePreview.Preview.cs -------------------------------------------------------------------------------- /Forms/GCodePreview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Forms/GCodePreview.cs -------------------------------------------------------------------------------- /Forms/GCodePreview.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Forms/GCodePreview.resx -------------------------------------------------------------------------------- /Forms/GenHeightMap.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Forms/GenHeightMap.Designer.cs -------------------------------------------------------------------------------- /Forms/GenHeightMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Forms/GenHeightMap.cs -------------------------------------------------------------------------------- /Forms/GenHeightMap.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Forms/GenHeightMap.resx -------------------------------------------------------------------------------- /Forms/NewHeightMap.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Forms/NewHeightMap.Designer.cs -------------------------------------------------------------------------------- /Forms/NewHeightMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Forms/NewHeightMap.cs -------------------------------------------------------------------------------- /Forms/NewHeightMap.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Forms/NewHeightMap.resx -------------------------------------------------------------------------------- /Forms/ThreeFloatPicker.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Forms/ThreeFloatPicker.Designer.cs -------------------------------------------------------------------------------- /Forms/ThreeFloatPicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Forms/ThreeFloatPicker.cs -------------------------------------------------------------------------------- /Forms/ThreeFloatPicker.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Forms/ThreeFloatPicker.resx -------------------------------------------------------------------------------- /GCode/Arc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/GCode/Arc.cs -------------------------------------------------------------------------------- /GCode/GCodeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/GCode/GCodeCommand.cs -------------------------------------------------------------------------------- /GCode/GCodeParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/GCode/GCodeParser.cs -------------------------------------------------------------------------------- /GCode/GCodeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/GCode/GCodeUtils.cs -------------------------------------------------------------------------------- /GCode/Movement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/GCode/Movement.cs -------------------------------------------------------------------------------- /GCode/OtherCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/GCode/OtherCode.cs -------------------------------------------------------------------------------- /GCode/Straight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/GCode/Straight.cs -------------------------------------------------------------------------------- /GRBL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/GRBL.cs -------------------------------------------------------------------------------- /GrblHeightProbe2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/GrblHeightProbe2.csproj -------------------------------------------------------------------------------- /HeightMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/HeightMap.cs -------------------------------------------------------------------------------- /Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Helpers.cs -------------------------------------------------------------------------------- /Main/Main.Buttons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Main/Main.Buttons.cs -------------------------------------------------------------------------------- /Main/Main.Console.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Main/Main.Console.cs -------------------------------------------------------------------------------- /Main/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Main/Main.Designer.cs -------------------------------------------------------------------------------- /Main/Main.HeightMapIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Main/Main.HeightMapIO.cs -------------------------------------------------------------------------------- /Main/Main.OpenGCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Main/Main.OpenGCode.cs -------------------------------------------------------------------------------- /Main/Main.Preview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Main/Main.Preview.cs -------------------------------------------------------------------------------- /Main/Main.Probing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Main/Main.Probing.cs -------------------------------------------------------------------------------- /Main/Main.UpdateNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Main/Main.UpdateNotifier.cs -------------------------------------------------------------------------------- /Main/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Main/Main.cs -------------------------------------------------------------------------------- /Main/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Main/Main.resx -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/README.md -------------------------------------------------------------------------------- /Resources/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Resources/coin.png -------------------------------------------------------------------------------- /Resources/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Resources/logo.ico -------------------------------------------------------------------------------- /Resources/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Resources/logo.svg -------------------------------------------------------------------------------- /Resources/pause52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Resources/pause52.png -------------------------------------------------------------------------------- /Resources/play124.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Resources/play124.png -------------------------------------------------------------------------------- /Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Settings.Designer.cs -------------------------------------------------------------------------------- /Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Settings.settings -------------------------------------------------------------------------------- /Vector3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin2250/GrblHeightProbe2/HEAD/Vector3.cs --------------------------------------------------------------------------------