Releases: jneilliii/OctoPrint-BedLevelVisualizer
Releases · jneilliii/OctoPrint-BedLevelVisualizer
1.1.0rc8
1.1.0rc7
- added BLVPROCESSINGON/BLVPROCESSINGOFF received gcode commands via M118, #447.
The following example custom command button would change to "processing" mode, heat the hot end until it reaches 200 degrees and then turn "processing" mode off. If webcam is enabled while processing the webcam will be shown while in "processing" mode.
M118 BLVPROCESSINGON
M109 S200
M118 BLVPROCESSINGOFF
1.1.0rc6
- add custom action command
BEDLEVELVISUALIZER_LEVELBED
to allow use with various custom config input options in Marlin (Configurationa_adv.h), ieCUSTOM_MENU_MAIN
. Will initiate the command contained within the Update Mesh gcode script when received. Requires HOST_ACTION_COMMANDS to be enabled as well. Example menu item.
#define MAIN_MENU_ITEM_1_DESC "Bed Visualize"
#define MAIN_MENU_ITEM_1_GCODE "M118 A1 action:BEDLEVELVISUALIZER_LEVELBED"
1.1.0rc5
1.1.0rc4
1.1.0rc3 - Improved Non Numpy Support
- Improved circular mask for mesh data after removing numpy, thanks to @EvilGremlin
- Fixed issue related to relative offset after removing numpy, #424
1.1.0rc2
1.1.0rc1
- removed numpy dependency, thanks to @EvilGremlin