My house is a townhouse, and it has three floors.
There is a hall on each floor with a light in it.
Each hall also has a three-switch array that controls all the hall lights: { BOTTOM, MIDDLE, TOP}
At the moment, all the lights are OFF.
The current position of the switches is this:
- TOP FLOOR: { 1 , 1 , 1 }
- MID FLOOR: { 1 , 0 , 0 }
- BOT FLOOR: { 0 , 1 , 1 }
Still with me?
OK, what I want is for all the switches to be set such that 0 = off and 1 = on.
I think it is possible. Just hit all the upper floor switches to 0, then they'll all be on with this layout:
ReplyDelete0 0 0
1 0 0
0 1 1
Then hit the remaining switches on 1. All lights will then be off and all switches on 0.