что за ошибка ардуино

Тема в разделе "Arduino & Shields", создана пользователем VoVaN-777, 21 янв 2018.

  1. VoVaN-777

    VoVaN-777 Нуб

    при установке скетча
    ---------------------------------


    #include "DHT.h"

    #define DHTPIN 2 // what pin we're connected to

    // Uncomment whatever type you're using!
    //#define DHTTYPE DHT11 // DHT 11
    #define DHTTYPE DHT11 // DHT 22 (AM2302)
    //#define DHTTYPE DHT21 // DHT 21 (AM2301)

    // Connect pin 1 (on the left) of the sensor to +5V
    // Connect pin 2 of the sensor to whatever your DHTPIN is
    // Connect pin 4 (on the right) of the sensor to GROUND
    // Connect a 10K resistor from pin 2 (data) to pin 1 (power) of the sensor

    DHT dht(DHTPIN, DHTTYPE);

    void setup() {
    Serial.begin(9600);
    Serial.println("DHTxx test!");

    dht.begin();
    }

    void loop() {
    // 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();
    float t = dht.readTemperature();

    // check if returns are valid, if they are NaN (not a number) then something went wrong!
    if (isnan(t) || isnan(h)) {
    Serial.println("Failed to read from DHT");
    } else {
    Serial.print("Humidity: ");
    Serial.print(h);
    Serial.print(" %\t");
    Serial.print("Temperature: ");
    Serial.print(t);
    Serial.println(" *C");
    }
    }
    ---------------------------------

    выдает ошибку
    ----------------------------------




    Arduino: 1.8.5 (Mac OS X), Плата:"Arduino Nano, ATmega328P"

    /var/folders/cf/1pv7cmd53pnbpgchsrtvhmlh0000gn/T/arduino_modified_sketch_994846/Blink.ino:1:17: fatal error: DHT.h: No such file or directory
    #include "DHT.h"
    ^
    compilation terminated.
    exit status 1
    Ошибка компиляции для платы Arduino Nano.


    --------------------------------------

    что это такое
     
  2. DetSimen

    DetSimen Guest

    Переведи
     
  3. Airbus

    Airbus Радиохулиган Модератор

    Нет библиотеки DHT.h А спорим что код скопипащеный?
     
  4. VoVaN-777

    VoVaN-777 Нуб

    Это был мой первый запуск ардуики с датчиком, все получилось! Благодарю за помощь, а код скопирован с сайта.