All Downloads are FREE. Search and download functionalities are using the official Maven repository.

data.nodescript.application.ReadyServoTurn.ReadyServoTurn-ServoTurnout_with_frog.nodescript Maven / Gradle / Ivy

## Dieses Script erstellt Accessory, Macro und ServoPort mit mehr als 2 Positionen.
##  
## history: 2022-02-20 A.Kuhtz, erste Version
##
##
## -------------- 1. Select Target
##application(text:de="Weichenantrieb mit Servo mit mehr als 2 Positionen", text:en="Turnout (servo) for more than 2 positions", text:nl="Wisselaandrijving met Servo met meer dan twee posities")
##instruction(text:de="Konfiguration von Servo für Weichensteuerung mit mehr als 2 Positionen", text:en="Configuration of servo for turnouts with more than 2 positions")
##
##input($AccessoryName:string, text:de="Name des Accessory: ", text:en="Name of the Accessory: ", default="Weiche")
##input($AccessoryNumber:accessory, text:de="Nummer des verwendeten Accessory", text:en="Number of the used Accessory", default=0)
##input($MacroNumber:macro, text:de="Nummer des ersten Macros (Benötigt = Anzahl Positionen)", text:en="Number of the first macro (total = number of positions)", default=0)
##input($ServoCount:int, text:de="Anzahl der Servos", text:en="Number of the servos", default=1)
##input($ServoPortNumber:servo, text:de="Nummer des ServoPort", text:en="Number of the servo port", default=0)
##input($ServoPositionCount:int, text:de="Anzahl der ServoPositionen", text:en="Number of servo positions", default=2)
##input($ServoName:string, text:de="Name des Servo: ", text:en="Name of the servo: ", default="Multipos-Servo")
##input($SwitchPortNumber:switch, text:de="Nummer des Schaltausgang", text:en="Number of the switch port", default=0)
##input($SwitchName:string, text:de="Name des Schaltausgang: ", text:en="Name of the switch port: ", default="Polarisation")

#set ($accessoryOffset = 0)
#set ($macroOffset = $MacroNumber)
#set ($maxServo = $ServoCount - 1)
#set ($currentServo = ${ServoPortNumber})
#set ($currentSwitch = ${SwitchPortNumber})

## calculate the number of macros that are required
#set($macroCount  = $ServoPositionCount - 1)

#foreach ($currentServoIndex in [0..$maxServo])


### -------------- 3. execute part of the script

#set($currentAccessory = $AccessoryNumber + $accessoryOffset)

### Set label of Accessories
set accessory ${currentAccessory} name="${AccessoryName}_${accessoryOffset}"

### Set label of ServoPort
set servo $currentServo name="${ServoName}_${currentServoIndex}"

### Set label of SwitchPort
set switch $currentSwitch name="${SwitchName}_${currentServoIndex}"

########################################
#set($firstMacroNumber = $macroOffset)

#foreach ($currentMacroIndex in [0..$macroCount])

#set($currentMacroNum = $currentMacroIndex + $firstMacroNumber)

## calculate the target position
#set($targetPosition = $currentMacroIndex *10)
#if ($currentMacroIndex == $macroCount)
#set($targetPosition = 100)
#end

### Set label of Macro
set macro ${currentMacroNum} name="${AccessoryName}_${accessoryOffset}_Pos_${currentMacroIndex}"

################################################
### configure macro
###
select macro ${currentMacroNum}
config macro repeat=1 slowdown=1

### stop all macro
#foreach ($macroNum in [0..$macroCount])

#set($stopMacroNum = $macroNum + $firstMacroNumber)
#if ($stopMacroNum != $currentMacroNum)
add step ptype=macro action=stop number=${stopMacroNum}
#end ## #if
#end ## #foreach

#if ($targetPosition == 0)
#set($halfTargetPosition = 50)
#set($switchAction = "off")
#else 
#set($halfTargetPosition = $targetPosition / 2)
#set($switchAction = "on")
#end
add step ptype=servo action=start target=$halfTargetPosition number=$currentServo
add step ptype=moveServoQuery number=$currentServo

add step ptype=switch action=$switchAction number=${currentSwitch}

add step ptype=servo action=start target=$targetPosition number=$currentServo
add step ptype=moveServoQuery number=$currentServo

#end

### Define Accessory
select accessory ${currentAccessory}
config accessory startup restore
#foreach ($currentMacroIndex in [0..$macroCount])

#set($currentMacroNum = $currentMacroIndex + $firstMacroNumber)

add aspect $currentMacroIndex macronumber=$currentMacroNum
#end

#set ($accessoryOffset = $accessoryOffset + 1)
#set ($macroOffset = $macroOffset + $ServoPositionCount)
#set ($currentServo = $currentServo + 1)
#set ($currentSwitch = $currentSwitch + 1)
#end




© 2015 - 2024 Weber Informatics LLC | Privacy Policy