Support for BIQU B1-SE-Plus strain gauge probe (#23101)

Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
This commit is contained in:
BigTreeTech
2021-11-10 23:56:10 +08:00
committed by Scott Lahteine
parent a2349fc411
commit 6e284f8823
7 changed files with 39 additions and 3 deletions

View File

@ -392,6 +392,9 @@ void Endstops::not_homing() {
#if HAS_BED_PROBE
void Endstops::enable_z_probe(const bool onoff) {
z_probe_enabled = onoff;
#if PIN_EXISTS(PROBE_ENABLE)
WRITE(PROBE_ENABLE_PIN, onoff);
#endif
resync();
}
#endif