blob: 7aacda6059520f339ad7f224f6daec4a42d331be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#strict 2
#appendto BRDG
func RemoteControlMap()
{
return [
[RC7I_Control_T, "LockSafe", "$BRDG_Lock$"],
[RC7I_Control_U, "ReleaseSafe", "$BRDG_Release$"],
[RC7I_Control_Q, "ControlDigDouble", "$BRDG_Toggle$"]
];
}
func LockSafe() { return !IsLocked() && Lock(); }
func ReleaseSafe() { return IsLocked() && Release(); }
|