mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-06 22:47:32 -06:00
Input Shaping Frequency
Input Shaping calibration based in https://marlinfw.org/docs/gcode/M593.html
This commit is contained in:
parent
bf9cce4800
commit
19dae83e40
14 changed files with 217 additions and 8 deletions
|
@ -2974,6 +2974,17 @@ void MainFrame::init_menubar_as_editor()
|
|||
},
|
||||
"", nullptr,
|
||||
[this]() {return m_plater->is_view3D_shown();; }, this);
|
||||
|
||||
append_menu_item(
|
||||
advance_menu, wxID_ANY, _L("Input Shaping"), _L("Input Shaping"),
|
||||
[this](wxCommandEvent&) {
|
||||
std::string url = "https://marlinfw.org/docs/gcode/M593.html";//TODO: Make OrcaSlicer wiki page
|
||||
if (!m_IS_calib_dlg)
|
||||
m_IS_calib_dlg = new Input_Shaping_Test_Dlg((wxWindow*)this, wxID_ANY, m_plater);
|
||||
m_IS_calib_dlg->ShowModal();
|
||||
},
|
||||
"", nullptr,
|
||||
[this]() {return m_plater->is_view3D_shown();; }, this);
|
||||
m_topbar->GetCalibMenu()->AppendSubMenu(advance_menu, _L("More..."));
|
||||
|
||||
// help
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue