setup: ;increase frequency to that of receiver SETFREQ M16 ;blink the LED to alert that the program is beginning HIGH C.2 PAUSE 500 LOW C.2 PAUSE 500 GOTO main main: ;transmit 0101010101... to wake up receiver HIGH C.1 SEROUT C.1, N600_4, ("UUUUUUUUUUUUU") PAUSE 5 ;transmit data HIGH C.2 SEROUT C.1, N600_4, ($AA, $BB, $CC, 49) PAUSE 50 LOW C.1, C.2 ;wait a moment, then continue PAUSE 2500 GOTO main