AXES_MAP detection reworked (#110)

This commit is contained in:
Félix Boisselier
2024-06-04 18:31:23 +02:00
committed by GitHub
parent 0fbdef4a17
commit bb6907e5e6
7 changed files with 423 additions and 143 deletions

View File

@@ -7,7 +7,7 @@ from .helpers.console_output import ConsoleOutput
KLIPPER_FOLDER = Path.home() / 'klipper'
KLIPPER_LOG_FOLDER = Path.home() / 'printer_data/logs'
RESULTS_BASE_FOLDER = Path.home() / 'printer_data/config/K-ShakeTune_results'
RESULTS_SUBFOLDERS = {'belts': 'belts', 'shaper': 'inputshaper', 'vibrations': 'vibrations'}
RESULTS_SUBFOLDERS = {'axesmap': 'axesmap', 'belts': 'belts', 'shaper': 'inputshaper', 'vibrations': 'vibrations'}
class ShakeTuneConfig: