Commit e12c7ff 1 parent 15daaec commit e12c7ff Copy full SHA for e12c7ff
File tree 1 file changed +10
-10
lines changed
src/DuetAPI/ObjectModel/Sensors
1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -15,16 +15,6 @@ public bool Active
15
15
}
16
16
private bool _active ;
17
17
18
- /// <summary>
19
- /// Sensitivity of the touch probe
20
- /// </summary>
21
- public float Sensitivity
22
- {
23
- get => _sensitivity ;
24
- set => SetPropertyValue ( ref _sensitivity , value ) ;
25
- }
26
- private float _sensitivity ;
27
-
28
18
/// <summary>
29
19
/// Speed while probing in touch mode (in mm/s)
30
20
/// </summary>
@@ -35,6 +25,16 @@ public float Speed
35
25
}
36
26
private float _speed ;
37
27
28
+ /// <summary>
29
+ /// Threshold value of the touch probe
30
+ /// </summary>
31
+ public float Threshold
32
+ {
33
+ get => _threshold ;
34
+ set => SetPropertyValue ( ref _threshold , value ) ;
35
+ }
36
+ private float _threshold ;
37
+
38
38
/// <summary>
39
39
/// Height of the trigger point of the touch probe (in mm)
40
40
/// </summary>
You can’t perform that action at this time.
0 commit comments