खोज…


वाक्य - विन्यास

  • analogRead(pin) // दिए गए पिन से पढ़ें।

टिप्पणियों

Serial.println(val)

सीरियल संचार में मदद के लिए, देखें: सीरियल संचार

एक एनालॉग मूल्य का प्रिंट आउट लें

int val = 0;    // variable used to store the value
                // coming from the sensor

void setup() {
  Serial.begin(9600); //Begin serializer to print out value

  // Note: Analogue pins are
  // automatically set as inputs
}

void loop() {

  val = analogRead(0); // read the value from
                       // the sensor connected to A0.

  Serial.println(val); //Prints the value coming in from the analog sensor
 
  delay(10); // stop the program for
             // some time
}

एनालॉग पिन से वोल्टेज प्राप्त करें

एनालॉग पिन का उपयोग वोल्टेज को पढ़ने के लिए किया जा सकता है जो बैटरी की निगरानी या एनालॉग उपकरणों के साथ इंटरफेस करने के लिए उपयोगी है। डिफ़ॉल्ट रूप से एरीएफ पिन आर्डिनो के ऑपरेटिंग वोल्टेज के समान होगा, लेकिन बाहरी रूप से अन्य मानों पर सेट किया जा सकता है। यदि पढ़ने के लिए वोल्टेज इनपुट वोल्टेज से बड़ा है, तो एनालॉग वोल्टेज को कम करने के लिए एक संभावित डिवाइडर की आवश्यकता होगी।

#define analogPin 14    //A0 (uno)
#define AREFValue 5        //Standard for 5V Arduinos
#define ADCResolution 1023    //Standard for a 10bit ADC

int ADCValue = 0;
float voltage = 0;

void setup()
{
    Serial.begin(9600);
}

void loop() 
{
    readADC();
    Serial.print(voltage); Serial.println("V");
}

void readADC()
{
    ADCValue = analogRead(analogPin);
    float = ( ( (float)ADCValue/ADCRange ) * AREFValue );    //Convert the ADC value to a float, devide by the ADC resolution and multiply by the AREF voltage
}


Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow