Skip to content
Snippets Groups Projects
Select Git revision
  • 83ab7e4f39e1a84b0101e1f7c3c49ea2810c3d9f
  • main default protected
  • dev protected
  • Issue/3133-subProjectsChanges
  • Issue/2489-addNotificationManagement
  • Issue/3085-useNewApiClient
  • Issue/3043-DataStorageNrwResource
  • Issue/3011-maintenanceMode
  • Issue/2446-addingResponsibleOrganization
  • Issue/2900-removeInsituteField
  • Issue/2981-dataPubInDb
  • Issue/2881-messageController
  • Issue/2921-changesToDataPublicationFeature
  • Issue/2926-regAppLogin
  • Issue/2672-fixSfbPidPointing
  • Issue/2875-devcontainer
  • Issue/2401-advisoryServiceUI2
  • Issue/2445-extractedMetadata
  • Issue/2829-useHrefProperty
  • Issue/xxxx-configurableApiHostname
  • Issue/2627-addPidRecord
  • v3.18.0
  • v3.17.0
  • v3.16.0
  • v3.15.0
  • v3.14.0
  • v3.13.0
  • v3.12.0
  • v3.11.0
  • v3.10.0
  • v3.9.0
  • v3.8.0
  • v3.7.0
  • v3.6.0
  • v3.5.0
  • v3.4.3
  • v3.4.2
  • v3.4.1
  • v3.4.0
  • v3.3.2-package.0
  • v3.3.1
41 results

configuration.ts

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    accepts_shield_commands.py 994 B
    from ml.ml40.features.functionalities.functionality import Functionality
    
    
    class AcceptsShieldCommands(Functionality):
        """This functionality signalizes that the thing's shield can be moved remotely
        via S3I-B messages ."""
    
        def __init__(self, namespace="fml40", name="", identifier="", parent=None):
            """Initializes the object.
    
            :param name:  Object name
            :param identifier: Identifier
    
            """
            super().__init__(
                namespace=namespace, name=name, identifier=identifier, parent=parent
            )
    
        def shieldDown(self, speed):
            """roll down the winch with specified speed
    
            :param speed: speed
            :type speed: float
            """
            print("shield moves down with the speed {}".format(speed))
    
        def shieldUp(self, speed):
            """
            roll up the winch with specified speed
    
            :param speed: speed
            :type speed: float
            """
            print("shield moves up with the speed {}".format(speed))