logic gate stuff (#16943)

Co-authored-by: deltanedas <@deltanedas:kde.org>
This commit is contained in:
deltanedas
2023-06-07 23:48:42 +00:00
committed by GitHub
parent d954957a11
commit 07d2430840
29 changed files with 547 additions and 205 deletions

View File

@@ -23,7 +23,7 @@ signal-port-name-close = Close
signal-port-description-close = Closes a device.
signal-port-name-doorbolt = Door bolt
signal-port-description-doorbolt = Toggles door bolt.
signal-port-description-doorbolt = Bolts door when HIGH.
signal-port-name-trigger = Trigger
signal-port-description-trigger = Triggers some mechanism on the device.
@@ -69,3 +69,12 @@ signal-port-description-set-particle-epsilon = Sets the type of particle this de
signal-port-name-set-particle-zeta = Set particle type: zeta
signal-port-description-set-particle-zeta = Sets the type of particle this device emits to zeta.
signal-port-name-logic-input-a = Input A
signal-port-description-logic-input-a = First input of a logic gate.
signal-port-name-logic-input-b = Input B
signal-port-description-logic-input-b = Second input of a logic gate.
signal-port-name-logic-input = Input
signal-port-description-logic-input = Input to the edge detector, cannot be a pulse signal.

View File

@@ -14,7 +14,7 @@ signal-port-name-right = Right
signal-port-description-right = This port is invoked whenever the lever is moved to the rightmost position.
signal-port-name-doorstatus = Door status
signal-port-description-doorstatus = This port is invoked whenever the door's status changes.
signal-port-description-doorstatus = This port is invoked with HIGH when the door opens and LOW when the door closes.
signal-port-name-middle = Middle
signal-port-description-middle = This port is invoked whenever the lever is moved to the neutral position.
@@ -24,3 +24,12 @@ signal-port-description-timer-trigger = This port is invoked whenever the timer
signal-port-name-timer-start = Timer Start
signal-port-description-timer-start = This port is invoked whenever the timer starts.
signal-port-name-logic-output = Output
signal-port-description-logic-output = This port is invoked with HIGH or LOW depending on the selected gate and inputs.
signal-port-name-logic-output-high = High Output
signal-port-description-logic-output-high = This port is invoked whenever the input has a rising edge.
signal-port-name-logic-output-low = Low Output
signal-port-description-logic-output-low = This port is invoked whenever the input has a falling edge.