نمایش نتایج: از 1 به 2 از 2

موضوع: نشان دادن خروجی DHT11 در lcd کاراکتری

  1. #1
    Junior Member
    تاریخ عضویت
    Mar 2017
    نوشته ها
    1

    نشان دادن خروجی DHT11 در lcd کاراکتری

    من کد زیر را برای این کار استفاده کردم اما خروجی اشتباه می گیرم، مشکل کار کجاست؟
    کد:
    // include the library code:
    #include <LiquidCrystal.h>
    #include "DHT.h"
    #define DHTPIN 2     // what digital pin we're connected to
    #define DHTTYPE DHT11   // DHT 11
    DHT dht(DHTPIN, DHTTYPE);
    // تعیین این که نمایشگر به چه پایه هایی از بردمون وصل هستش
    // LiquidCrystal(rs, rw, enable, d4, d5, d6, d7) 
    LiquidCrystal lcd(11,10,9,4,5,6,7);
    void setup() {
    Serial.begin(9600);
    lcd.println("DHT11 testing!");
    dht.begin();
      //تعیین تعداد سطر و ستون های نمایشگرمون
      lcd.begin(20, 4);
      //تعیین موقعیت نمایش گر برا نمایش اطلاعات
      lcd.setCursor(3,1);
      // نمایش یه متن رشته ای
      lcd.print("Wellcome");
      delay(3000);
      lcd.clear();
      lcd.print("WATER CREATOR");
      delay(3000);
      lcd.clear();
     lcd.autoscroll();
      lcd.setCursor(10,0);
      
      for(int i=0 ; i<=9 ; i++)
      {
        lcd.print(i);
        delay(500); 
      }
      
      delay(2000); 
      lcd.clear();
      
      lcd.noAutoscroll();
      for(int i=0 ; i<=9 ; i++)
      {
        lcd.print(i);
        delay(500); 
      }
    }
    void loop() {
      // Wait a few seconds between measurements.
      delay(2500);
    
      // Reading temperature or humidity takes about 250 milliseconds!
      // Sensor readings may also be up to 2 seconds 'old' (its a very slow sensor)
      float h = dht.readHumidity();
      // Read temperature as Celsius (the default)
      float t = dht.readTemperature();
      // Read temperature as Fahrenheit (isFahrenheit = true)
      float f = dht.readTemperature(true);// temperature in F
      lcd.print("Humidity:");
      lcd.print(h);
      lcd.print(" %\t");
      lcd.print("Temperature: ");
      lcd.print(t);
      lcd.print(" *C ");
      lcd.print(f);
      lcd.print(" *F\t");
      lcd.print("Heat index: ");
    //  lcd.print(hic);
    //  lcd.print(" *C ");
    //  lcd.print(hif);
    //lcd.println(" *F");
      // Check if any reads failed and exit early (to try again).
      if (isnan(h) || isnan(t) || isnan(f)) {
      lcd.print("Failed to read from DHT sensor!");
        return;
    
      }
    
      // Compute heat index in Fahrenheit (the default)
      float hif = dht.computeHeatIndex(f, h);
      // Compute heat index in Celsius (isFahreheit = false)
      float hic = dht.computeHeatIndex(t, h, false);// if false shows C if true shows F
    }

  2. #2
    مدیر ویژه
    تاریخ عضویت
    May 2014
    نوشته ها
    259
    نقل قول نوشته اصلی توسط arsalan1374 نمایش پست ها
    من کد زیر را برای این کار استفاده کردم اما خروجی اشتباه می گیرم، مشکل کار کجاست؟
    کد:
    // include the library code:
    #include <LiquidCrystal.h>
    #include "DHT.h"
    #define DHTPIN 2     // what digital pin we're connected to
    #define DHTTYPE DHT11   // DHT 11
    DHT dht(DHTPIN, DHTTYPE);
    // تعیین این که نمایشگر به چه پایه هایی از بردمون وصل هستش
    // LiquidCrystal(rs, rw, enable, d4, d5, d6, d7) 
    LiquidCrystal lcd(11,10,9,4,5,6,7);
    void setup() {
    Serial.begin(9600);
    lcd.println("DHT11 testing!");
    dht.begin();
      //تعیین تعداد سطر و ستون های نمایشگرمون
      lcd.begin(20, 4);
      //تعیین موقعیت نمایش گر برا نمایش اطلاعات
      lcd.setCursor(3,1);
      // نمایش یه متن رشته ای
      lcd.print("Wellcome");
      delay(3000);
      lcd.clear();
      lcd.print("WATER CREATOR");
      delay(3000);
      lcd.clear();
     lcd.autoscroll();
      lcd.setCursor(10,0);
      
      for(int i=0 ; i<=9 ; i++)
      {
        lcd.print(i);
        delay(500); 
      }
      
      delay(2000); 
      lcd.clear();
      
      lcd.noAutoscroll();
      for(int i=0 ; i<=9 ; i++)
      {
        lcd.print(i);
        delay(500); 
      }
    }
    void loop() {
      // Wait a few seconds between measurements.
      delay(2500);
    
      // Reading temperature or humidity takes about 250 milliseconds!
      // Sensor readings may also be up to 2 seconds 'old' (its a very slow sensor)
      float h = dht.readHumidity();
      // Read temperature as Celsius (the default)
      float t = dht.readTemperature();
      // Read temperature as Fahrenheit (isFahrenheit = true)
      float f = dht.readTemperature(true);// temperature in F
      lcd.print("Humidity:");
      lcd.print(h);
      lcd.print(" %\t");
      lcd.print("Temperature: ");
      lcd.print(t);
      lcd.print(" *C ");
      lcd.print(f);
      lcd.print(" *F\t");
      lcd.print("Heat index: ");
    //  lcd.print(hic);
    //  lcd.print(" *C ");
    //  lcd.print(hif);
    //lcd.println(" *F");
      // Check if any reads failed and exit early (to try again).
      if (isnan(h) || isnan(t) || isnan(f)) {
      lcd.print("Failed to read from DHT sensor!");
        return;
    
      }
    
      // Compute heat index in Fahrenheit (the default)
      float hif = dht.computeHeatIndex(f, h);
      // Compute heat index in Celsius (isFahreheit = false)
      float hic = dht.computeHeatIndex(t, h, false);// if false shows C if true shows F
    }
    شماتیک مدارهم بزار تا مشکل پیدا بشه

مجوز های ارسال و ویرایش

  • شما نمیتوانید موضوع جدیدی ارسال کنید
  • شما امکان ارسال پاسخ را ندارید
  • شما نمیتوانید فایل پیوست کنید.
  • شما نمیتوانید پست های خود را ویرایش کنید
  •  

SEO by vBSEO