Serial.print("ugm3 = " );
Serial.print(ugm3);
Serial.println("ug/m3" );
lowpulseoccupancy = 0;
starttime = millis();
if (Serial.available())
{
char output = Serial.read();
if(output < "ugm3 = 80ug/m3")
{
for(int i = 0; i<5; i++)
{
angle = angle +1;
if(angle >= 30)
angle = 30;
I wrote these code there is compiling error at
if(output < "ugm3 = 80ug/m3")
it says ISO C++ forbids comparison between pointer and integer so, I've already changed some times such as 'ugm3 = 80ug/m3' or '80ug/m3' etc. but the same error occurs what does that error mean?