The wiki has moved!

Visit the new wiki at stationeers-wiki.com The old wiki here at legacy.stationeers-wiki.com will sunset eventually.

Edits made after the 7th of March 6PM EST were NOT carried over to the new server as previously announced right here in this box.

 Actions

Difference between revisions of "Logic Monostable Multivibrator"

From Unofficial Stationeers Wiki

(Created page with "Category:Tutorials <languages /> <translate> = Pulse Former using Logic Gates = '''Author(s):''' illiux#5291, grilled_salmon#1537<br> '''Stationeers Version:''' 0.1.1094.5...")
 
(Pulse Former using Logic Gates)
Line 7: Line 7:
 
'''Number of Components:''' 8
 
'''Number of Components:''' 8
  
This circuit provides a way to extend an input pulse by a set amount of ticks. "Button (Trigger)" will set the math unit to a set tick value when pressed, and the "Math (A + B)" will decrement itself until it is less than zero. The "Compare (Math > 0)" is used as both the output and the control for the "Math (A + B)" to prevent it from counting down forever. NOTE: the input signal must be a pulse. Holding the signal will hold the output as well, regardless of tick setting. Adding edge-triggering between the input and the select will work if you need an edge triggered device.
+
This circuit provides a way to extend an input pulse by a set amount of ticks. "Button (Trigger)" will set the starting input of "Math (A + B)" to a value stored in "Memory (OnTicks)" when pressed, and the "Math (A + B)" will decrement itself until it is less than zero. The "Compare (Math > 0)" is used as both the output and the control for the "Math (A + B)" to prevent it from counting down forever. NOTE: the input signal must be a pulse. Holding the signal will hold the output as well, regardless of tick setting. Adding edge-triggering between the input and the select will work if you need an edge triggered device.
  
 
== Design ==
 
== Design ==

Revision as of 23:08, 5 January 2018


Pulse Former using Logic Gates

Author(s): illiux#5291, grilled_salmon#1537
Stationeers Version: 0.1.1094.5526
Number of Components: 8

This circuit provides a way to extend an input pulse by a set amount of ticks. "Button (Trigger)" will set the starting input of "Math (A + B)" to a value stored in "Memory (OnTicks)" when pressed, and the "Math (A + B)" will decrement itself until it is less than zero. The "Compare (Math > 0)" is used as both the output and the control for the "Math (A + B)" to prevent it from counting down forever. NOTE: the input signal must be a pulse. Holding the signal will hold the output as well, regardless of tick setting. Adding edge-triggering between the input and the select will work if you need an edge triggered device.

Design

MonostableMultivibrator.png

Notes

  • Can extend an input pulse by a set amount of ticks (half-seconds), stored in "Memory (OnTicks)." Receiving another pulse during the countdown phase will reset the output signal timer.