GithubHelp home page GithubHelp logo

marlin-3d-printer-firmware's Introduction

Marlin 3D Printer Firmware

Everything in this repo is for Geeetech I3 Pro B


Refer to .md file for the Marlin version you want to use.

Read that file carefully, PLEASE!


Marlin firmware for my Geeetech i3 Pro B with GT2560A+ board

Includes BLTouch, T8 lead screws and RepRap Discount Full Graphic Smart Controller.

I recommend using VSCode for compiling and uploading to printer.

Compilation

I use VS Code with PlatformIO and Auto Build Marlin for compiling, but you can also do this with Arduino IDE.

VS Code/PlatformIO instructions here.

Testing and calibrating

View current settings and parameters

M503

Set temperatures

Set extruder temperature

M104 S205; set temp for default extruder to 205 degrees

Send: M104 S205
Recv: ok

Set bed temperature

M140 S65; set bed temp to 65 degrees

Send: M140 S65
Recv: ok

BLTouch

M280 P0 S10; pushes the pin down
M280 P0 S90; pulls the pin up
M280 P0 S120; self test โ€“ keeps going until you do pin up/down or release alarm
M280 P0 S160; release alarm

PID Tuning

Check current settings

M503; print all settings stored in eeprom

...
Recv: echo:; Hotend PID:
Recv: echo:  M301 P23.12 I1.72 D77.65
...  

Start parts cooler fan

M106 S255; set parts fan to 100%

Send: M106 S255
Recv: ok

Start tuning

M303 E0 S245 C8; tune at 245 degrees 8 times

...
Recv: PID Autotune finished! Put the last Kp, Ki and Kd constants from below into Configuration.h
Recv: #define DEFAULT_Kp 17.06
Recv: #define DEFAULT_Ki 1.05
Recv: #define DEFAULT_Kd 69.18
...

Enter new values

M301 P17.06 I1.05 D69.18; set PID values

Send: M301 P17.06 I1.05 D69.18
Recv: ok

Save to EEPROM with:

M500; store to eeprom

Send: M500
Recv: echo:Settings Stored (627 bytes; crc 55228)
Recv: ok

Steps/mm

Show current settings (steps per mm etc)

M501

echo:V47 stored settings retrieved (614 bytes; crc 29566)
echo:  G21    ; Units in mm
echo:  M149 C ; Units in Celsius

echo:Filament settings: Disabled
echo:  M200 D1.75
echo:  M200 D0
echo:Steps per unit:
echo:  M92 X81.50 Y81.50 Z400.69 E94.00
echo:Maximum feedrates (units/s):
echo:  M203 X400.00 Y400.00 Z2.00 E45.00
echo:Maximum Acceleration (units/s2):
echo:  M201 X4000 Y4000 Z40 E4000
echo:Acceleration (units/s2): P<print_accel> R<retract_accel> T<travel_accel>
echo:  M204 P3000.00 R3000.00 T3000.00
echo:Advanced: S<min_feedrate> T<min_travel_feedrate> B<min_segment_time_us> X<max_xy_jerk> Z<max_z_jerk> E<max_e_jerk>
echo:  M205 S0.00 T0.00 B20000 X10.00 Y10.00 Z0.30 E5.00
echo:Home offset:
echo:  M206 X0.00 Y0.00 Z0.00
echo:Auto Bed Leveling:
echo:  M420 S0
echo:Material heatup parameters:
echo:  M145 S0 H180 B70 F0
echo:  M145 S1 H215 B105 F0
echo:PID settings:
echo:  M301 P22.06 I1.06 D114.78
echo:Z-Probe Offset (mm):
echo:  M851 Z-0.61

Set Z-Offset

View current offset

M851

Send: M851
Recv: echo:Probe Z Offset: -0.95
Recv: ok

Set new offset

M851 Z-0.8

Send: M851 Z-0.8
Recv: echo:Probe Z Offset: -0.80
Recv: ok

Save new value to EEPROM

M500

Higher value -> smaller distance from bed

Set X/Y center

Home X and Y axes

G28 X Y

Set extruder at 0:0

G1 X0 Y0

Set extruder at bed center

G1 X95 Y96

if bed size is set to 190x192mm in Configuration.h in Marlin firmware

// The size of the print bed
#define X_BED_SIZE 190
#define Y_BED_SIZE 192

Compensate with

#define X_MIN_POS 0
#define Y_MIN_POS 0
...
#define X_MAX_POS X_BED_SIZE
#define Y_MAX_POS Y_BED_SIZE

Homing and leveling

G28; home all axes G29; do bed leveling

Set skew factor

Adapted from https://github.com/MarlinFirmware/Configurations/blob/import-2.0.x/config/examples/Geeetech/Prusa%20i3%20Pro%20B/bltouch/README.md

The skew factor must be adjusted for each printer:

First, uncomment #define XY_SKEW_FACTOR 0.0, if commented

  #define XY_SKEW_FACTOR 0.0

Compile and upload the firmware.
Then, print YACS (Yet Another Calibration Square).
Hint: scale it considering a margin for brim (if used). The larger, the better to make error measurements.
Measure the printed part according to the comments in the example configuration file, and set XY_DIAG_AC, XY_DIAG_BD and Y_SIDE_AD.

  #define XY_DIAG_AC 282.8427124746
  #define XY_DIAG_BD 282.8427124746
  #define XY_SIDE_AD 200

Comment #define XY_SKEW_FACTOR 0.0 again.

  //#define XY_SKEW_FACTOR 0.0

Compile and upload again.

Permissions

Check your permissions.
You need to belong to the groups tty and dialout to be able to write to the tty/USBx.

Run

$ groups | grep ' tty ' && echo -e "\nGreat! \nYou are a member of 'tty'" || echo -e "\nError: \nYou are not a member of the group 'tty'. \n\nCorrect with 'sudo usermod -a -G tty $USER'"

and

$ groups | grep ' dialout ' && echo -e "\nGreat! \nYou are a member of 'dialout'" || echo -e "\nError: \nYou are not a member of the group 'dialout'. \n\nCorrect with 'sudo usermod -a -G dialout $USER'"

to check.

If you had to add yourself to any group, you must reboot to join the groups.

$ sudo reboot

avrdude

Install avrdude if not installed.

$ sudo apt install avrdude

Upload binary

$ avrdude -v -q -p m2560 -c wiring -P /dev/ttyUSB0 -D -U flash:w:/path/to/image.hex:i

marlin-3d-printer-firmware's People

Contributors

jonsag avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

marlin-3d-printer-firmware's Issues

Sketch fails to compile - Marlin-1.1.9_Geetech_i3_ProB_BLTouch_T8_Lead_Screw

Arduino: 1.8.9 (Windows 10), Board: "Arduino/Genuino Mega or Mega 2560, ATmega2560 (Mega 2560)"

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\G26_Mesh_Validation_Tool.cpp:27:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\digipot_mcp4018.cpp:23:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\I2CPositionEncoder.cpp:31:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\emergency_parser.cpp:27:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

exit status 1
In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\printcounter.cpp:23:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\blinkm.cpp:27:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\leds.cpp:27:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\power_loss_recovery.cpp:27:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\mesh_bed_leveling.cpp:23:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\twibus.cpp:23:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\tmc_util.cpp:23:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\malyanlcd.cpp:44:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\nozzle.cpp:23:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\M100_Free_Mem_Chk.cpp:49:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\digipot_mcp4451.cpp:23:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\MarlinSerial.cpp:36:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\neopixel.cpp:27:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\pca9632.cpp:28:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\power.cpp:27:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\Marlin.h:35,

                 from sketch\stepper.cpp:80:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\SdVolume.cpp:29:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\enum.h:26,

                 from sketch\parser.h:32,

                 from sketch\parser.cpp:27:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\SdFile.cpp:29:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\configuration_store.h:26,

                 from sketch\configuration_store.cpp:47:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\Sd2Card.cpp:29:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\hex_print_routines.cpp:23:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\fwretract.cpp:27:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\runout.cpp:27:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\Marlin.h:35,

                 from sketch\Marlin_main.cpp:258:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\planner_bezier.cpp:30:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\Max7219_Debug_LEDs.cpp:38:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\dac_mcp4728.cpp:33:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\SdFatUtil.cpp:29:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\ubl.cpp:23:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\SdBaseFile.cpp:30:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\stepper_indirection.h:47,

                 from sketch\stepper_indirection.cpp:34:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\Marlin.h:35,

                 from sketch\endstops.cpp:27:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\least_squares_fit.cpp:35:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\enum.h:26,

                 from sketch\planner.h:36,

                 from sketch\planner.cpp:65:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\Marlin.h:35,

                 from sketch\stepper_dac.cpp:44:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\cardreader.cpp:23:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\ubl_G29.cpp:23:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\Marlin.h:35,

                 from sketch\stopwatch.cpp:25:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

In file included from sketch\MarlinConfig.h:42:0,

                 from sketch\ubl_motion.cpp:22:

SanityCheck.h:947:5: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

     static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");

     ^

static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.

This report would have more information with
"Show verbose output during compilation"
option enabled in File -> Preferences.

Debug option for Z axis moves left on in this code

There appears to be a debug option left turned on in this code. Every Z axis move posts a message to my console in the form --

x: nnn.nn y:nnn.nn z:nnn.nn e:n.nn count x:nnnnn y:nnnnn z:nnnn

I'm not sure where this debug setting is or how to turn it off.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.