! ! Bob Morrison HCS_C Xpress Control Program ! Doing a voice recording. Use caution--locations 0-64 holds the powerup ! message, if you set voice in this range, you will wipe it out! config end begin ! Tell user console program has begun if reset then console = "Will record in 6 seconds..." timer(0) = on end ! Tell user console program has begun if change_value(timer(0)) = 6 then console = "Recording for 8 seconds..." voice(0) = unlock voice(80) = record timer(0) = off timer(1) = on end if change_value(timer(1)) = 8 then console = "Done Recording, about to play..." voice(0) = lock voice(80) = off timer(1) = off timer(2) = on end if change_value(timer(2)) = 4 then console = "Now playing..." voice(80) = on timer(2) = off end