secret is to send alternating 1s and 0s as stream (170) with code (133) in the middle:
beginSerial(BAUD);
while(1){
x++;
serialWrite(170);
if (x>=55) {
PORTC|= (1<<PC5);
serialWrite(133);
x=0;
}