Wiki source code of Поиск базы
Last modified by writer on 2023/09/08 18:34
Hide last authors
author | version | line-number | content |
---|---|---|---|
![]() |
14.1 | 1 | ===== void DoHoming() ===== |
![]() |
1.1 | 2 | |
![]() |
14.1 | 3 | Performing homing simultaneously for all axes. The function returns control after the homing of all axes is completed. |
![]() |
1.1 | 4 | |
![]() |
14.1 | 5 | ===== void DoAxisHoming(number axisId) ===== |
![]() |
1.1 | 6 | |
![]() |
14.1 | 7 | Perform homing for the specified axis. |
![]() |
1.1 | 8 | |
![]() |
14.1 | 9 | Options: |
![]() |
1.1 | 10 | |
![]() |
14.1 | 11 | * number axisId – axis number, an integer from 0 to 8 (one of the constants defined in the **[[Axes>>doc:Руководство пользователя.Описание M-кодов.Описание функций макроязыка.Управление осями.WebHome]] **list can be passed as this parameter). |
![]() |
1.1 | 12 | |
![]() |
14.1 | 13 | ===== void DoAxesMaskHoming(number axesMask) ===== |
![]() |
1.1 | 14 | |
![]() |
14.1 | 15 | Performs a base search simultaneously for the axes defined by the axesMask mask. |
![]() |
1.1 | 16 | |
![]() |
14.1 | 17 | Options: |
![]() |
1.1 | 18 | |
![]() |
14.1 | 19 | * number axesMask – axis mask, an integer in which bits from 0 to 8 indicate whether the corresponding axes are selected. |
![]() |
1.1 | 20 | |
![]() |
14.1 | 21 | ===== bool IsAxisReferenced(number axisId) ===== |
![]() |
1.1 | 22 | |
![]() |
14.1 | 23 | Allows you to check whether the home is searched on the specified axis. |
![]() |
1.1 | 24 | |
![]() |
14.1 | 25 | Options: |
![]() |
1.1 | 26 | |
![]() |
14.1 | 27 | * number axisId – axis number, an integer from 0 to 8 (one of the constants defined in the **[[Axes>>doc:Руководство пользователя.Описание M-кодов.Описание функций макроязыка.Управление осями.WebHome]] **list can be passed as this parameter). |
![]() |
1.1 | 28 | |
![]() |
14.1 | 29 | Return value: |
![]() |
1.1 | 30 | |
![]() |
14.1 | 31 | * true – if homing is performed; |
32 | * false – if homing is not performed. | ||
![]() |
1.1 | 33 | |
![]() |
14.1 | 34 | ===== bool IsAxesMaskReferenced(number axesMask) ===== |
![]() |
1.1 | 35 | |
![]() |
14.1 | 36 | Allows you to check whether the homing has been performed for all axes defined by the axesMask mask. |
![]() |
1.1 | 37 | |
![]() |
14.1 | 38 | Options: |
![]() |
1.1 | 39 | |
![]() |
14.1 | 40 | * number axesMask – axis mask, an integer in which bits from 0 to 8 indicate whether the corresponding axes are selected. |
![]() |
1.1 | 41 | |
![]() |
14.1 | 42 | Return value: |
![]() |
1.1 | 43 | |
![]() |
14.1 | 44 | * true – if homing is completed; |
45 | * false – if homing is not performed. | ||
![]() |
4.1 | 46 | |
![]() |
14.1 | 47 | ===== void RefAllForced() ===== |
![]() |
4.1 | 48 | |
![]() |
14.1 | 49 | Allows you to forcefully mark all axes as homing done. |
![]() |
4.1 | 50 | |
![]() |
14.1 | 51 | ===== void RefAxisForced(number axisId) ===== |
![]() |
4.1 | 52 | |
![]() |
14.1 | 53 | Allows you to forcefully mark specified axis as homing done. |
![]() |
4.1 | 54 | |
![]() |
14.1 | 55 | Options: |
![]() |
4.1 | 56 | |
![]() |
14.1 | 57 | * number axisId – axis number, an integer from 0 to 8 (one of the constants defined in the **[[Axes>>doc:Руководство пользователя.Описание M-кодов.Описание функций макроязыка.Управление осями.WebHome]] **list can be passed as this parameter). |
![]() |
4.1 | 58 | |
![]() |
14.1 | 59 | ===== void RefAxesMaskForced(number axesMask) ===== |
![]() |
4.1 | 60 | |
![]() |
14.1 | 61 | Allows you to forcefully mark axes specified by the axesMask as homing done. |
![]() |
4.1 | 62 | |
![]() |
14.1 | 63 | Options: |
![]() |
4.1 | 64 | |
![]() |
14.1 | 65 | * number axesMask – axis mask, an integer in which bits from 0 to 8 indicate whether the corresponding axes are selected. |
![]() |
11.1 | 66 | |
![]() |
14.1 | 67 | ===== number GetHomeType() ===== |
![]() |
11.1 | 68 | |
![]() |
14.1 | 69 | Allows you to check selected homing type from settings. |
![]() |
11.1 | 70 | |
![]() |
14.1 | 71 | Return value: |
![]() |
11.1 | 72 | |
![]() |
14.1 | 73 | * integer number denoting the selected homing type (0 - Z axis homing, then simultaneous homing of other axes; 1 - sequential homing staring from the Z axis; 2 - simultaneous homing of all axes). |