Serial Communication

Hello, I know how to use the serial communication of the Arduino. I have this 12 Byte Hexadecimal number I want to send through the serial of the Arduino and I don't how to do so. The number is AA0Dh, 00h, 00h, 00h, 00h. Any suggestions on how to do so?

Thank You

Reading some documentation would be a good start, meanwhile here's a hint

Serial.write (0xAA);


Rob

Thank you Rob for replying back, I know how to use the serial of the Arduino but I had some problems with sending HEX numbers through the Arduino. Thank you again for your reply it helped alot

Serial.write(0x00); barfs up an error use

Serial.write(byte(0x00));