├── .github └── FUNDING.yml ├── .gitignore ├── CustomMaschineMK3 ├── BrowserComponent.py ├── ClipEditorComponent.py ├── ClipNotesSelectMixin.py ├── ColorSkin.py ├── Config.py ├── ControlElements.py ├── CustomClipActionsComponent.py ├── CustomClipSlotComponent.py ├── CustomDeviceComponent.py ├── CustomDeviceNavigationComponent.py ├── CustomDrumGroupComponent.py ├── CustomLoopSelectorComponent.py ├── CustomMaschineMK3.py ├── CustomMixerComponent.py ├── CustomNoteEditorComponent.py ├── CustomSlicedSimplerComponent.py ├── CustomTransportComponent.py ├── DisplayDefinitions.py ├── EncoderModeControlComponent.py ├── GroovePoolComponent.py ├── GroupButtonModeControlComponent.py ├── KnobTouchStateMixin.py ├── Logger.py ├── Mappings.py ├── MaschineMixerComponent.py ├── MaschinePlayableComponent.py ├── MasterVolumeComponent.py ├── MiscControlComponent.py ├── NoteRepeatComponent.py ├── PageableBackgroundComponent.py ├── RecordingMethod.py ├── ScaleSystemComponent.py ├── SelectedParameterControlComponent.py ├── SettingsComponent.py ├── SysexShiftButton.py ├── VelocityLevelsComponent.py └── __init__.py ├── LICENSE ├── README.md └── Template ├── CustomMaschineMK3.ncm3 └── CustomMaschinePlus.ncmp /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/.gitignore -------------------------------------------------------------------------------- /CustomMaschineMK3/BrowserComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/BrowserComponent.py -------------------------------------------------------------------------------- /CustomMaschineMK3/ClipEditorComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/ClipEditorComponent.py -------------------------------------------------------------------------------- /CustomMaschineMK3/ClipNotesSelectMixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/ClipNotesSelectMixin.py -------------------------------------------------------------------------------- /CustomMaschineMK3/ColorSkin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/ColorSkin.py -------------------------------------------------------------------------------- /CustomMaschineMK3/Config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/Config.py -------------------------------------------------------------------------------- /CustomMaschineMK3/ControlElements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/ControlElements.py -------------------------------------------------------------------------------- /CustomMaschineMK3/CustomClipActionsComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/CustomClipActionsComponent.py -------------------------------------------------------------------------------- /CustomMaschineMK3/CustomClipSlotComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/CustomClipSlotComponent.py -------------------------------------------------------------------------------- /CustomMaschineMK3/CustomDeviceComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/CustomDeviceComponent.py -------------------------------------------------------------------------------- /CustomMaschineMK3/CustomDeviceNavigationComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/CustomDeviceNavigationComponent.py -------------------------------------------------------------------------------- /CustomMaschineMK3/CustomDrumGroupComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/CustomDrumGroupComponent.py -------------------------------------------------------------------------------- /CustomMaschineMK3/CustomLoopSelectorComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/CustomLoopSelectorComponent.py -------------------------------------------------------------------------------- /CustomMaschineMK3/CustomMaschineMK3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/CustomMaschineMK3.py -------------------------------------------------------------------------------- /CustomMaschineMK3/CustomMixerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/CustomMixerComponent.py -------------------------------------------------------------------------------- /CustomMaschineMK3/CustomNoteEditorComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/CustomNoteEditorComponent.py -------------------------------------------------------------------------------- /CustomMaschineMK3/CustomSlicedSimplerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/CustomSlicedSimplerComponent.py -------------------------------------------------------------------------------- /CustomMaschineMK3/CustomTransportComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/CustomTransportComponent.py -------------------------------------------------------------------------------- /CustomMaschineMK3/DisplayDefinitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/DisplayDefinitions.py -------------------------------------------------------------------------------- /CustomMaschineMK3/EncoderModeControlComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/EncoderModeControlComponent.py -------------------------------------------------------------------------------- /CustomMaschineMK3/GroovePoolComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/GroovePoolComponent.py -------------------------------------------------------------------------------- /CustomMaschineMK3/GroupButtonModeControlComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/GroupButtonModeControlComponent.py -------------------------------------------------------------------------------- /CustomMaschineMK3/KnobTouchStateMixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/KnobTouchStateMixin.py -------------------------------------------------------------------------------- /CustomMaschineMK3/Logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/Logger.py -------------------------------------------------------------------------------- /CustomMaschineMK3/Mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/Mappings.py -------------------------------------------------------------------------------- /CustomMaschineMK3/MaschineMixerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/MaschineMixerComponent.py -------------------------------------------------------------------------------- /CustomMaschineMK3/MaschinePlayableComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/MaschinePlayableComponent.py -------------------------------------------------------------------------------- /CustomMaschineMK3/MasterVolumeComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/MasterVolumeComponent.py -------------------------------------------------------------------------------- /CustomMaschineMK3/MiscControlComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/MiscControlComponent.py -------------------------------------------------------------------------------- /CustomMaschineMK3/NoteRepeatComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/NoteRepeatComponent.py -------------------------------------------------------------------------------- /CustomMaschineMK3/PageableBackgroundComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/PageableBackgroundComponent.py -------------------------------------------------------------------------------- /CustomMaschineMK3/RecordingMethod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/RecordingMethod.py -------------------------------------------------------------------------------- /CustomMaschineMK3/ScaleSystemComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/ScaleSystemComponent.py -------------------------------------------------------------------------------- /CustomMaschineMK3/SelectedParameterControlComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/SelectedParameterControlComponent.py -------------------------------------------------------------------------------- /CustomMaschineMK3/SettingsComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/SettingsComponent.py -------------------------------------------------------------------------------- /CustomMaschineMK3/SysexShiftButton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/SysexShiftButton.py -------------------------------------------------------------------------------- /CustomMaschineMK3/VelocityLevelsComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/VelocityLevelsComponent.py -------------------------------------------------------------------------------- /CustomMaschineMK3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/CustomMaschineMK3/__init__.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/README.md -------------------------------------------------------------------------------- /Template/CustomMaschineMK3.ncm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/Template/CustomMaschineMK3.ncm3 -------------------------------------------------------------------------------- /Template/CustomMaschinePlus.ncmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiakibeats/CustomMaschineMK3/HEAD/Template/CustomMaschinePlus.ncmp --------------------------------------------------------------------------------