What do Ben and Chris say.
byte test[4]={0xb4,0xaf,0x98,0x1a};
If you want to do this at run time, you can use memcpy to do the job.
byte startState[4]={0xb4,0xaf,0x98,0x1a}; byte test[4]; memcpy(test, startState, sizeof(test));
Evilteach
source share