Aurduino Yun - with Grove seeed temp/humi DHT1 and air qual sensors

Hello there,

I'm a newbie to Arduino and have been trying to get my head around it. i want to have a play around with a couple of sensors but I get a compilation error because the code I'm using wasnt written for the Yun board. Can anyone steer me in the direction of what I need to change where in the code? Code is below.

Thanks

Geoff

// Example testing sketch for various DHT humidity/temperature sensors
// Written by ladyada, public domain

#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 DHT22 // 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!");

/if using WIO link,must pull up the power pin./
// pinMode(PIN_GROVE_POWER, OUTPUT);
// digitalWrite(PIN_GROVE_POWER, 1);

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.8 (Windows Store 1.8.19.0) (Windows 10), Board: "Arduino Yún"

Multiple libraries were found for "DHT.h"
In file included from C:\Users\Work PC\Documents\Arduino\libraries\DHT_sensor_library\DHT_U.cpp:22:0:

Used: C:\Users\Work PC\Documents\Arduino\libraries\DHT_sensor_library
C:\Users\Work PC\Documents\Arduino\libraries\DHT_sensor_library\DHT_U.h:25:29: fatal error: Adafruit_Sensor.h: No such file or directory

Not used: C:\Users\Work PC\Documents\Arduino\libraries\Grove_Temperature_And_Humidity_Sensor
compilation terminated.

exit status 1
Error compiling for board Arduino Yún.

This report would have more information with
"Show verbose output during compilation"
option enabled in File -> Preferences.