Why Won't this Work?
TurnipTruck
Posts: 1,485
DEFINE_VARIABLE VOLATILE INTEGER nKPDevAssign[16][3][8] DEFINE_START nKPDevAssign[1][1]={1,3,2,0,13,0,0,0}
I'm drawing a blank. Thanks.
0
Comments
I think it may be safe to say, if you can't do it in a BUTTON_EVENT, you can't do it in DEFINE_START.
Actually, that didn't compile for me.
But this did.. And now my head hurts...
Oops, that's what I meant. Thanks!
At least you caught my drift!
You can not assign integer values this way. But this will work.
DEFINE_VARIABLE
CHAR nKPDevAssign[16][3][8]
DEFINE_START
nKPDevAssign[1][1]={1,3,2,0,13,0,0,0}
Keep in mind this only allows for values from 0 to 255.
JB