'​' does not name a type

กระทู้คำถาม
#include <ESP8266WiFi.h>​

int sensorPin = A0;​

void setup()​
{​
   //Debug console​
  Serial.begin(9600);​
}​

void loop()​
{​
  int sensorValue;​
  sensorValue = analogRead(sensorPin);​
  sensorValue = map(sensorValue, 0, 1024, 0, 100);​
  Serial.println(sensorValue);​

  if (isnan(sensorValue)) {​
    Serial.println("Failed to read from sensor!");​
    return;​
    }​

   delay(2000);​
}​
แสดงความคิดเห็น
โปรดศึกษาและยอมรับนโยบายข้อมูลส่วนบุคคลก่อนเริ่มใช้งาน อ่านเพิ่มเติมได้ที่นี่