I have the following code and I am getting
the following message when I compile:
In Function 'void loop()':
error: 'If' was not declared in this scope
Here's my code:
#include <Wire.h>
#include <string.h>
#include <stdio.h>int RS = 0;
void loop ()
{
If (RS < 127) RS = 0;
}
What am I doing wrong?
thanks