Your new topic does not fit any of the above??? Check first. Then post here. Thanks.

Moderator: igrr

User avatar
By Ahunter
#43312 Thanks for the reply.

I have tried doing this as follows:
Code: Select allchar packet[] = {"\x16\x03\x01\x00\xf0"};
client.write(packet, sizeof(packet));


But I get compilation errors: http://i.imgur.com/dryQpwp.png

It's worth noting that the following works fine (but obviously I want to avoid having to use a const):
Code: Select allconst uint8_t packet[] = "\x16\x03\x01\x00\xf0";
client.write(packet, sizeof(packet));