Skip to content

Commit

Permalink
Biqu MicroProbe option for Hurakan
Browse files Browse the repository at this point in the history
Biqu MicroProbe V1 triggers HIGH vs. the V2 which triggers LOW.
  • Loading branch information
thisiskeithb committed Nov 15, 2023
1 parent 58f3843 commit a06705d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 4 additions & 2 deletions config/examples/BIQU/Hurakan/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
#error "Don't build with import-2.1.x configurations!"
#error "Use the 'bugfix...' or 'release...' configurations matching your Marlin version."

//#define BIQU_MICROPROBE_V1 // Uncomment for Biqu MicroProbe V1, otherwise V2 is assumed

/**
* Configuration.h
*
Expand Down Expand Up @@ -1175,7 +1177,7 @@
#define X_MAX_ENDSTOP_HIT_STATE HIGH
#define Y_MIN_ENDSTOP_HIT_STATE HIGH
#define Y_MAX_ENDSTOP_HIT_STATE HIGH
#define Z_MIN_ENDSTOP_HIT_STATE LOW
#define Z_MIN_ENDSTOP_HIT_STATE TERN(BIQU_MICROPROBE_V1, HIGH, LOW)
#define Z_MAX_ENDSTOP_HIT_STATE HIGH
#define I_MIN_ENDSTOP_HIT_STATE HIGH
#define I_MAX_ENDSTOP_HIT_STATE HIGH
Expand All @@ -1189,7 +1191,7 @@
#define V_MAX_ENDSTOP_HIT_STATE HIGH
#define W_MIN_ENDSTOP_HIT_STATE HIGH
#define W_MAX_ENDSTOP_HIT_STATE HIGH
#define Z_MIN_PROBE_ENDSTOP_HIT_STATE HIGH
#define Z_MIN_PROBE_ENDSTOP_HIT_STATE TERN(BIQU_MICROPROBE_V1, HIGH, LOW)

// Enable this feature if all enabled endstop pins are interrupt-capable.
// This will remove the need to poll the interrupt pins, saving many CPU cycles.
Expand Down
2 changes: 2 additions & 0 deletions config/examples/BIQU/Hurakan/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

> [!NOTE]
> Early Hurakan printers have a raised bed power switch, so enable (uncomment) `#define PROBING_MARGIN_BACK` in `Configuration_adv.h` to prevent the hotend from potentially colliding with the switch assembly while probing.
>
> Enable (uncomment) `#define BIQU_MICROPROBE_V1` in `Configuration.h` for Biqu MicroProbe V1, otherwise V2 is assumed.
The Biqu Hurakan ships with a BigTreeTech Manta M4P motherboard which includes an integrated BigTreeTech CB1 single board computer running Klipper. See below for instructions on how to update the CB1 to run OctoPrint.

Expand Down

0 comments on commit a06705d

Please sign in to comment.