I’m trying to get my lcd screen to print different messages depending on the output range of a sensor. Any idea how to code that? I tried just using a simple
if(analogRead(sensorValue) = value){
lcd.print(“message”);
}
But the program does not seem to like it…