Hi all,
in my first post after and of some code a squared bracket in the code listing appears only in the preview:
…
for (unsigned char i=0; i<8; i++)
{
data = accRead(i);
- }*
…
. What is going wrong?
Bye
Folker
Hi all,
in my first post after and of some code a squared bracket in the code listing appears only in the preview:
…
for (unsigned char i=0; i<8; i++)
{
data = accRead(i);
Paste your code between the proper [ code ] tags. It's that # sign in the menu buttons above. Click on it, then paste your code between the tags... (or high light your code, then click the # sign)
folker:
Hi all,
in my first post after and of some code a squared bracket in the code listing appears only in the preview:
<>
What is going wrong?Bye
Folker
like this
...
for (unsigned char i=0; i<8; i++)
{
data[i] = accRead(i);
}
...
Thank You for Help!
Folker