@@ -445,23 +445,23 @@ def controller_configuration(self):
445445 """Get / set configuration of some of the controller’s features.
446446
447447 Configuration is given as a bit mask. If changed, please save
448- the settings afterwards if you would like to do so. See
448+ the settings afterward if you would like to do so. See
449449 `save_settings`.
450450
451451 The bitmask to be set can be either given as a number, or as a
452452 string of the mask itself. The following values are equivalent:
453453 3, 0b11, "11"
454454
455- Bit 0:
456- Value 0: Perform auto motor detection. Check and set motor
457- type automatically when commanded to move.
458- Value 1: Do not perform auto motor detection on move.
459- Bit 1:
460- Value 0: Do not scan for motors connected to controllers upon
461- reboot (Performs ‘MC’ command upon power-up, reset or
462- reboot).
463- Value 1: Scan for motors connected to controller upon power-up
464- or reset.
455+ - Bit 0:
456+ - Value 0: Perform auto motor detection. Check and set motor
457+ type automatically when commanded to move.
458+ - Value 1: Do not perform auto motor detection on move.
459+ - Bit 1:
460+ - Value 0: Do not scan for motors connected to controllers upon
461+ reboot (Performs ‘MC’ command upon power-up, reset or
462+ reboot).
463+ - Value 1: Scan for motors connected to controller upon power-up
464+ or reset.
465465
466466 :return: Bitmask of the controller configuration.
467467 :rtype: str, binary configuration
@@ -547,12 +547,12 @@ def recall_parameters(self, value=0):
547547 saved in its non-volatile memory. It is useful when, for example,
548548 the user has been exploring and changing parameters (e.g., velocity)
549549 but then chooses to reload from previously stored, qualified
550- settings. Note that “ *RCL 0” command just restores the working
550+ settings. Note that ` *RCL 0` command just restores the working
551551 parameters to factory default settings. It does not change the
552552 settings saved in EEPROM.
553553
554554 :param value: 0 -> Recall factory default,
555- 1 -> Recall last saved settings
555+ 1 -> Recall last saved settings
556556 :type int:
557557 """
558558 self .sendcmd (f"*RCL{ 1 if value else 0 } " , axs = False )
@@ -564,7 +564,7 @@ def reset(self):
564564 hard reset, see the `purge` command.
565565
566566 ..note:: It might take up to 30 seconds to re-establish
567- communications via TCP/IP
567+ communications via TCP/IP
568568 """
569569 self .sendcmd ("*RST" , axs = False )
570570
@@ -681,19 +681,19 @@ def controller_configuration(self):
681681 """Get / set configuration of some of the controller’s features.
682682
683683 Configuration is given as a bit mask. If changed, please save
684- the settings afterwards if you would like to do so. See
684+ the settings afterward if you would like to do so. See
685685 `save_settings`.
686686
687- Bit 0:
688- Value 0: Perform auto motor detection. Check and set motor
689- type automatically when commanded to move.
690- Value 1: Do not perform auto motor detection on move.
691- Bit 1:
692- Value 0: Do not scan for motors connected to controllers upon
693- reboot (Performs ‘MC’ command upon power-up, reset or
694- reboot).
695- Value 1: Scan for motors connected to controller upon power-up
696- or reset.
687+ - Bit 0:
688+ - Value 0: Perform auto motor detection. Check and set motor
689+ type automatically when commanded to move.
690+ - Value 1: Do not perform auto motor detection on move.
691+ - Bit 1:
692+ - Value 0: Do not scan for motors connected to controllers upon
693+ reboot (Performs ‘MC’ command upon power-up, reset or
694+ reboot).
695+ - Value 1: Scan for motors connected to controller upon power-up
696+ or reset.
697697
698698 :return: Bitmask of the controller configuration.
699699 :rtype: str
@@ -944,7 +944,7 @@ def scan_controllers(self):
944944 Bit: Value: (True: 1, False: 0)
945945 0 Address conflict?
946946 1: Controller with address 1 exists?
947- ...
947+ < ...>
948948 31: Controller with address 31 exists
949949
950950 Bits 1—31 are one-to-one mapped to controller addresses 1—31. The
@@ -1026,6 +1026,7 @@ def scan(self, value=2):
10261026 Scans the RS-485 network for connected controllers and set the
10271027 addresses automatically. Three possible scan modes can be
10281028 selected:
1029+
10291030 Mode 0:
10301031 Primary controller scans the network but does not resolve
10311032 any address conflicts.
@@ -1086,7 +1087,7 @@ def recall_parameters(self, value=0):
10861087 saved in its non-volatile memory. It is useful when, for example,
10871088 the user has been exploring and changing parameters (e.g., velocity)
10881089 but then chooses to reload from previously stored, qualified
1089- settings. Note that “ *RCL 0” command just restores the working
1090+ settings. Note that ` *RCL 0` command just restores the working
10901091 parameters to factory default settings. It does not change the
10911092 settings saved in EEPROM.
10921093
0 commit comments