Bladeren bron

Merge pull request #4455 from AnHardt/double-bump-feature

double bump probing as a feature
Scott Lahteine 8 jaren geleden
bovenliggende
commit
9e21b2e51d
23 gewijzigde bestanden met toevoegingen van 101 en 52 verwijderingen
  1. 4
    2
      Marlin/Configuration.h
  2. 13
    8
      Marlin/Marlin_main.cpp
  3. 4
    2
      Marlin/example_configurations/Cartesio/Configuration.h
  4. 4
    2
      Marlin/example_configurations/Felix/Configuration.h
  5. 4
    2
      Marlin/example_configurations/Felix/DUAL/Configuration.h
  6. 4
    2
      Marlin/example_configurations/Hephestos/Configuration.h
  7. 4
    2
      Marlin/example_configurations/Hephestos_2/Configuration.h
  8. 4
    2
      Marlin/example_configurations/K8200/Configuration.h
  9. 4
    2
      Marlin/example_configurations/K8400/Configuration.h
  10. 4
    2
      Marlin/example_configurations/K8400/Dual-head/Configuration.h
  11. 4
    2
      Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h
  12. 4
    2
      Marlin/example_configurations/RigidBot/Configuration.h
  13. 4
    2
      Marlin/example_configurations/SCARA/Configuration.h
  14. 4
    2
      Marlin/example_configurations/TAZ4/Configuration.h
  15. 4
    2
      Marlin/example_configurations/WITBOX/Configuration.h
  16. 4
    2
      Marlin/example_configurations/adafruit/ST7565/Configuration.h
  17. 4
    2
      Marlin/example_configurations/delta/biv2.5/Configuration.h
  18. 4
    2
      Marlin/example_configurations/delta/generic/Configuration.h
  19. 4
    2
      Marlin/example_configurations/delta/kossel_mini/Configuration.h
  20. 4
    2
      Marlin/example_configurations/delta/kossel_pro/Configuration.h
  21. 4
    2
      Marlin/example_configurations/delta/kossel_xl/Configuration.h
  22. 4
    2
      Marlin/example_configurations/makibox/Configuration.h
  23. 4
    2
      Marlin/example_configurations/tvrrug/Round2/Configuration.h

+ 4
- 2
Marlin/Configuration.h Bestand weergeven

@@ -482,10 +482,12 @@
482 482
 
483 483
 // X and Y axis travel speed (mm/m) between probes
484 484
 #define XY_PROBE_SPEED 8000
485
-// Speed for the first approach when probing
485
+// Speed for the first approach when double-probing (with PROBE_DOUBLE_TOUCH)
486 486
 #define Z_PROBE_SPEED_FAST HOMING_FEEDRATE_Z
487
-// Speed for the second approach when probing
487
+// Speed for the "accurate" probe of each point
488 488
 #define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
489
+// Use double touch for probing
490
+//#define PROBE_DOUBLE_TOUCH
489 491
 
490 492
 //
491 493
 // Allen Key Probe is defined in the Delta example configurations.

+ 13
- 8
Marlin/Marlin_main.cpp Bestand weergeven

@@ -2110,16 +2110,21 @@ static void clean_up_after_endstop_or_probe_move() {
2110 2110
       planner.bed_level_matrix.set_to_identity();
2111 2111
     #endif
2112 2112
 
2113
-    do_blocking_move_to_z(-(Z_MAX_LENGTH + 10), Z_PROBE_SPEED_FAST);
2114
-    endstops.hit_on_purpose();
2115
-    set_current_from_steppers_for_axis(Z_AXIS);
2116
-    SYNC_PLAN_POSITION_KINEMATIC();
2113
+    #if ENABLED(PROBE_DOUBLE_TOUCH)
2114
+      do_blocking_move_to_z(-(Z_MAX_LENGTH + 10), Z_PROBE_SPEED_FAST);
2115
+      endstops.hit_on_purpose();
2116
+      set_current_from_steppers_for_axis(Z_AXIS);
2117
+      SYNC_PLAN_POSITION_KINEMATIC();
2117 2118
 
2118
-    // move up the retract distance
2119
-    do_blocking_move_to_z(current_position[Z_AXIS] + home_bump_mm(Z_AXIS), Z_PROBE_SPEED_FAST);
2119
+      // move up the retract distance
2120
+      do_blocking_move_to_z(current_position[Z_AXIS] + home_bump_mm(Z_AXIS), Z_PROBE_SPEED_FAST);
2121
+    #else
2122
+      // move fast, close to the bed
2123
+      do_blocking_move_to_z(home_bump_mm(Z_AXIS), Z_PROBE_SPEED_FAST);
2124
+    #endif
2120 2125
 
2121
-    // move back down slowly to find bed
2122
-    do_blocking_move_to_z(current_position[Z_AXIS] - home_bump_mm(Z_AXIS) * 2, Z_PROBE_SPEED_SLOW);
2126
+    // move down slowly to find bed
2127
+    do_blocking_move_to_z(current_position[Z_AXIS] -2.0*home_bump_mm(Z_AXIS), Z_PROBE_SPEED_SLOW);
2123 2128
     endstops.hit_on_purpose();
2124 2129
     set_current_from_steppers_for_axis(Z_AXIS);
2125 2130
     SYNC_PLAN_POSITION_KINEMATIC();

+ 4
- 2
Marlin/example_configurations/Cartesio/Configuration.h Bestand weergeven

@@ -483,10 +483,12 @@
483 483
 
484 484
 // X and Y axis travel speed (mm/m) between probes
485 485
 #define XY_PROBE_SPEED 8000
486
-// Speed for the first approach when probing
486
+// Speed for the first approach when double-probing (with PROBE_DOUBLE_TOUCH)
487 487
 #define Z_PROBE_SPEED_FAST HOMING_FEEDRATE_Z
488
-// Speed for the second approach when probing
488
+// Speed for the "accurate" probe of each point
489 489
 #define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
490
+// Use double touch for probing
491
+//#define PROBE_DOUBLE_TOUCH
490 492
 
491 493
 //
492 494
 // Allen Key Probe is defined in the Delta example configurations.

+ 4
- 2
Marlin/example_configurations/Felix/Configuration.h Bestand weergeven

@@ -465,10 +465,12 @@
465 465
 
466 466
 // X and Y axis travel speed (mm/m) between probes
467 467
 #define XY_PROBE_SPEED 8000
468
-// Speed for the first approach when probing
468
+// Speed for the first approach when double-probing (with PROBE_DOUBLE_TOUCH)
469 469
 #define Z_PROBE_SPEED_FAST HOMING_FEEDRATE_Z
470
-// Speed for the second approach when probing
470
+// Speed for the "accurate" probe of each point
471 471
 #define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
472
+// Use double touch for probing
473
+//#define PROBE_DOUBLE_TOUCH
472 474
 
473 475
 //
474 476
 // Allen Key Probe is defined in the Delta example configurations.

+ 4
- 2
Marlin/example_configurations/Felix/DUAL/Configuration.h Bestand weergeven

@@ -463,10 +463,12 @@
463 463
 
464 464
 // X and Y axis travel speed (mm/m) between probes
465 465
 #define XY_PROBE_SPEED 8000
466
-// Speed for the first approach when probing
466
+// Speed for the first approach when double-probing (with PROBE_DOUBLE_TOUCH)
467 467
 #define Z_PROBE_SPEED_FAST HOMING_FEEDRATE_Z
468
-// Speed for the second approach when probing
468
+// Speed for the "accurate" probe of each point
469 469
 #define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
470
+// Use double touch for probing
471
+//#define PROBE_DOUBLE_TOUCH
470 472
 
471 473
 //
472 474
 // Allen Key Probe is defined in the Delta example configurations.

+ 4
- 2
Marlin/example_configurations/Hephestos/Configuration.h Bestand weergeven

@@ -475,10 +475,12 @@
475 475
 
476 476
 // X and Y axis travel speed (mm/m) between probes
477 477
 #define XY_PROBE_SPEED 8000
478
-// Speed for the first approach when probing
478
+// Speed for the first approach when double-probing (with PROBE_DOUBLE_TOUCH)
479 479
 #define Z_PROBE_SPEED_FAST HOMING_FEEDRATE_Z
480
-// Speed for the second approach when probing
480
+// Speed for the "accurate" probe of each point
481 481
 #define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
482
+// Use double touch for probing
483
+//#define PROBE_DOUBLE_TOUCH
482 484
 
483 485
 //
484 486
 // Allen Key Probe is defined in the Delta example configurations.

+ 4
- 2
Marlin/example_configurations/Hephestos_2/Configuration.h Bestand weergeven

@@ -476,10 +476,12 @@
476 476
 
477 477
 // X and Y axis travel speed (mm/m) between probes
478 478
 #define XY_PROBE_SPEED 8000
479
-// Speed for the first approach when probing
479
+// Speed for the first approach when double-probing (with PROBE_DOUBLE_TOUCH)
480 480
 #define Z_PROBE_SPEED_FAST HOMING_FEEDRATE_Z
481
-// Speed for the second approach when probing
481
+// Speed for the "accurate" probe of each point
482 482
 #define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
483
+// Use double touch for probing
484
+//#define PROBE_DOUBLE_TOUCH
483 485
 
484 486
 //
485 487
 // Allen Key Probe is defined in the Delta example configurations.

+ 4
- 2
Marlin/example_configurations/K8200/Configuration.h Bestand weergeven

@@ -500,10 +500,12 @@
500 500
 
501 501
 // X and Y axis travel speed (mm/m) between probes
502 502
 #define XY_PROBE_SPEED 8000
503
-// Speed for the first approach when probing
503
+// Speed for the first approach when double-probing (with PROBE_DOUBLE_TOUCH)
504 504
 #define Z_PROBE_SPEED_FAST HOMING_FEEDRATE_Z
505
-// Speed for the second approach when probing
505
+// Speed for the "accurate" probe of each point
506 506
 #define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
507
+// Use double touch for probing
508
+//#define PROBE_DOUBLE_TOUCH
507 509
 
508 510
 //
509 511
 // Allen Key Probe is defined in the Delta example configurations.

+ 4
- 2
Marlin/example_configurations/K8400/Configuration.h Bestand weergeven

@@ -483,10 +483,12 @@
483 483
 
484 484
 // X and Y axis travel speed (mm/m) between probes
485 485
 #define XY_PROBE_SPEED 8000
486
-// Speed for the first approach when probing
486
+// Speed for the first approach when double-probing (with PROBE_DOUBLE_TOUCH)
487 487
 #define Z_PROBE_SPEED_FAST HOMING_FEEDRATE_Z
488
-// Speed for the second approach when probing
488
+// Speed for the "accurate" probe of each point
489 489
 #define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
490
+// Use double touch for probing
491
+//#define PROBE_DOUBLE_TOUCH
490 492
 
491 493
 //
492 494
 // Allen Key Probe is defined in the Delta example configurations.

+ 4
- 2
Marlin/example_configurations/K8400/Dual-head/Configuration.h Bestand weergeven

@@ -483,10 +483,12 @@
483 483
 
484 484
 // X and Y axis travel speed (mm/m) between probes
485 485
 #define XY_PROBE_SPEED 8000
486
-// Speed for the first approach when probing
486
+// Speed for the first approach when double-probing (with PROBE_DOUBLE_TOUCH)
487 487
 #define Z_PROBE_SPEED_FAST HOMING_FEEDRATE_Z
488
-// Speed for the second approach when probing
488
+// Speed for the "accurate" probe of each point
489 489
 #define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
490
+// Use double touch for probing
491
+//#define PROBE_DOUBLE_TOUCH
490 492
 
491 493
 //
492 494
 // Allen Key Probe is defined in the Delta example configurations.

+ 4
- 2
Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h Bestand weergeven

@@ -483,10 +483,12 @@
483 483
 
484 484
 // X and Y axis travel speed (mm/m) between probes
485 485
 #define XY_PROBE_SPEED 8000
486
-// Speed for the first approach when probing
486
+// Speed for the first approach when double-probing (with PROBE_DOUBLE_TOUCH)
487 487
 #define Z_PROBE_SPEED_FAST HOMING_FEEDRATE_Z
488
-// Speed for the second approach when probing
488
+// Speed for the "accurate" probe of each point
489 489
 #define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
490
+// Use double touch for probing
491
+//#define PROBE_DOUBLE_TOUCH
490 492
 
491 493
 //
492 494
 // Allen Key Probe is defined in the Delta example configurations.

+ 4
- 2
Marlin/example_configurations/RigidBot/Configuration.h Bestand weergeven

@@ -480,10 +480,12 @@
480 480
 
481 481
 // X and Y axis travel speed (mm/m) between probes
482 482
 #define XY_PROBE_SPEED 8000
483
-// Speed for the first approach when probing
483
+// Speed for the first approach when double-probing (with PROBE_DOUBLE_TOUCH)
484 484
 #define Z_PROBE_SPEED_FAST HOMING_FEEDRATE_Z
485
-// Speed for the second approach when probing
485
+// Speed for the "accurate" probe of each point
486 486
 #define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
487
+// Use double touch for probing
488
+//#define PROBE_DOUBLE_TOUCH
487 489
 
488 490
 //
489 491
 // Allen Key Probe is defined in the Delta example configurations.

+ 4
- 2
Marlin/example_configurations/SCARA/Configuration.h Bestand weergeven

@@ -491,10 +491,12 @@
491 491
 
492 492
 // X and Y axis travel speed (mm/m) between probes
493 493
 #define XY_PROBE_SPEED 8000
494
-// Speed for the first approach when probing
494
+// Speed for the first approach when double-probing (with PROBE_DOUBLE_TOUCH)
495 495
 #define Z_PROBE_SPEED_FAST HOMING_FEEDRATE_Z
496
-// Speed for the second approach when probing
496
+// Speed for the "accurate" probe of each point
497 497
 #define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
498
+// Use double touch for probing
499
+//#define PROBE_DOUBLE_TOUCH
498 500
 
499 501
 //
500 502
 // Allen Key Probe is defined in the Delta example configurations.

+ 4
- 2
Marlin/example_configurations/TAZ4/Configuration.h Bestand weergeven

@@ -504,10 +504,12 @@
504 504
 
505 505
 // X and Y axis travel speed (mm/m) between probes
506 506
 #define XY_PROBE_SPEED 8000
507
-// Speed for the first approach when probing
507
+// Speed for the first approach when double-probing (with PROBE_DOUBLE_TOUCH)
508 508
 #define Z_PROBE_SPEED_FAST HOMING_FEEDRATE_Z
509
-// Speed for the second approach when probing
509
+// Speed for the "accurate" probe of each point
510 510
 #define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
511
+// Use double touch for probing
512
+//#define PROBE_DOUBLE_TOUCH
511 513
 
512 514
 //
513 515
 // Allen Key Probe is defined in the Delta example configurations.

+ 4
- 2
Marlin/example_configurations/WITBOX/Configuration.h Bestand weergeven

@@ -474,10 +474,12 @@
474 474
 
475 475
 // X and Y axis travel speed (mm/m) between probes
476 476
 #define XY_PROBE_SPEED 8000
477
-// Speed for the first approach when probing
477
+// Speed for the first approach when double-probing (with PROBE_DOUBLE_TOUCH)
478 478
 #define Z_PROBE_SPEED_FAST HOMING_FEEDRATE_Z
479
-// Speed for the second approach when probing
479
+// Speed for the "accurate" probe of each point
480 480
 #define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
481
+// Use double touch for probing
482
+//#define PROBE_DOUBLE_TOUCH
481 483
 
482 484
 //
483 485
 // Allen Key Probe is defined in the Delta example configurations.

+ 4
- 2
Marlin/example_configurations/adafruit/ST7565/Configuration.h Bestand weergeven

@@ -483,10 +483,12 @@
483 483
 
484 484
 // X and Y axis travel speed (mm/m) between probes
485 485
 #define XY_PROBE_SPEED 8000
486
-// Speed for the first approach when probing
486
+// Speed for the first approach when double-probing (with PROBE_DOUBLE_TOUCH)
487 487
 #define Z_PROBE_SPEED_FAST HOMING_FEEDRATE_Z
488
-// Speed for the second approach when probing
488
+// Speed for the "accurate" probe of each point
489 489
 #define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
490
+// Use double touch for probing
491
+//#define PROBE_DOUBLE_TOUCH
490 492
 
491 493
 //
492 494
 // Allen Key Probe is defined in the Delta example configurations.

+ 4
- 2
Marlin/example_configurations/delta/biv2.5/Configuration.h Bestand weergeven

@@ -525,10 +525,12 @@
525 525
 
526 526
 // X and Y axis travel speed (mm/m) between probes
527 527
 #define XY_PROBE_SPEED 4000
528
-// Speed for the first approach when probing
528
+// Speed for the first approach when double-probing (with PROBE_DOUBLE_TOUCH)
529 529
 #define Z_PROBE_SPEED_FAST HOMING_FEEDRATE_Z
530
-// Speed for the second approach when probing
530
+// Speed for the "accurate" probe of each point
531 531
 #define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
532
+// Use double touch for probing
533
+//#define PROBE_DOUBLE_TOUCH
532 534
 
533 535
 // Allen key retractable z-probe as seen on many Kossel delta printers - http://reprap.org/wiki/Kossel#Automatic_bed_leveling_probe
534 536
 // Deploys by touching z-axis belt. Retracts by pushing the probe down. Uses Z_MIN_PIN.

+ 4
- 2
Marlin/example_configurations/delta/generic/Configuration.h Bestand weergeven

@@ -525,10 +525,12 @@
525 525
 
526 526
 // X and Y axis travel speed (mm/m) between probes
527 527
 #define XY_PROBE_SPEED 4000
528
-// Speed for the first approach when probing
528
+// Speed for the first approach when double-probing (with PROBE_DOUBLE_TOUCH)
529 529
 #define Z_PROBE_SPEED_FAST HOMING_FEEDRATE_Z
530
-// Speed for the second approach when probing
530
+// Speed for the "accurate" probe of each point
531 531
 #define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
532
+// Use double touch for probing
533
+//#define PROBE_DOUBLE_TOUCH
532 534
 
533 535
 // Allen key retractable z-probe as seen on many Kossel delta printers - http://reprap.org/wiki/Kossel#Automatic_bed_leveling_probe
534 536
 // Deploys by touching z-axis belt. Retracts by pushing the probe down. Uses Z_MIN_PIN.

+ 4
- 2
Marlin/example_configurations/delta/kossel_mini/Configuration.h Bestand weergeven

@@ -525,10 +525,12 @@
525 525
 
526 526
 // X and Y axis travel speed (mm/m) between probes
527 527
 #define XY_PROBE_SPEED 4000
528
-// Speed for the first approach when probing
528
+// Speed for the first approach when double-probing (with PROBE_DOUBLE_TOUCH)
529 529
 #define Z_PROBE_SPEED_FAST HOMING_FEEDRATE_Z
530
-// Speed for the second approach when probing
530
+// Speed for the "accurate" probe of each point
531 531
 #define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
532
+// Use double touch for probing
533
+//#define PROBE_DOUBLE_TOUCH
532 534
 
533 535
 // Allen key retractable z-probe as seen on many Kossel delta printers - http://reprap.org/wiki/Kossel#Automatic_bed_leveling_probe
534 536
 // Deploys by touching z-axis belt. Retracts by pushing the probe down. Uses Z_MIN_PIN.

+ 4
- 2
Marlin/example_configurations/delta/kossel_pro/Configuration.h Bestand weergeven

@@ -516,10 +516,12 @@
516 516
 
517 517
 // X and Y axis travel speed (mm/m) between probes
518 518
 #define XY_PROBE_SPEED 8000
519
-// Speed for the first approach when probing
519
+// Speed for the first approach when double-probing (with PROBE_DOUBLE_TOUCH)
520 520
 #define Z_PROBE_SPEED_FAST HOMING_FEEDRATE_Z
521
-// Speed for the second approach when probing
521
+// Speed for the "accurate" probe of each point
522 522
 #define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
523
+// Use double touch for probing
524
+//#define PROBE_DOUBLE_TOUCH
523 525
 
524 526
 // Allen key retractable z-probe as seen on many Kossel delta printers - http://reprap.org/wiki/Kossel#Automatic_bed_leveling_probe
525 527
 // Deploys by touching z-axis belt. Retracts by pushing the probe down. Uses Z_MIN_PIN.

+ 4
- 2
Marlin/example_configurations/delta/kossel_xl/Configuration.h Bestand weergeven

@@ -523,10 +523,12 @@
523 523
 
524 524
 // X and Y axis travel speed (mm/m) between probes
525 525
 #define XY_PROBE_SPEED 8000
526
-// Speed for the first approach when probing
526
+// Speed for the first approach when double-probing (with PROBE_DOUBLE_TOUCH)
527 527
 #define Z_PROBE_SPEED_FAST HOMING_FEEDRATE_Z
528
-// Speed for the second approach when probing
528
+// Speed for the "accurate" probe of each point
529 529
 #define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
530
+// Use double touch for probing
531
+//#define PROBE_DOUBLE_TOUCH
530 532
 
531 533
 // Allen key retractable z-probe as seen on many Kossel delta printers - http://reprap.org/wiki/Kossel#Automatic_bed_leveling_probe
532 534
 // Deploys by touching z-axis belt. Retracts by pushing the probe down. Uses Z_MIN_PIN.

+ 4
- 2
Marlin/example_configurations/makibox/Configuration.h Bestand weergeven

@@ -486,10 +486,12 @@
486 486
 
487 487
 // X and Y axis travel speed (mm/m) between probes
488 488
 #define XY_PROBE_SPEED 8000
489
-// Speed for the first approach when probing
489
+// Speed for the first approach when double-probing (with PROBE_DOUBLE_TOUCH)
490 490
 #define Z_PROBE_SPEED_FAST HOMING_FEEDRATE_Z
491
-// Speed for the second approach when probing
491
+// Speed for the "accurate" probe of each point
492 492
 #define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
493
+// Use double touch for probing
494
+//#define PROBE_DOUBLE_TOUCH
493 495
 
494 496
 //
495 497
 // Allen Key Probe is defined in the Delta example configurations.

+ 4
- 2
Marlin/example_configurations/tvrrug/Round2/Configuration.h Bestand weergeven

@@ -472,10 +472,12 @@
472 472
 
473 473
 // X and Y axis travel speed (mm/m) between probes
474 474
 #define XY_PROBE_SPEED 8000
475
-// Speed for the first approach when probing
475
+// Speed for the first approach when double-probing (with PROBE_DOUBLE_TOUCH)
476 476
 #define Z_PROBE_SPEED_FAST HOMING_FEEDRATE_Z
477
-// Speed for the second approach when probing
477
+// Speed for the "accurate" probe of each point
478 478
 #define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
479
+// Use double touch for probing
480
+//#define PROBE_DOUBLE_TOUCH
479 481
 
480 482
 //
481 483
 // Allen Key Probe is defined in the Delta example configurations.

Laden…
Annuleren
Opslaan