In Python when i do something like PacketId = 0x0E and then type 0x0E (in the Python Shell (Interpreter)) the integer, 14 comes up. Is this correct? Or like visual basic does Python need to do something like &HE. I know that Pascal does 0x0E, I was pretty sure Python did that too. Can someone just clarify this for me.
Yes: 0x0E = 14
Yup. 0x0e is what you want.