hello, first press the "central control system thing" and insert one of the following gates: or and nor xor none you can turn the switches to on or off each one of these acts in a different way to turn on the light
code? ok ill tell tell you: when a switch is off its value is 0, when it is on the value is 1. when on (x for switch 1 and y for switch 2) none: no gates are open so it is off no matter what or: if x+y>0 on if not off and: if x+y=2 on if not off nor (Or's evil twin): if x+y=0 on if not off xor (either or): if x+y=1 on if not off. understood, hopefully.