Hi,
I know some of you experimented (as I did) setting the features of the Horvath program powering the Krypton Regency (and related clones).
If you have a preferred setting you would like to always enable using the chess engine plugin, here is a sample change you can append to the function interface.setlevel(). Insert before the last command that restores video speed.
Of course, adapt to your own setting, it's easy to re-use the basic steps here listed (after the last step exiting level setting):
Code:
emu.wait(0.5)
send_input(":IN.0", 0x08, 0.5) -- Level
--
-- Tibono setting begin
--
send_input(":IN.1", 0x20, 0.5) -- Info
emu.wait(0.5)
send_input(":IN.1", 0x20, 0.5) -- Info
emu.wait(0.5)
send_input(":IN.0", 0x04, 0.5) -- Features F1
emu.wait(0.5)
send_input(":IN.1", 0x10, 0.5) -- Left F1=9
emu.wait(0.5)
send_input(":IN.0", 0x04, 0.5) -- Features F2 unchanged
emu.wait(0.5)
send_input(":IN.0", 0x04, 0.5) -- Features F3
emu.wait(0.5)
send_input(":IN.0", 0x10, 0.5) -- Right
emu.wait(0.5)
send_input(":IN.0", 0x10, 0.5) -- Right F3=12
emu.wait(0.5)
send_input(":IN.0", 0x04, 0.5) -- Features F4
emu.wait(0.5)
send_input(":IN.1", 0x10, 0.5) -- Left
emu.wait(0.5)
send_input(":IN.1", 0x10, 0.5) -- Left F4=8
emu.wait(0.5)
send_input(":IN.0", 0x04, 0.5) -- Features F5
emu.wait(0.5)
send_input(":IN.1", 0x10, 0.5) -- Left
emu.wait(0.5)
send_input(":IN.1", 0x10, 0.5) -- Left F5=8
emu.wait(0.5)
send_input(":IN.0", 0x04, 0.5) -- Features F6
emu.wait(0.5)
send_input(":IN.0", 0x10, 0.5) -- Right F6=11
emu.wait(0.5)
send_input(":IN.0", 0x04, 0.5) -- Features F7
emu.wait(0.5)
send_input(":IN.1", 0x10, 0.5) -- Left F7=9
emu.wait(0.5)
send_input(":IN.1", 0x20, 0.5) -- Info
emu.wait(0.5)
--
-- Tibono setting end
--
machine.video.throttled = throttled
end
MfG,
Tibono