void setup() {
  // put your setup code here, to run once:
  Serial.begin(9600);
  analogReadResolution(10);
  pinMode(18,OUTPUT);
}


// // Brightness of LED 
// void loop() {
//     int x = analogRead(26);
//     int y = map(x,0,1023,0,255);
//     Serial.print("Value of Potential Meter: ");
//     Serial.println(x);
//     Serial.print("Value of After Maping: ")
//     Serial.println(y);
//     analogWrite(18,y);
//     delay(500);
//     }


// Blinking of LED 
void loop() {
    int x = analogRead(26);
    // int y = map(x,0,1023,0,255);
    Serial.println(x);
    // Serial.println(y);
    analogWrite(18,HIGH);
    delay(x);
    analogWrite(18,LOW);
    delay(x);

    }




// void setup() {
//   // put your setup code here, to run once:
//   Serial.begin(9600);
  
// //  analogReadResolution(10);
//   pinMode(D7,OUTPUT);
// }


// // Brightness of LED 
// void loop() {
//     int x = analogRead(A0);
//     Serial.print("Value of Analog Pin: ");
//     Serial.println(x);
//     analogWrite(D7,x);
//     delay(500);
//     }
   
































// void loop() {
//   // put your main code here, to run repeatedly:
//     int x = analogRead(26);
//     // if( x > 500)
//     // {
//       Serial.print("The Value of Analog Signal: ");
//       Serial.println(x);
//       digitalWrite(18, HIGH);
//    // }
//     // if(x >800)
//     // {
//     //   digitalWrite(5, HIGH);
//     // // }
//     // else
//     // {

//     //   digitalWrite(18, LOW);
//     // }
//     delay(1000);
// }