I am wondering does the Arduino's language have something like with DATA and READ Structure?
For Example from the QBASIC:
for i=1 to 10
read x
print x
next i
end
data 20,10,40,70,11,99,43,12,90
To RUN:
20
10
40
70
11
99
43
12
90
what i am trying is:
DATA 0xc90, 0xc90, 0x710, 0x070, 0xa70
for (int i = 0; i < 5; i++)
{
read X;
irsend.sendSony(X, 12);
}
Thanks!