├── .gitattributes ├── .gitignore ├── CNC AppLaunch ├── CNC AppLaunch.sln └── CNC AppLaunch │ ├── App.config │ ├── App.ico │ ├── AppLaunch.cs │ ├── CNC AppLaunch.csproj │ ├── CNC AppLaunch.csproj.user │ └── Properties │ └── AssemblyInfo.cs ├── CNC Controls Camera ├── CNC Controls Camera.sln └── CNC Controls Camera │ ├── App.ico │ ├── CNC Controls Camera.csproj │ ├── Camera.xaml │ ├── Camera.xaml.cs │ ├── CameraControl.xaml │ ├── CameraControl.xaml.cs │ ├── ConfigControl.xaml │ ├── ConfigControl.xaml.cs │ └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── CNC Controls Dragknife ├── App.ico ├── CNC Controls Dragknife.csproj ├── DragKnifeDialog.xaml ├── DragKnifeDialog.xaml.cs ├── DragknifeViewModel.cs └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── CNC Controls Lathe ├── CNC Controls Lathe.sln └── CNC Controls Lathe │ ├── App.ico │ ├── BaseViewModel.cs │ ├── CNC Controls Lathe.csproj │ ├── ConfigControl.xaml │ ├── ConfigControl.xaml.cs │ ├── Converters.cs │ ├── CssControl.xaml │ ├── CssControl.xaml.cs │ ├── FacingLogic.cs │ ├── FacingWizard.xaml │ ├── FacingWizard.xaml.cs │ ├── ILatheWizardTab.cs │ ├── LatheWizardsView.xaml │ ├── LatheWizardsView.xaml.cs │ ├── PartingLogic.cs │ ├── PartingWizard.xaml │ ├── PartingWizard.xaml.cs │ ├── ProfileControl.xaml │ ├── ProfileControl.xaml.cs │ ├── ProfileDialog.xaml │ ├── ProfileDialog.xaml.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Resources │ ├── ToolChamfer.png │ ├── ToolRadius.png │ └── btnOptions.png │ ├── SpringPassControl.xaml │ ├── SpringPassControl.xaml.cs │ ├── TaperControl.xaml │ ├── TaperControl.xaml.cs │ ├── ThreadData.cs │ ├── ThreadLogic.cs │ ├── ThreadViewModel.cs │ ├── ThreadingWizard.xaml │ ├── ThreadingWizard.xaml.cs │ ├── TurningLogic.cs │ ├── TurningWizard.xaml │ ├── TurningWizard.xaml.cs │ └── WizardConfig.cs ├── CNC Controls Probing ├── CNC Controls Probing.sln └── CNC Controls Probing │ ├── App.ico │ ├── CNC Controls Probing.csproj │ ├── CenterFinderControl.xaml │ ├── CenterFinderControl.xaml.cs │ ├── ConfigControl.xaml │ ├── ConfigControl.xaml.cs │ ├── Converters.cs │ ├── CsSelectControl.xaml │ ├── CsSelectControl.xaml.cs │ ├── EdgeFinderControl.xaml │ ├── EdgeFinderControl.xaml.cs │ ├── EdgeFinderIntControl.xaml │ ├── EdgeFinderIntControl.xaml.cs │ ├── GCodeTransform.cs │ ├── HeightMap.cs │ ├── HeightMapControl.xaml │ ├── HeightMapControl.xaml.cs │ ├── HeightMapViewModel.cs │ ├── IProbeTab.cs │ ├── LibStrings.xaml │ ├── MacroDialog.xaml │ ├── MacroDialog.xaml.cs │ ├── ProbeVerify.xaml │ ├── ProbeVerify.xaml.cs │ ├── ProbingConfig.cs │ ├── ProbingMacros.cs │ ├── ProbingView.xaml │ ├── ProbingView.xaml.cs │ ├── ProbingViewModel.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Resources │ ├── App.ico │ ├── Center finderI.xar │ ├── Center finderO.xar │ ├── CenterO.png │ ├── CornerID.png │ ├── EFI.png │ ├── Edge finder internal.xar │ ├── Edge finder.xar │ ├── Rotater.png │ ├── Rotater.xar │ ├── RotaterAB.png │ ├── RotaterAB2.png │ ├── RotaterAD.png │ ├── RotaterCB.png │ ├── RotaterCD.png │ ├── centerI.png │ ├── cornerA.png │ ├── cornerB.png │ ├── cornerC.png │ ├── cornerD.png │ ├── cornerIA.png │ ├── cornerIB.png │ ├── cornerIC.png │ ├── edgeAB.png │ ├── edgeAD.png │ ├── edgeBC.png │ ├── edgeCD.png │ ├── edgeIAB.png │ ├── edgeIAD.png │ ├── edgeIBC.png │ ├── edgeICD.png │ ├── edgeZ.png │ ├── menu_22x22.png │ ├── rotater2.png │ └── xxx.png │ ├── RotationControl.xaml │ ├── RotationControl.xaml.cs │ ├── ToolLengthControl.xaml │ └── ToolLengthControl.xaml.cs ├── CNC Controls ├── CNC Controls.sln └── CNC Controls │ ├── About.xaml │ ├── About.xaml.cs │ ├── App.ico │ ├── AppConfig.cs │ ├── AppConfigView.xaml │ ├── AppConfigView.xaml.cs │ ├── ArcsToLines.cs │ ├── BasicConfigControl.xaml │ ├── BasicConfigControl.xaml.cs │ ├── CNC Controls.csproj │ ├── ConsoleControl.xaml │ ├── ConsoleControl.xaml.cs │ ├── ConsoleWindow.xaml │ ├── ConsoleWindow.xaml.cs │ ├── Converters.cs │ ├── CoolantControl.xaml │ ├── CoolantControl.xaml.cs │ ├── CoordValueSetControl.xaml │ ├── CoordValueSetControl.xaml.cs │ ├── DROBaseControl.xaml │ ├── DROBaseControl.xaml.cs │ ├── DROControl.xaml │ ├── DROControl.xaml.cs │ ├── ErrorsAndAlarms.xaml │ ├── ErrorsAndAlarms.xaml.cs │ ├── FeedControl.xaml │ ├── FeedControl.xaml.cs │ ├── FileActionControl.xaml │ ├── FileActionControl.xaml.cs │ ├── GCode.cs │ ├── GCodeCompress.cs │ ├── GCodeListControl.xaml │ ├── GCodeListControl.xaml.cs │ ├── GCodeRotate.cs │ ├── GCodeRotateDialog.xaml │ ├── GCodeRotateDialog.xaml.cs │ ├── GCodeWrap.cs │ ├── GCodeWrapDialog.xaml │ ├── GCodeWrapDialog.xaml.cs │ ├── GotoBaseControl.xaml │ ├── GotoBaseControl.xaml.cs │ ├── GotoControl.xaml │ ├── GotoControl.xaml.cs │ ├── GotoFlyoutControl.xaml │ ├── GotoFlyoutControl.xaml.cs │ ├── GrblAlarmList.xaml │ ├── GrblAlarmList.xaml.cs │ ├── GrblConfigControl.xaml │ ├── GrblConfigControl.xaml.cs │ ├── GrblConfigView.xaml │ ├── GrblConfigView.xaml.cs │ ├── GrblErrorList.xaml │ ├── GrblErrorList.xaml.cs │ ├── ICNCView.cs │ ├── ICamera.cs │ ├── IGCodeConverter.cs │ ├── IGCodeTransformer.cs │ ├── IGrblConfigTab.cs │ ├── ISidebarControl.cs │ ├── JobControl.xaml │ ├── JobControl.xaml.cs │ ├── JogBaseControl.xaml │ ├── JogBaseControl.xaml.cs │ ├── JogConfigControl.xaml │ ├── JogConfigControl.xaml.cs │ ├── JogControl.xaml │ ├── JogControl.xaml.cs │ ├── JogFlyoutControl.xaml │ ├── JogFlyoutControl.xaml.cs │ ├── JogUiConfigControl.xaml │ ├── JogUiConfigControl.xaml.cs │ ├── KeypressHandler.cs │ ├── LEDControl.xaml │ ├── LEDControl.xaml.cs │ ├── LibStrings.xaml │ ├── LimitsBaseControl.xaml │ ├── LimitsBaseControl.xaml.cs │ ├── LimitsControl.xaml │ ├── LimitsControl.xaml.cs │ ├── MDIControl.xaml │ ├── MDIControl.xaml.cs │ ├── MPGPending.xaml │ ├── MPGPending.xaml.cs │ ├── MachinePositionFlyout.xaml │ ├── MachinePositionFlyout.xaml.cs │ ├── MacroEditor.xaml │ ├── MacroEditor.xaml.cs │ ├── MacroExecuteControl.xaml │ ├── MacroExecuteControl.xaml.cs │ ├── MacroToolbarControl.xaml │ ├── MacroToolbarControl.xaml.cs │ ├── NumericComboBox.cs │ ├── NumericField.xaml │ ├── NumericField.xaml.cs │ ├── NumericTextBox.cs │ ├── OffsetView.xaml │ ├── OffsetView.xaml.cs │ ├── OriginControl.xaml │ ├── OriginControl.xaml.cs │ ├── OutlineBaseControl.xaml │ ├── OutlineBaseControl.xaml.cs │ ├── OutlineControl.xaml │ ├── OutlineControl.xaml.cs │ ├── OutlineFlyout.xaml │ ├── OutlineFlyout.xaml.cs │ ├── OverrideControl.xaml │ ├── OverrideControl.xaml.cs │ ├── PIDLogView.xaml │ ├── PIDLogView.xaml.cs │ ├── PipeServer.cs │ ├── PortDialog.xaml │ ├── PortDialog.xaml.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Resources │ ├── StatusAnnotations_Warning_16xLG_color.png │ ├── Symbols_Stop_32xLG.png │ ├── close.png │ ├── close.xar │ ├── closeWhite.png │ ├── edit.png │ ├── edit.xar │ ├── editWhite.png │ ├── open.png │ ├── open.xar │ ├── openWhite.png │ ├── reload.png │ ├── reload.xar │ ├── reloadWhite.png │ ├── reset.png │ └── reset.xar │ ├── SDCardView.xaml │ ├── SDCardView.xaml.cs │ ├── Settings.cs │ ├── SharedStyles.xaml │ ├── SidebarItem.cs │ ├── SignalControl.xaml │ ├── SignalControl.xaml.cs │ ├── SignalsControl.xaml │ ├── SignalsControl.xaml.cs │ ├── SpindleControl.xaml │ ├── SpindleControl.xaml.cs │ ├── StatusControl.xaml │ ├── StatusControl.xaml.cs │ ├── StepperCalibrationWizard.xaml │ ├── StepperCalibrationWizard.xaml.cs │ ├── StripGCodeConfigControl.xaml │ ├── StripGCodeConfigControl.xaml.cs │ ├── THCMonitorControl.xaml │ ├── THCMonitorControl.xaml.cs │ ├── ToggleControl.xaml │ ├── ToggleControl.xaml.cs │ ├── ToolView.xaml │ ├── ToolView.xaml.cs │ ├── TrinamicView.xaml │ ├── TrinamicView.xaml.cs │ ├── UIUtils.cs │ ├── UIViewModel.cs │ ├── Widget.cs │ ├── WorkParametersControl.xaml │ ├── WorkParametersControl.xaml.cs │ └── app.config ├── CNC Converters ├── App.ico ├── CNC Converters.csproj ├── Excellon2GCode.cs ├── HpglToGCode.cs ├── JobParametersDialog.xaml ├── JobParametersDialog.xaml.cs ├── JobParametersViewModel.cs └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── CNC Core ├── CNC Core.sln └── CNC Core │ ├── ActionCommand.cs │ ├── CNC Core.csproj │ ├── CNC Core.csproj.user │ ├── Comms.cs │ ├── EltimaStream.cs │ ├── GCode.cs │ ├── GCodeEmulator.cs │ ├── GCodeJob.cs │ ├── GCodeParser.cs │ ├── Grbl.cs │ ├── GrblViewModel.cs │ ├── HelperClasses.cs │ ├── KeypressHandler.cs │ ├── LibStrings.xaml │ ├── Machine.cs │ ├── MeasureViewModel.cs │ ├── NGCExpr.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── SerialStream.cs │ ├── TelnetStream.cs │ ├── WebsocketStream.cs │ └── YModem.cs ├── CNC GCodeViewer ├── CNC GCodeViewer.sln └── CNC GCodeViewer │ ├── CNC GCodeViewer.csproj │ ├── ColorPicker.xaml │ ├── ColorPicker.xaml.cs │ ├── ConfigControl.xaml │ ├── ConfigControl.xaml.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── RenderControl.xaml │ ├── RenderControl.xaml.cs │ ├── Renderer.xaml │ ├── Renderer.xaml.cs │ ├── Resources │ ├── GridOff.png │ ├── GridOn.png │ ├── JobBoxOff.png │ ├── JobBoxOn.png │ ├── ResetView.png │ ├── RestoreView.png │ ├── SaveView.png │ ├── WorkBoxOff.png │ ├── WorkBoxOn.png │ ├── XYZOff.png │ └── XYZOn.png │ ├── TextOverlayControl.xaml │ ├── TextOverlayControl.xaml.cs │ ├── Viewer.xaml │ └── Viewer.xaml.cs ├── Grbl Config App ├── Grbl Config App.sln └── Grbl Config App │ ├── App.config │ ├── App.ico │ ├── App.xaml │ ├── App.xaml.cs │ ├── Grbl Config App.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── LICENSE ├── Locale ├── ReadMe.md ├── de-DE │ ├── csv │ │ ├── CNC.Controls.Camera.resources.de-DE.csv │ │ ├── CNC.Controls.DragKnife.resources.de-DE.csv │ │ ├── CNC.Controls.Probing.resources.de-DE.csv │ │ ├── CNC.Controls.Viewer.resources.de-DE.csv │ │ ├── CNC.Controls.WPF.resources.de-DE.csv │ │ ├── CNC.Converters.resources.de-DE.csv │ │ ├── CNC.Core.resources.de-DE.csv │ │ └── ioSender.resources.de-DE.csv │ └── translation.txt ├── en-US │ ├── ReadMe.md │ ├── csv │ │ ├── CNC.Controls.Camera.resources.en-US.csv │ │ ├── CNC.Controls.DragKnife.resources.en-US.csv │ │ ├── CNC.Controls.Probing.resources.en-US.csv │ │ ├── CNC.Controls.Viewer.resources.en-US.csv │ │ ├── CNC.Controls.WPF.resources.en-US.csv │ │ ├── CNC.Converters.resources.en-US.csv │ │ ├── CNC.Core.resources.en-US.csv │ │ └── ioSender.resources.en-US.csv │ └── translation.txt ├── hu-HU │ ├── csv │ │ ├── CNC.Controls.Camera.resources.hu-HU.csv │ │ ├── CNC.Controls.DragKnife.resources.hu-HU.csv │ │ ├── CNC.Controls.Probing.resources.hu-HU.csv │ │ ├── CNC.Controls.Viewer.resources.hu-HU.csv │ │ ├── CNC.Controls.WPF.resources.hu-HU.csv │ │ ├── CNC.Converters.resources.hu-HU.csv │ │ ├── CNC.Core.resources.hu-HU.csv │ │ └── ioSender.resources.hu-HU.csv │ └── translation.txt ├── pt-BR │ ├── csv │ │ ├── CNC.Controls.Camera.resources.pt-BR.csv │ │ ├── CNC.Controls.DragKnife.resources.pt-BR.csv │ │ ├── CNC.Controls.Probing.resources.pt-BR.csv │ │ ├── CNC.Controls.Viewer.resources.pt-BR.csv │ │ ├── CNC.Controls.WPF.resources.pt-BR.csv │ │ ├── CNC.Converters.resources.pt-BR.csv │ │ ├── CNC.Core.resources.pt-BR.csv │ │ └── ioSender.resources.pt-BR.csv │ └── translation.txt ├── ru-RU │ ├── csv │ │ ├── CNC.Controls.Camera.resources.ru-RU.csv │ │ ├── CNC.Controls.DragKnife.resources.ru-RU.csv │ │ ├── CNC.Controls.Probing.resources.ru-RU.csv │ │ ├── CNC.Controls.Viewer.resources.ru-RU.csv │ │ ├── CNC.Controls.WPF.resources.CSV │ │ ├── CNC.Controls.WPF.resources.ru-RU.csv │ │ ├── CNC.Converters.resources.csv │ │ ├── CNC.Converters.resources.ru-RU.csv │ │ ├── CNC.Core.resources.ru-RU.csv │ │ └── ioSender.resources.ru-RU.csv │ └── translation.txt ├── uk-UA │ ├── csv │ │ ├── CNC.Controls.Camera.resources.uk-UA.csv │ │ ├── CNC.Controls.DragKnife.resources.uk-UA.csv │ │ ├── CNC.Controls.Probing.resources.uk-UA.csv │ │ ├── CNC.Controls.Viewer.resources.uk-UA.csv │ │ ├── CNC.Controls.WPF.resources.uk-UA.csv │ │ ├── CNC.Converters.resources.uk-UA.csv │ │ ├── CNC.Core.resources.uk-UA.csv │ │ └── ioSender.resources.uk-UA.csv │ └── translation.txt └── zh-CN │ ├── csv │ ├── CNC.Controls.Camera.resources.zh-CN.csv │ ├── CNC.Controls.DragKnife.resources.zh-CN.csv │ ├── CNC.Controls.Probing.resources.zh-CN.csv │ ├── CNC.Controls.Viewer.resources.zh-CN.csv │ ├── CNC.Controls.WPF.resources.zh-CN.csv │ ├── CNC.Converters.resources.zh-CN.csv │ ├── CNC.Core.resources.zh-CN.csv │ └── ioSender.resources.zh-CN.csv │ └── translation.txt ├── Media ├── Sender.png ├── Sender2.png ├── Sender2_XL.png ├── Sender3.png ├── Sender4.png ├── Sender5.png ├── Sender6.png ├── Sender7.png └── Sender8.png ├── changelog.md ├── ioSender XL ├── Directory.Build.props ├── ioSender XL.sln └── ioSender XL │ ├── App.ico │ ├── App.xaml │ ├── App.xaml.cs │ ├── JobView.xaml │ ├── JobView.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── ioSender XL.csproj │ └── license.txt ├── ioSender ├── Directory.Build.props ├── PIDLog.xml ├── ioSender.sln └── ioSender │ ├── App.config │ ├── App.ico │ ├── App.xaml │ ├── App.xaml.cs │ ├── JobView.xaml │ ├── JobView.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── ioSender.csproj │ └── license.txt └── readme.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/.gitignore -------------------------------------------------------------------------------- /CNC AppLaunch/CNC AppLaunch.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC AppLaunch/CNC AppLaunch.sln -------------------------------------------------------------------------------- /CNC AppLaunch/CNC AppLaunch/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC AppLaunch/CNC AppLaunch/App.config -------------------------------------------------------------------------------- /CNC AppLaunch/CNC AppLaunch/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC AppLaunch/CNC AppLaunch/App.ico -------------------------------------------------------------------------------- /CNC AppLaunch/CNC AppLaunch/AppLaunch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC AppLaunch/CNC AppLaunch/AppLaunch.cs -------------------------------------------------------------------------------- /CNC AppLaunch/CNC AppLaunch/CNC AppLaunch.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC AppLaunch/CNC AppLaunch/CNC AppLaunch.csproj -------------------------------------------------------------------------------- /CNC AppLaunch/CNC AppLaunch/CNC AppLaunch.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC AppLaunch/CNC AppLaunch/CNC AppLaunch.csproj.user -------------------------------------------------------------------------------- /CNC AppLaunch/CNC AppLaunch/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC AppLaunch/CNC AppLaunch/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CNC Controls Camera/CNC Controls Camera.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Camera/CNC Controls Camera.sln -------------------------------------------------------------------------------- /CNC Controls Camera/CNC Controls Camera/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Camera/CNC Controls Camera/App.ico -------------------------------------------------------------------------------- /CNC Controls Camera/CNC Controls Camera/CNC Controls Camera.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Camera/CNC Controls Camera/CNC Controls Camera.csproj -------------------------------------------------------------------------------- /CNC Controls Camera/CNC Controls Camera/Camera.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Camera/CNC Controls Camera/Camera.xaml -------------------------------------------------------------------------------- /CNC Controls Camera/CNC Controls Camera/Camera.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Camera/CNC Controls Camera/Camera.xaml.cs -------------------------------------------------------------------------------- /CNC Controls Camera/CNC Controls Camera/CameraControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Camera/CNC Controls Camera/CameraControl.xaml -------------------------------------------------------------------------------- /CNC Controls Camera/CNC Controls Camera/CameraControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Camera/CNC Controls Camera/CameraControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls Camera/CNC Controls Camera/ConfigControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Camera/CNC Controls Camera/ConfigControl.xaml -------------------------------------------------------------------------------- /CNC Controls Camera/CNC Controls Camera/ConfigControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Camera/CNC Controls Camera/ConfigControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls Camera/CNC Controls Camera/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Camera/CNC Controls Camera/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CNC Controls Camera/CNC Controls Camera/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Camera/CNC Controls Camera/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CNC Controls Camera/CNC Controls Camera/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Camera/CNC Controls Camera/Properties/Resources.resx -------------------------------------------------------------------------------- /CNC Controls Camera/CNC Controls Camera/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Camera/CNC Controls Camera/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CNC Controls Camera/CNC Controls Camera/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Camera/CNC Controls Camera/Properties/Settings.settings -------------------------------------------------------------------------------- /CNC Controls Dragknife/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Dragknife/App.ico -------------------------------------------------------------------------------- /CNC Controls Dragknife/CNC Controls Dragknife.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Dragknife/CNC Controls Dragknife.csproj -------------------------------------------------------------------------------- /CNC Controls Dragknife/DragKnifeDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Dragknife/DragKnifeDialog.xaml -------------------------------------------------------------------------------- /CNC Controls Dragknife/DragKnifeDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Dragknife/DragKnifeDialog.xaml.cs -------------------------------------------------------------------------------- /CNC Controls Dragknife/DragknifeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Dragknife/DragknifeViewModel.cs -------------------------------------------------------------------------------- /CNC Controls Dragknife/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Dragknife/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CNC Controls Dragknife/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Dragknife/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CNC Controls Dragknife/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Dragknife/Properties/Resources.resx -------------------------------------------------------------------------------- /CNC Controls Dragknife/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Dragknife/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CNC Controls Dragknife/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Dragknife/Properties/Settings.settings -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe.sln -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/App.ico -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/BaseViewModel.cs -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/CNC Controls Lathe.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/CNC Controls Lathe.csproj -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/ConfigControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/ConfigControl.xaml -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/ConfigControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/ConfigControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/Converters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/Converters.cs -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/CssControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/CssControl.xaml -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/CssControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/CssControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/FacingLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/FacingLogic.cs -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/FacingWizard.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/FacingWizard.xaml -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/FacingWizard.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/FacingWizard.xaml.cs -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/ILatheWizardTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/ILatheWizardTab.cs -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/LatheWizardsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/LatheWizardsView.xaml -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/LatheWizardsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/LatheWizardsView.xaml.cs -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/PartingLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/PartingLogic.cs -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/PartingWizard.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/PartingWizard.xaml -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/PartingWizard.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/PartingWizard.xaml.cs -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/ProfileControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/ProfileControl.xaml -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/ProfileControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/ProfileControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/ProfileDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/ProfileDialog.xaml -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/ProfileDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/ProfileDialog.xaml.cs -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/Properties/Resources.resx -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/Properties/Settings.settings -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/Resources/ToolChamfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/Resources/ToolChamfer.png -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/Resources/ToolRadius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/Resources/ToolRadius.png -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/Resources/btnOptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/Resources/btnOptions.png -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/SpringPassControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/SpringPassControl.xaml -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/SpringPassControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/SpringPassControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/TaperControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/TaperControl.xaml -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/TaperControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/TaperControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/ThreadData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/ThreadData.cs -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/ThreadLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/ThreadLogic.cs -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/ThreadViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/ThreadViewModel.cs -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/ThreadingWizard.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/ThreadingWizard.xaml -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/ThreadingWizard.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/ThreadingWizard.xaml.cs -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/TurningLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/TurningLogic.cs -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/TurningWizard.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/TurningWizard.xaml -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/TurningWizard.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/TurningWizard.xaml.cs -------------------------------------------------------------------------------- /CNC Controls Lathe/CNC Controls Lathe/WizardConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Lathe/CNC Controls Lathe/WizardConfig.cs -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing.sln -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/App.ico -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/CNC Controls Probing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/CNC Controls Probing.csproj -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/CenterFinderControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/CenterFinderControl.xaml -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/CenterFinderControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/CenterFinderControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/ConfigControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/ConfigControl.xaml -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/ConfigControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/ConfigControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Converters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Converters.cs -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/CsSelectControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/CsSelectControl.xaml -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/CsSelectControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/CsSelectControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/EdgeFinderControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/EdgeFinderControl.xaml -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/EdgeFinderControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/EdgeFinderControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/EdgeFinderIntControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/EdgeFinderIntControl.xaml -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/EdgeFinderIntControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/EdgeFinderIntControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/GCodeTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/GCodeTransform.cs -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/HeightMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/HeightMap.cs -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/HeightMapControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/HeightMapControl.xaml -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/HeightMapControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/HeightMapControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/HeightMapViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/HeightMapViewModel.cs -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/IProbeTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/IProbeTab.cs -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/LibStrings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/LibStrings.xaml -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/MacroDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/MacroDialog.xaml -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/MacroDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/MacroDialog.xaml.cs -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/ProbeVerify.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/ProbeVerify.xaml -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/ProbeVerify.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/ProbeVerify.xaml.cs -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/ProbingConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/ProbingConfig.cs -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/ProbingMacros.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/ProbingMacros.cs -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/ProbingView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/ProbingView.xaml -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/ProbingView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/ProbingView.xaml.cs -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/ProbingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/ProbingViewModel.cs -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Program.cs -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/App.ico -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/Center finderI.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/Center finderI.xar -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/Center finderO.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/Center finderO.xar -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/CenterO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/CenterO.png -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/CornerID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/CornerID.png -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/EFI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/EFI.png -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/Edge finder internal.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/Edge finder internal.xar -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/Edge finder.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/Edge finder.xar -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/Rotater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/Rotater.png -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/Rotater.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/Rotater.xar -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/RotaterAB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/RotaterAB.png -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/RotaterAB2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/RotaterAB2.png -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/RotaterAD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/RotaterAD.png -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/RotaterCB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/RotaterCB.png -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/RotaterCD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/RotaterCD.png -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/centerI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/centerI.png -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/cornerA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/cornerA.png -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/cornerB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/cornerB.png -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/cornerC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/cornerC.png -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/cornerD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/cornerD.png -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/cornerIA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/cornerIA.png -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/cornerIB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/cornerIB.png -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/cornerIC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/cornerIC.png -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/edgeAB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/edgeAB.png -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/edgeAD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/edgeAD.png -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/edgeBC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/edgeBC.png -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/edgeCD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/edgeCD.png -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/edgeIAB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/edgeIAB.png -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/edgeIAD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/edgeIAD.png -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/edgeIBC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/edgeIBC.png -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/edgeICD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/edgeICD.png -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/edgeZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/edgeZ.png -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/menu_22x22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/menu_22x22.png -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/rotater2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/rotater2.png -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/Resources/xxx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/Resources/xxx.png -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/RotationControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/RotationControl.xaml -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/RotationControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/RotationControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/ToolLengthControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/ToolLengthControl.xaml -------------------------------------------------------------------------------- /CNC Controls Probing/CNC Controls Probing/ToolLengthControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls Probing/CNC Controls Probing/ToolLengthControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls.sln -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/About.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/About.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/About.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/About.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/App.ico -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/AppConfig.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/AppConfigView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/AppConfigView.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/AppConfigView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/AppConfigView.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/ArcsToLines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/ArcsToLines.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/BasicConfigControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/BasicConfigControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/BasicConfigControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/BasicConfigControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/CNC Controls.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/CNC Controls.csproj -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/ConsoleControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/ConsoleControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/ConsoleControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/ConsoleControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/ConsoleWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/ConsoleWindow.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/ConsoleWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/ConsoleWindow.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/Converters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/Converters.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/CoolantControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/CoolantControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/CoolantControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/CoolantControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/CoordValueSetControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/CoordValueSetControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/CoordValueSetControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/CoordValueSetControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/DROBaseControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/DROBaseControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/DROBaseControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/DROBaseControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/DROControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/DROControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/DROControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/DROControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/ErrorsAndAlarms.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/ErrorsAndAlarms.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/ErrorsAndAlarms.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/ErrorsAndAlarms.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/FeedControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/FeedControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/FeedControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/FeedControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/FileActionControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/FileActionControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/FileActionControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/FileActionControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/GCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/GCode.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/GCodeCompress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/GCodeCompress.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/GCodeListControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/GCodeListControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/GCodeListControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/GCodeListControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/GCodeRotate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/GCodeRotate.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/GCodeRotateDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/GCodeRotateDialog.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/GCodeRotateDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/GCodeRotateDialog.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/GCodeWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/GCodeWrap.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/GCodeWrapDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/GCodeWrapDialog.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/GCodeWrapDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/GCodeWrapDialog.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/GotoBaseControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/GotoBaseControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/GotoBaseControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/GotoBaseControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/GotoControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/GotoControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/GotoControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/GotoControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/GotoFlyoutControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/GotoFlyoutControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/GotoFlyoutControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/GotoFlyoutControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/GrblAlarmList.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/GrblAlarmList.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/GrblAlarmList.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/GrblAlarmList.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/GrblConfigControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/GrblConfigControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/GrblConfigControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/GrblConfigControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/GrblConfigView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/GrblConfigView.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/GrblConfigView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/GrblConfigView.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/GrblErrorList.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/GrblErrorList.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/GrblErrorList.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/GrblErrorList.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/ICNCView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/ICNCView.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/ICamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/ICamera.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/IGCodeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/IGCodeConverter.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/IGCodeTransformer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/IGCodeTransformer.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/IGrblConfigTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/IGrblConfigTab.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/ISidebarControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/ISidebarControl.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/JobControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/JobControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/JobControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/JobControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/JogBaseControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/JogBaseControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/JogBaseControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/JogBaseControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/JogConfigControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/JogConfigControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/JogConfigControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/JogConfigControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/JogControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/JogControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/JogControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/JogControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/JogFlyoutControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/JogFlyoutControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/JogFlyoutControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/JogFlyoutControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/JogUiConfigControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/JogUiConfigControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/JogUiConfigControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/JogUiConfigControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/KeypressHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/KeypressHandler.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/LEDControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/LEDControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/LEDControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/LEDControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/LibStrings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/LibStrings.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/LimitsBaseControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/LimitsBaseControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/LimitsBaseControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/LimitsBaseControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/LimitsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/LimitsControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/LimitsControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/LimitsControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/MDIControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/MDIControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/MDIControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/MDIControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/MPGPending.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/MPGPending.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/MPGPending.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/MPGPending.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/MachinePositionFlyout.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/MachinePositionFlyout.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/MachinePositionFlyout.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/MachinePositionFlyout.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/MacroEditor.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/MacroEditor.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/MacroEditor.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/MacroEditor.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/MacroExecuteControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/MacroExecuteControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/MacroExecuteControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/MacroExecuteControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/MacroToolbarControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/MacroToolbarControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/MacroToolbarControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/MacroToolbarControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/NumericComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/NumericComboBox.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/NumericField.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/NumericField.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/NumericField.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/NumericField.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/NumericTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/NumericTextBox.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/OffsetView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/OffsetView.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/OffsetView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/OffsetView.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/OriginControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/OriginControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/OriginControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/OriginControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/OutlineBaseControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/OutlineBaseControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/OutlineBaseControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/OutlineBaseControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/OutlineControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/OutlineControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/OutlineControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/OutlineControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/OutlineFlyout.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/OutlineFlyout.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/OutlineFlyout.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/OutlineFlyout.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/OverrideControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/OverrideControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/OverrideControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/OverrideControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/PIDLogView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/PIDLogView.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/PIDLogView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/PIDLogView.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/PipeServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/PipeServer.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/PortDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/PortDialog.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/PortDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/PortDialog.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/Properties/Resources.resx -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/Properties/Settings.settings -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/Resources/StatusAnnotations_Warning_16xLG_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/Resources/StatusAnnotations_Warning_16xLG_color.png -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/Resources/Symbols_Stop_32xLG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/Resources/Symbols_Stop_32xLG.png -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/Resources/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/Resources/close.png -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/Resources/close.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/Resources/close.xar -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/Resources/closeWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/Resources/closeWhite.png -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/Resources/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/Resources/edit.png -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/Resources/edit.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/Resources/edit.xar -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/Resources/editWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/Resources/editWhite.png -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/Resources/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/Resources/open.png -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/Resources/open.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/Resources/open.xar -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/Resources/openWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/Resources/openWhite.png -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/Resources/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/Resources/reload.png -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/Resources/reload.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/Resources/reload.xar -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/Resources/reloadWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/Resources/reloadWhite.png -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/Resources/reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/Resources/reset.png -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/Resources/reset.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/Resources/reset.xar -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/SDCardView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/SDCardView.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/SDCardView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/SDCardView.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/Settings.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/SharedStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/SharedStyles.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/SidebarItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/SidebarItem.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/SignalControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/SignalControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/SignalControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/SignalControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/SignalsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/SignalsControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/SignalsControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/SignalsControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/SpindleControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/SpindleControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/SpindleControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/SpindleControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/StatusControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/StatusControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/StatusControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/StatusControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/StepperCalibrationWizard.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/StepperCalibrationWizard.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/StepperCalibrationWizard.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/StepperCalibrationWizard.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/StripGCodeConfigControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/StripGCodeConfigControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/StripGCodeConfigControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/StripGCodeConfigControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/THCMonitorControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/THCMonitorControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/THCMonitorControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/THCMonitorControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/ToggleControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/ToggleControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/ToggleControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/ToggleControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/ToolView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/ToolView.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/ToolView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/ToolView.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/TrinamicView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/TrinamicView.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/TrinamicView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/TrinamicView.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/UIUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/UIUtils.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/UIViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/UIViewModel.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/Widget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/Widget.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/WorkParametersControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/WorkParametersControl.xaml -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/WorkParametersControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/WorkParametersControl.xaml.cs -------------------------------------------------------------------------------- /CNC Controls/CNC Controls/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Controls/CNC Controls/app.config -------------------------------------------------------------------------------- /CNC Converters/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Converters/App.ico -------------------------------------------------------------------------------- /CNC Converters/CNC Converters.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Converters/CNC Converters.csproj -------------------------------------------------------------------------------- /CNC Converters/Excellon2GCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Converters/Excellon2GCode.cs -------------------------------------------------------------------------------- /CNC Converters/HpglToGCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Converters/HpglToGCode.cs -------------------------------------------------------------------------------- /CNC Converters/JobParametersDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Converters/JobParametersDialog.xaml -------------------------------------------------------------------------------- /CNC Converters/JobParametersDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Converters/JobParametersDialog.xaml.cs -------------------------------------------------------------------------------- /CNC Converters/JobParametersViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Converters/JobParametersViewModel.cs -------------------------------------------------------------------------------- /CNC Converters/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Converters/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CNC Converters/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Converters/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CNC Converters/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Converters/Properties/Resources.resx -------------------------------------------------------------------------------- /CNC Converters/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Converters/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CNC Converters/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Converters/Properties/Settings.settings -------------------------------------------------------------------------------- /CNC Core/CNC Core.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Core/CNC Core.sln -------------------------------------------------------------------------------- /CNC Core/CNC Core/ActionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Core/CNC Core/ActionCommand.cs -------------------------------------------------------------------------------- /CNC Core/CNC Core/CNC Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Core/CNC Core/CNC Core.csproj -------------------------------------------------------------------------------- /CNC Core/CNC Core/CNC Core.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Core/CNC Core/CNC Core.csproj.user -------------------------------------------------------------------------------- /CNC Core/CNC Core/Comms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Core/CNC Core/Comms.cs -------------------------------------------------------------------------------- /CNC Core/CNC Core/EltimaStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Core/CNC Core/EltimaStream.cs -------------------------------------------------------------------------------- /CNC Core/CNC Core/GCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Core/CNC Core/GCode.cs -------------------------------------------------------------------------------- /CNC Core/CNC Core/GCodeEmulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Core/CNC Core/GCodeEmulator.cs -------------------------------------------------------------------------------- /CNC Core/CNC Core/GCodeJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Core/CNC Core/GCodeJob.cs -------------------------------------------------------------------------------- /CNC Core/CNC Core/GCodeParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Core/CNC Core/GCodeParser.cs -------------------------------------------------------------------------------- /CNC Core/CNC Core/Grbl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Core/CNC Core/Grbl.cs -------------------------------------------------------------------------------- /CNC Core/CNC Core/GrblViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Core/CNC Core/GrblViewModel.cs -------------------------------------------------------------------------------- /CNC Core/CNC Core/HelperClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Core/CNC Core/HelperClasses.cs -------------------------------------------------------------------------------- /CNC Core/CNC Core/KeypressHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Core/CNC Core/KeypressHandler.cs -------------------------------------------------------------------------------- /CNC Core/CNC Core/LibStrings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Core/CNC Core/LibStrings.xaml -------------------------------------------------------------------------------- /CNC Core/CNC Core/Machine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Core/CNC Core/Machine.cs -------------------------------------------------------------------------------- /CNC Core/CNC Core/MeasureViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Core/CNC Core/MeasureViewModel.cs -------------------------------------------------------------------------------- /CNC Core/CNC Core/NGCExpr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Core/CNC Core/NGCExpr.cs -------------------------------------------------------------------------------- /CNC Core/CNC Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Core/CNC Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CNC Core/CNC Core/SerialStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Core/CNC Core/SerialStream.cs -------------------------------------------------------------------------------- /CNC Core/CNC Core/TelnetStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Core/CNC Core/TelnetStream.cs -------------------------------------------------------------------------------- /CNC Core/CNC Core/WebsocketStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Core/CNC Core/WebsocketStream.cs -------------------------------------------------------------------------------- /CNC Core/CNC Core/YModem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC Core/CNC Core/YModem.cs -------------------------------------------------------------------------------- /CNC GCodeViewer/CNC GCodeViewer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC GCodeViewer/CNC GCodeViewer.sln -------------------------------------------------------------------------------- /CNC GCodeViewer/CNC GCodeViewer/CNC GCodeViewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC GCodeViewer/CNC GCodeViewer/CNC GCodeViewer.csproj -------------------------------------------------------------------------------- /CNC GCodeViewer/CNC GCodeViewer/ColorPicker.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC GCodeViewer/CNC GCodeViewer/ColorPicker.xaml -------------------------------------------------------------------------------- /CNC GCodeViewer/CNC GCodeViewer/ColorPicker.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC GCodeViewer/CNC GCodeViewer/ColorPicker.xaml.cs -------------------------------------------------------------------------------- /CNC GCodeViewer/CNC GCodeViewer/ConfigControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC GCodeViewer/CNC GCodeViewer/ConfigControl.xaml -------------------------------------------------------------------------------- /CNC GCodeViewer/CNC GCodeViewer/ConfigControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC GCodeViewer/CNC GCodeViewer/ConfigControl.xaml.cs -------------------------------------------------------------------------------- /CNC GCodeViewer/CNC GCodeViewer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC GCodeViewer/CNC GCodeViewer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CNC GCodeViewer/CNC GCodeViewer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC GCodeViewer/CNC GCodeViewer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CNC GCodeViewer/CNC GCodeViewer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC GCodeViewer/CNC GCodeViewer/Properties/Resources.resx -------------------------------------------------------------------------------- /CNC GCodeViewer/CNC GCodeViewer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC GCodeViewer/CNC GCodeViewer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CNC GCodeViewer/CNC GCodeViewer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC GCodeViewer/CNC GCodeViewer/Properties/Settings.settings -------------------------------------------------------------------------------- /CNC GCodeViewer/CNC GCodeViewer/RenderControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC GCodeViewer/CNC GCodeViewer/RenderControl.xaml -------------------------------------------------------------------------------- /CNC GCodeViewer/CNC GCodeViewer/RenderControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC GCodeViewer/CNC GCodeViewer/RenderControl.xaml.cs -------------------------------------------------------------------------------- /CNC GCodeViewer/CNC GCodeViewer/Renderer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC GCodeViewer/CNC GCodeViewer/Renderer.xaml -------------------------------------------------------------------------------- /CNC GCodeViewer/CNC GCodeViewer/Renderer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC GCodeViewer/CNC GCodeViewer/Renderer.xaml.cs -------------------------------------------------------------------------------- /CNC GCodeViewer/CNC GCodeViewer/Resources/GridOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC GCodeViewer/CNC GCodeViewer/Resources/GridOff.png -------------------------------------------------------------------------------- /CNC GCodeViewer/CNC GCodeViewer/Resources/GridOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC GCodeViewer/CNC GCodeViewer/Resources/GridOn.png -------------------------------------------------------------------------------- /CNC GCodeViewer/CNC GCodeViewer/Resources/JobBoxOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC GCodeViewer/CNC GCodeViewer/Resources/JobBoxOff.png -------------------------------------------------------------------------------- /CNC GCodeViewer/CNC GCodeViewer/Resources/JobBoxOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC GCodeViewer/CNC GCodeViewer/Resources/JobBoxOn.png -------------------------------------------------------------------------------- /CNC GCodeViewer/CNC GCodeViewer/Resources/ResetView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC GCodeViewer/CNC GCodeViewer/Resources/ResetView.png -------------------------------------------------------------------------------- /CNC GCodeViewer/CNC GCodeViewer/Resources/RestoreView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC GCodeViewer/CNC GCodeViewer/Resources/RestoreView.png -------------------------------------------------------------------------------- /CNC GCodeViewer/CNC GCodeViewer/Resources/SaveView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC GCodeViewer/CNC GCodeViewer/Resources/SaveView.png -------------------------------------------------------------------------------- /CNC GCodeViewer/CNC GCodeViewer/Resources/WorkBoxOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC GCodeViewer/CNC GCodeViewer/Resources/WorkBoxOff.png -------------------------------------------------------------------------------- /CNC GCodeViewer/CNC GCodeViewer/Resources/WorkBoxOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC GCodeViewer/CNC GCodeViewer/Resources/WorkBoxOn.png -------------------------------------------------------------------------------- /CNC GCodeViewer/CNC GCodeViewer/Resources/XYZOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC GCodeViewer/CNC GCodeViewer/Resources/XYZOff.png -------------------------------------------------------------------------------- /CNC GCodeViewer/CNC GCodeViewer/Resources/XYZOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC GCodeViewer/CNC GCodeViewer/Resources/XYZOn.png -------------------------------------------------------------------------------- /CNC GCodeViewer/CNC GCodeViewer/TextOverlayControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC GCodeViewer/CNC GCodeViewer/TextOverlayControl.xaml -------------------------------------------------------------------------------- /CNC GCodeViewer/CNC GCodeViewer/TextOverlayControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC GCodeViewer/CNC GCodeViewer/TextOverlayControl.xaml.cs -------------------------------------------------------------------------------- /CNC GCodeViewer/CNC GCodeViewer/Viewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC GCodeViewer/CNC GCodeViewer/Viewer.xaml -------------------------------------------------------------------------------- /CNC GCodeViewer/CNC GCodeViewer/Viewer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/CNC GCodeViewer/CNC GCodeViewer/Viewer.xaml.cs -------------------------------------------------------------------------------- /Grbl Config App/Grbl Config App.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Grbl Config App/Grbl Config App.sln -------------------------------------------------------------------------------- /Grbl Config App/Grbl Config App/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Grbl Config App/Grbl Config App/App.config -------------------------------------------------------------------------------- /Grbl Config App/Grbl Config App/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Grbl Config App/Grbl Config App/App.ico -------------------------------------------------------------------------------- /Grbl Config App/Grbl Config App/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Grbl Config App/Grbl Config App/App.xaml -------------------------------------------------------------------------------- /Grbl Config App/Grbl Config App/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Grbl Config App/Grbl Config App/App.xaml.cs -------------------------------------------------------------------------------- /Grbl Config App/Grbl Config App/Grbl Config App.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Grbl Config App/Grbl Config App/Grbl Config App.csproj -------------------------------------------------------------------------------- /Grbl Config App/Grbl Config App/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Grbl Config App/Grbl Config App/MainWindow.xaml -------------------------------------------------------------------------------- /Grbl Config App/Grbl Config App/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Grbl Config App/Grbl Config App/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Grbl Config App/Grbl Config App/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Grbl Config App/Grbl Config App/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Grbl Config App/Grbl Config App/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Grbl Config App/Grbl Config App/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Grbl Config App/Grbl Config App/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Grbl Config App/Grbl Config App/Properties/Resources.resx -------------------------------------------------------------------------------- /Grbl Config App/Grbl Config App/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Grbl Config App/Grbl Config App/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Grbl Config App/Grbl Config App/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Grbl Config App/Grbl Config App/Properties/Settings.settings -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/LICENSE -------------------------------------------------------------------------------- /Locale/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/ReadMe.md -------------------------------------------------------------------------------- /Locale/de-DE/csv/CNC.Controls.Camera.resources.de-DE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/de-DE/csv/CNC.Controls.Camera.resources.de-DE.csv -------------------------------------------------------------------------------- /Locale/de-DE/csv/CNC.Controls.DragKnife.resources.de-DE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/de-DE/csv/CNC.Controls.DragKnife.resources.de-DE.csv -------------------------------------------------------------------------------- /Locale/de-DE/csv/CNC.Controls.Probing.resources.de-DE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/de-DE/csv/CNC.Controls.Probing.resources.de-DE.csv -------------------------------------------------------------------------------- /Locale/de-DE/csv/CNC.Controls.Viewer.resources.de-DE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/de-DE/csv/CNC.Controls.Viewer.resources.de-DE.csv -------------------------------------------------------------------------------- /Locale/de-DE/csv/CNC.Controls.WPF.resources.de-DE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/de-DE/csv/CNC.Controls.WPF.resources.de-DE.csv -------------------------------------------------------------------------------- /Locale/de-DE/csv/CNC.Converters.resources.de-DE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/de-DE/csv/CNC.Converters.resources.de-DE.csv -------------------------------------------------------------------------------- /Locale/de-DE/csv/CNC.Core.resources.de-DE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/de-DE/csv/CNC.Core.resources.de-DE.csv -------------------------------------------------------------------------------- /Locale/de-DE/csv/ioSender.resources.de-DE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/de-DE/csv/ioSender.resources.de-DE.csv -------------------------------------------------------------------------------- /Locale/de-DE/translation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/de-DE/translation.txt -------------------------------------------------------------------------------- /Locale/en-US/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/en-US/ReadMe.md -------------------------------------------------------------------------------- /Locale/en-US/csv/CNC.Controls.Camera.resources.en-US.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/en-US/csv/CNC.Controls.Camera.resources.en-US.csv -------------------------------------------------------------------------------- /Locale/en-US/csv/CNC.Controls.DragKnife.resources.en-US.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/en-US/csv/CNC.Controls.DragKnife.resources.en-US.csv -------------------------------------------------------------------------------- /Locale/en-US/csv/CNC.Controls.Probing.resources.en-US.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/en-US/csv/CNC.Controls.Probing.resources.en-US.csv -------------------------------------------------------------------------------- /Locale/en-US/csv/CNC.Controls.Viewer.resources.en-US.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/en-US/csv/CNC.Controls.Viewer.resources.en-US.csv -------------------------------------------------------------------------------- /Locale/en-US/csv/CNC.Controls.WPF.resources.en-US.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/en-US/csv/CNC.Controls.WPF.resources.en-US.csv -------------------------------------------------------------------------------- /Locale/en-US/csv/CNC.Converters.resources.en-US.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/en-US/csv/CNC.Converters.resources.en-US.csv -------------------------------------------------------------------------------- /Locale/en-US/csv/CNC.Core.resources.en-US.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/en-US/csv/CNC.Core.resources.en-US.csv -------------------------------------------------------------------------------- /Locale/en-US/csv/ioSender.resources.en-US.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/en-US/csv/ioSender.resources.en-US.csv -------------------------------------------------------------------------------- /Locale/en-US/translation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/en-US/translation.txt -------------------------------------------------------------------------------- /Locale/hu-HU/csv/CNC.Controls.Camera.resources.hu-HU.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/hu-HU/csv/CNC.Controls.Camera.resources.hu-HU.csv -------------------------------------------------------------------------------- /Locale/hu-HU/csv/CNC.Controls.DragKnife.resources.hu-HU.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/hu-HU/csv/CNC.Controls.DragKnife.resources.hu-HU.csv -------------------------------------------------------------------------------- /Locale/hu-HU/csv/CNC.Controls.Probing.resources.hu-HU.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/hu-HU/csv/CNC.Controls.Probing.resources.hu-HU.csv -------------------------------------------------------------------------------- /Locale/hu-HU/csv/CNC.Controls.Viewer.resources.hu-HU.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/hu-HU/csv/CNC.Controls.Viewer.resources.hu-HU.csv -------------------------------------------------------------------------------- /Locale/hu-HU/csv/CNC.Controls.WPF.resources.hu-HU.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/hu-HU/csv/CNC.Controls.WPF.resources.hu-HU.csv -------------------------------------------------------------------------------- /Locale/hu-HU/csv/CNC.Converters.resources.hu-HU.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/hu-HU/csv/CNC.Converters.resources.hu-HU.csv -------------------------------------------------------------------------------- /Locale/hu-HU/csv/CNC.Core.resources.hu-HU.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/hu-HU/csv/CNC.Core.resources.hu-HU.csv -------------------------------------------------------------------------------- /Locale/hu-HU/csv/ioSender.resources.hu-HU.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/hu-HU/csv/ioSender.resources.hu-HU.csv -------------------------------------------------------------------------------- /Locale/hu-HU/translation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/hu-HU/translation.txt -------------------------------------------------------------------------------- /Locale/pt-BR/csv/CNC.Controls.Camera.resources.pt-BR.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/pt-BR/csv/CNC.Controls.Camera.resources.pt-BR.csv -------------------------------------------------------------------------------- /Locale/pt-BR/csv/CNC.Controls.DragKnife.resources.pt-BR.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/pt-BR/csv/CNC.Controls.DragKnife.resources.pt-BR.csv -------------------------------------------------------------------------------- /Locale/pt-BR/csv/CNC.Controls.Probing.resources.pt-BR.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/pt-BR/csv/CNC.Controls.Probing.resources.pt-BR.csv -------------------------------------------------------------------------------- /Locale/pt-BR/csv/CNC.Controls.Viewer.resources.pt-BR.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/pt-BR/csv/CNC.Controls.Viewer.resources.pt-BR.csv -------------------------------------------------------------------------------- /Locale/pt-BR/csv/CNC.Controls.WPF.resources.pt-BR.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/pt-BR/csv/CNC.Controls.WPF.resources.pt-BR.csv -------------------------------------------------------------------------------- /Locale/pt-BR/csv/CNC.Converters.resources.pt-BR.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/pt-BR/csv/CNC.Converters.resources.pt-BR.csv -------------------------------------------------------------------------------- /Locale/pt-BR/csv/CNC.Core.resources.pt-BR.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/pt-BR/csv/CNC.Core.resources.pt-BR.csv -------------------------------------------------------------------------------- /Locale/pt-BR/csv/ioSender.resources.pt-BR.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/pt-BR/csv/ioSender.resources.pt-BR.csv -------------------------------------------------------------------------------- /Locale/pt-BR/translation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/pt-BR/translation.txt -------------------------------------------------------------------------------- /Locale/ru-RU/csv/CNC.Controls.Camera.resources.ru-RU.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/ru-RU/csv/CNC.Controls.Camera.resources.ru-RU.csv -------------------------------------------------------------------------------- /Locale/ru-RU/csv/CNC.Controls.DragKnife.resources.ru-RU.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/ru-RU/csv/CNC.Controls.DragKnife.resources.ru-RU.csv -------------------------------------------------------------------------------- /Locale/ru-RU/csv/CNC.Controls.Probing.resources.ru-RU.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/ru-RU/csv/CNC.Controls.Probing.resources.ru-RU.csv -------------------------------------------------------------------------------- /Locale/ru-RU/csv/CNC.Controls.Viewer.resources.ru-RU.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/ru-RU/csv/CNC.Controls.Viewer.resources.ru-RU.csv -------------------------------------------------------------------------------- /Locale/ru-RU/csv/CNC.Controls.WPF.resources.CSV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/ru-RU/csv/CNC.Controls.WPF.resources.CSV -------------------------------------------------------------------------------- /Locale/ru-RU/csv/CNC.Controls.WPF.resources.ru-RU.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/ru-RU/csv/CNC.Controls.WPF.resources.ru-RU.csv -------------------------------------------------------------------------------- /Locale/ru-RU/csv/CNC.Converters.resources.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/ru-RU/csv/CNC.Converters.resources.csv -------------------------------------------------------------------------------- /Locale/ru-RU/csv/CNC.Converters.resources.ru-RU.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/ru-RU/csv/CNC.Converters.resources.ru-RU.csv -------------------------------------------------------------------------------- /Locale/ru-RU/csv/CNC.Core.resources.ru-RU.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/ru-RU/csv/CNC.Core.resources.ru-RU.csv -------------------------------------------------------------------------------- /Locale/ru-RU/csv/ioSender.resources.ru-RU.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/ru-RU/csv/ioSender.resources.ru-RU.csv -------------------------------------------------------------------------------- /Locale/ru-RU/translation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/ru-RU/translation.txt -------------------------------------------------------------------------------- /Locale/uk-UA/csv/CNC.Controls.Camera.resources.uk-UA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/uk-UA/csv/CNC.Controls.Camera.resources.uk-UA.csv -------------------------------------------------------------------------------- /Locale/uk-UA/csv/CNC.Controls.DragKnife.resources.uk-UA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/uk-UA/csv/CNC.Controls.DragKnife.resources.uk-UA.csv -------------------------------------------------------------------------------- /Locale/uk-UA/csv/CNC.Controls.Probing.resources.uk-UA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/uk-UA/csv/CNC.Controls.Probing.resources.uk-UA.csv -------------------------------------------------------------------------------- /Locale/uk-UA/csv/CNC.Controls.Viewer.resources.uk-UA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/uk-UA/csv/CNC.Controls.Viewer.resources.uk-UA.csv -------------------------------------------------------------------------------- /Locale/uk-UA/csv/CNC.Controls.WPF.resources.uk-UA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/uk-UA/csv/CNC.Controls.WPF.resources.uk-UA.csv -------------------------------------------------------------------------------- /Locale/uk-UA/csv/CNC.Converters.resources.uk-UA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/uk-UA/csv/CNC.Converters.resources.uk-UA.csv -------------------------------------------------------------------------------- /Locale/uk-UA/csv/CNC.Core.resources.uk-UA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/uk-UA/csv/CNC.Core.resources.uk-UA.csv -------------------------------------------------------------------------------- /Locale/uk-UA/csv/ioSender.resources.uk-UA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/uk-UA/csv/ioSender.resources.uk-UA.csv -------------------------------------------------------------------------------- /Locale/uk-UA/translation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/uk-UA/translation.txt -------------------------------------------------------------------------------- /Locale/zh-CN/csv/CNC.Controls.Camera.resources.zh-CN.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/zh-CN/csv/CNC.Controls.Camera.resources.zh-CN.csv -------------------------------------------------------------------------------- /Locale/zh-CN/csv/CNC.Controls.DragKnife.resources.zh-CN.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/zh-CN/csv/CNC.Controls.DragKnife.resources.zh-CN.csv -------------------------------------------------------------------------------- /Locale/zh-CN/csv/CNC.Controls.Probing.resources.zh-CN.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/zh-CN/csv/CNC.Controls.Probing.resources.zh-CN.csv -------------------------------------------------------------------------------- /Locale/zh-CN/csv/CNC.Controls.Viewer.resources.zh-CN.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/zh-CN/csv/CNC.Controls.Viewer.resources.zh-CN.csv -------------------------------------------------------------------------------- /Locale/zh-CN/csv/CNC.Controls.WPF.resources.zh-CN.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/zh-CN/csv/CNC.Controls.WPF.resources.zh-CN.csv -------------------------------------------------------------------------------- /Locale/zh-CN/csv/CNC.Converters.resources.zh-CN.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/zh-CN/csv/CNC.Converters.resources.zh-CN.csv -------------------------------------------------------------------------------- /Locale/zh-CN/csv/CNC.Core.resources.zh-CN.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/zh-CN/csv/CNC.Core.resources.zh-CN.csv -------------------------------------------------------------------------------- /Locale/zh-CN/csv/ioSender.resources.zh-CN.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/zh-CN/csv/ioSender.resources.zh-CN.csv -------------------------------------------------------------------------------- /Locale/zh-CN/translation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Locale/zh-CN/translation.txt -------------------------------------------------------------------------------- /Media/Sender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Media/Sender.png -------------------------------------------------------------------------------- /Media/Sender2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Media/Sender2.png -------------------------------------------------------------------------------- /Media/Sender2_XL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Media/Sender2_XL.png -------------------------------------------------------------------------------- /Media/Sender3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Media/Sender3.png -------------------------------------------------------------------------------- /Media/Sender4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Media/Sender4.png -------------------------------------------------------------------------------- /Media/Sender5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Media/Sender5.png -------------------------------------------------------------------------------- /Media/Sender6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Media/Sender6.png -------------------------------------------------------------------------------- /Media/Sender7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Media/Sender7.png -------------------------------------------------------------------------------- /Media/Sender8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/Media/Sender8.png -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/changelog.md -------------------------------------------------------------------------------- /ioSender XL/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender XL/Directory.Build.props -------------------------------------------------------------------------------- /ioSender XL/ioSender XL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender XL/ioSender XL.sln -------------------------------------------------------------------------------- /ioSender XL/ioSender XL/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender XL/ioSender XL/App.ico -------------------------------------------------------------------------------- /ioSender XL/ioSender XL/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender XL/ioSender XL/App.xaml -------------------------------------------------------------------------------- /ioSender XL/ioSender XL/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender XL/ioSender XL/App.xaml.cs -------------------------------------------------------------------------------- /ioSender XL/ioSender XL/JobView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender XL/ioSender XL/JobView.xaml -------------------------------------------------------------------------------- /ioSender XL/ioSender XL/JobView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender XL/ioSender XL/JobView.xaml.cs -------------------------------------------------------------------------------- /ioSender XL/ioSender XL/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender XL/ioSender XL/MainWindow.xaml -------------------------------------------------------------------------------- /ioSender XL/ioSender XL/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender XL/ioSender XL/MainWindow.xaml.cs -------------------------------------------------------------------------------- /ioSender XL/ioSender XL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender XL/ioSender XL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ioSender XL/ioSender XL/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender XL/ioSender XL/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ioSender XL/ioSender XL/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender XL/ioSender XL/Properties/Resources.resx -------------------------------------------------------------------------------- /ioSender XL/ioSender XL/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender XL/ioSender XL/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ioSender XL/ioSender XL/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender XL/ioSender XL/Properties/Settings.settings -------------------------------------------------------------------------------- /ioSender XL/ioSender XL/ioSender XL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender XL/ioSender XL/ioSender XL.csproj -------------------------------------------------------------------------------- /ioSender XL/ioSender XL/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender XL/ioSender XL/license.txt -------------------------------------------------------------------------------- /ioSender/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender/Directory.Build.props -------------------------------------------------------------------------------- /ioSender/PIDLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender/PIDLog.xml -------------------------------------------------------------------------------- /ioSender/ioSender.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender/ioSender.sln -------------------------------------------------------------------------------- /ioSender/ioSender/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender/ioSender/App.config -------------------------------------------------------------------------------- /ioSender/ioSender/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender/ioSender/App.ico -------------------------------------------------------------------------------- /ioSender/ioSender/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender/ioSender/App.xaml -------------------------------------------------------------------------------- /ioSender/ioSender/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender/ioSender/App.xaml.cs -------------------------------------------------------------------------------- /ioSender/ioSender/JobView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender/ioSender/JobView.xaml -------------------------------------------------------------------------------- /ioSender/ioSender/JobView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender/ioSender/JobView.xaml.cs -------------------------------------------------------------------------------- /ioSender/ioSender/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender/ioSender/MainWindow.xaml -------------------------------------------------------------------------------- /ioSender/ioSender/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender/ioSender/MainWindow.xaml.cs -------------------------------------------------------------------------------- /ioSender/ioSender/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender/ioSender/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ioSender/ioSender/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender/ioSender/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ioSender/ioSender/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender/ioSender/Properties/Resources.resx -------------------------------------------------------------------------------- /ioSender/ioSender/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender/ioSender/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ioSender/ioSender/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender/ioSender/Properties/Settings.settings -------------------------------------------------------------------------------- /ioSender/ioSender/ioSender.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender/ioSender/ioSender.csproj -------------------------------------------------------------------------------- /ioSender/ioSender/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/ioSender/ioSender/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terjeio/ioSender/HEAD/readme.md --------------------------------------------------------------------------------