jneilliii / OctoPrint-BedLevelVisualizer

MIT License
369 stars 82 forks source link

Always repeating the gcode #561

Closed gabrielmaster123 closed 2 years ago

gabrielmaster123 commented 2 years ago

When I started to vidualize the bed the printer just repeats it over and over again. I use Marlin and only changed the bed temp to 70 degrees

jneilliii commented 2 years ago

Sorry, but I don't understand what you mean.

gabrielmaster123 commented 2 years ago

The printer loops. When it is done scanning the bed it just does it again over and over again

On Tue, Aug 2, 2022, 16:25 jneilliii @.***> wrote:

Sorry, but I don't understand what you mean.

— Reply to this email directly, view it on GitHub https://github.com/jneilliii/OctoPrint-BedLevelVisualizer/issues/561#issuecomment-1202688267, or unsubscribe https://github.com/notifications/unsubscribe-auth/AONEOAZHHNV6U52RIYWDNPLVXEVVXANCNFSM55LJOTNA . You are receiving this because you authored the thread.Message ID: @.***>

jneilliii commented 2 years ago

You might have the wrong commands configured in settings. I suspect you used the UBL commands, but in fact your printer needs the bilinear options.

gabrielmaster123 commented 2 years ago

I have no Idea what either of those mean

On Tue, Aug 2, 2022, 22:37 jneilliii @.***> wrote:

You might have the wrong commands configured in settings. I suspect you used the UBL commands, but in fact your printer needs the bilinear options.

— Reply to this email directly, view it on GitHub https://github.com/jneilliii/OctoPrint-BedLevelVisualizer/issues/561#issuecomment-1203191021, or unsubscribe https://github.com/notifications/unsubscribe-auth/AONEOAYJNQLQGE5JTS43LXDVXGBKNANCNFSM55LJOTNA . You are receiving this because you authored the thread.Message ID: @.***>

jneilliii commented 2 years ago

Please share the gcode commands you have configured in settings.

gabrielmaster123 commented 2 years ago

GCODE Commands for Mesh Update Process


M420 S0   ; Turning off bed leveling while probing, if firmware is set
          ; to restore after G28
M155 S30  ; reduce temperature reporting rate to reduce output pollution
M190 S70  ; (optional) wait for the bed to get up to temperature
G29 P1    ; automatically populate mesh with all reachable points
G29 P3    ; infer the rest of the mesh values
G29 P3    ; infer the rest of the mesh values again
@BEDLEVELVISUALIZER ; tell the plugin to watch for reported mesh
M420 S1 V ; enabled leveling and report the new mesh
G29 S0    ; Save UBL mesh points to slot 0 (EEPROM).
G29 F 10.0 ; Set Fade Height for correction at 10.0 mm.
G29 A     ; Activate the UBL System.
M500      ; save the current setup to EEPROM
M155 S3   ; reset temperature reporting
M140 S0   ; cooling down the bed```
gabrielmaster123 commented 2 years ago

ok I figured outr what you meant and took the other code now it works