bigtreetech / BIGTREETECH-OCTOPUS-Pro

This is OCTOPUS Pro open source material
255 stars 51 forks source link

Octopus Pro & MicroProbe V2.0 #41

Open motoyasu-atsumi opened 9 months ago

motoyasu-atsumi commented 9 months ago

I am struggling with the combination of Octopus Pro & MicroProbe V2.0. Is there anyone out there who has gotten it to work well?

SplendidGoT commented 7 months ago

Same here, just can't get it to work. It will test eject the probe a couple of times when I boot up the printer, but when trying to do a bed leveling the probe does nothing and the printer will shutdown. Contacted Bigtreetech but they never respond.

carhifitrier commented 6 months ago

Same here, but just the short warning kicking in when probe is connected at startup. An AliExpress item description is saying, its not compatible with octopus pro 446..

motoyasu-atsumi commented 6 months ago

The BTT website stated that Octopus Pro is not supported.

carhifitrier commented 6 months ago

The BTT website stated that Octopus Pro is not supported.

Could you please point us to that statement? I can not find that information on any BTT/Biqu site.

motoyasu-atsumi commented 6 months ago

When you look at it, it's gone! Here is a screenshot of what I saw.

MicroProbe

carhifitrier commented 6 months ago

Thank you!

carhifitrier commented 6 months ago

Just if someone is having the same issue and wants to use the microprobe in combination with his Octopus pro board on klipper, i took the following workaround:

Get a RP2040 board ( some arduino/clones should still work too, i bought a waveshare rp2040 zero) Just flash with klipper and connect it to the host as secondary mcu Use 5v, gnd and 2 pins (i went with gpio14 and gpio15) of that board for the probe and add the needed config to printer.cfg.

That way one can use it without issues caused by that incompatibility.

If using the microprobe V2: The internal Pullup of the rp2040 seems to work without issues, if it gives false positive triggers, you might have to add an extra 10k resistor between the probe pin and 5v.

adamster1983 commented 5 months ago

It does work got it working on my octopus pro 1.1 h723 have u set stepper z pg10 endtop pin with probe:z_virtual_endstop

Quard commented 5 months ago

Octopus Pro has a PROBE dedicated socket that works fine with MicroProbe V2.

My wiring looks like:

and configuration for the Klipper

[output_pin probe_enable]
pin: PB6
value: 0

[gcode_macro Probe_Deploy]
gcode:
  SET_PIN PIN=probe_enable VALUE=1

[gcode_macro Probe_Stow]
gcode:
  SET_PIN PIN=probe_enable VALUE=0

[probe]
pin: !PC5
deactivate_on_each_sample: False
x_offset: -12.6
y_offset: -29.5
#z_offset: 1.0
speed: 5.0
activate_gcode:
  Probe_Deploy
  G4 P500
deactivate_gcode:
  Probe_Stow
carhifitrier commented 5 months ago

Which revision/version of Octopus pro do you have it working with? I have an 1.0 F446, which is kicking in the short protection as soon as i fully have the microprobe connected. I might try your connection setup if you are using the same board sucessfully.

Quard commented 5 months ago

Octopus Pro V1.1 with H723

Quard commented 5 months ago

According to the schematics in this repository Probe socket has the same implementation on both versions of the board. I means that here should not be any difference between the board versions for the MicroProbe.

@carhifitrier could you show your wiring and configuration for the MicroProbe. For now, I have only one suggestion, you have enabled pull-up resistor in configuration, as it done in MicroProbe manual for all boards, but you should not do that as board already has the physical pull-down resistor on this PC5 pin(Probe).

adamster1983 commented 5 months ago

Many thanks got it working much appreciated.

Thanks

Adam

On Sat, 10 Feb 2024, 08:02 Vadym Zakovinko, @.***> wrote:

According to the schematics in this repository Probe socket has the same implementation on both versions of the board. I means that here should not be any difference between the board versions for the MicroProbe.

@carhifitrier https://github.com/carhifitrier could you show your wiring and configuration for the MicroProbe. For now, I have only one suggestion, you have enabled pull-up resistor in configuration, as it done in MicroProbe manual for all boards, but you should not do that as board already has the physical pull-down resistor on this PC5 pin(Probe).

— Reply to this email directly, view it on GitHub https://github.com/bigtreetech/BIGTREETECH-OCTOPUS-Pro/issues/41#issuecomment-1936922929, or unsubscribe https://github.com/notifications/unsubscribe-auth/BFENRMVE534ICG76PN4QS3DYS4SRLAVCNFSM6AAAAAA5IPUOO2VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTSMZWHEZDEOJSHE . You are receiving this because you commented.Message ID: @.***>

carhifitrier commented 5 months ago

@Quard Thanks for the Idea. I just tried with connection of all 5 on the normally correct bltouch pins, will try with the 2 on probe port as soon as i get to it. My code is working, that's not a problem. Seems as O. pro 1.1 does work with it, did not hear about an user who did it with an 1.0 pro Board. I'll give feedback when i got into it! Setting a second pulldown should rather be not leading to the issue i am experiencing.