gitextract_ef7r4v5m/ ├── .github/ │ └── workflows/ │ └── create_executables.yml ├── .gitignore ├── LICENSE ├── README.md ├── command_to_generate_spec.txt ├── device.json ├── requirements.txt ├── scriptTest.py ├── simpleFOCStudio.py ├── simpleFOCStudio.spec └── src/ ├── gui/ │ ├── commandlinetool/ │ │ ├── commandlinetool.py │ │ └── configureConnectionWidget.py │ ├── configtool/ │ │ ├── configureConnectionDialog.py │ │ ├── connectionControl.py │ │ ├── controlLoopConfig.py │ │ ├── deviceConfigurationTool.py │ │ ├── deviceInteractionFrame.py │ │ ├── deviceJoggingControl.py │ │ ├── deviceTreeview.py │ │ ├── devicesInspectorTree.py │ │ ├── droDisplayWidget.py │ │ ├── generalControls.py │ │ ├── generalSettingsWidget.py │ │ ├── generatedCodeDisplay.py │ │ ├── graphicWidget.py │ │ ├── pidConfiguration.py │ │ ├── torqueConfig.py │ │ └── treeViewConfigTool.py │ ├── mainWindow.py │ ├── resources/ │ │ ├── add_motor.psd │ │ ├── motor.psd │ │ └── studioicon.icns │ ├── sharedcomnponets/ │ │ ├── commandLineInterface.py │ │ └── sharedcomponets.py │ ├── toolbar.py │ └── workAreaTabbedWidget.py └── simpleFOCConnector.py