const int analogPin = A0; // Flame Sensor (A0) to Arduino analog input pin A0 void setup() { Serial.begin(115200); } void loop() { // read the value of the Flame Sensor: int analogValue = analogRead(analogPin); Serial.println(analogValue); //serial print the FLAME sensor value delay(500); }