On the Subject of Rust.G.B.
1-2-4-1, no, 3-1-2-2...I’m lost
Using the diagram & methods on Page 2 & 3, find and set the 4 center lights to the correct pattern, then press the long button on the bottom to disarm the module.
- Turn the serial number into 6 numbers, converting letters into numbers starting at 1 (A -> 1)
- Modulo all 6 numbers by 2 until you have a 6-digit code of 1s and 0s
- EXAMPLE: A2G85J -> 101010
- Next, split the code into 2 smaller codes. The MAIN code uses the odd positions, the SECONDARY uses the even
- EXAMPLE: 101010 -> M: 111 S: 000
- Each code forms an RGB value, adding #Red, #Green, and #Blue respectively. Convert the color found in the module’s cage into this same sequence.
- Modify the MAIN and SECONDARY codes by adding the #Red, #Green, and #Blue values from the caged value, converting 2s to 0s (XOR both codes with the caged code).
- EXAMPLE: if caged = #011 and MAIN = #110 -> Main = #101
- Finally, locate the pattern (A 2×2 grid of letters) in the Venn Diagram using your modified main color. If the color’s condition is false, use the pattern from your modified second color, regardless of the condition.