String i = "OFF";
String y = "ON";
void setup() {
Serial.begin(9600);
//int result = strcmp(i,y);
if (!i.equals(y)) {
Serial.println("Yes");
} else {
Serial.println("No");
}
}
void loop() {
delay(1000);
}
String i = "OFF";
String y = "ON";
void setup() {
Serial.begin(9600);
//int result = strcmp(i,y);
if (!i.equals(y)) {
Serial.println("Yes");
} else {
Serial.println("No");
}
}
void loop() {
delay(1000);
}