Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
a switch should be used for this not a button a button only does something when it is pressed one time for one tick. so you would need a circuit.
a button can not be "on" anyway.
A device can only listen to one signal at a time, so anything that outputs a constant signal will override something that outputs intermittent signals. It will even block out other constant signals that try to come later.
Important to distinguish between Toggle_State and Set_State too, because they mean different things. Toggle takes whatever the current state of the object is, and inverts it no matter what signal is received; so to work with Toggle_State you usually need something that outputs 1/Null. Where Set_state takes whatever value you give it and forces it on the device, so you'll usually want to use 1/0 instead. Null means No Signal, and you set that by leaving a field blank.
On default settings, buttons only output a 1 signal while they're pressed, then revert to Null as soon as they're unpressed.
Switches and Levers output constant signals. So whatever they're outputting will override the button the moment it's unpressed. You'll need to set the Switch/Lever to output 0/Null, so when its in the 0 State it keeps the door shut, and when it's in it's Null state it allows other signals to control the door.
Thats why the default automatic button doors come with an AND-NOT-Delay above them. So they hold the door open for a few seconds after a button press, then revert the door to a 0 state. So if that circuit is active, your switch won't work since it will be the 2nd signal to arrive.