DHT11 always reading zero values

I am using DHTLib 0.1.17 with a brand new DHT11 and while I am getting an OK from the checksum, the Temp and Humidity values are always both 0.

I have tried the sensor on +5V and +3.3V - both make no difference. I have tried a bunch of different input pins too.

Would this indicate a faulty sensor?

The code is straight from the examples with some LCD display thrown in

//
//    FILE: dht11_test.ino
//  AUTHOR: Rob Tillaart
// VERSION: 0.1.01
// PURPOSE: DHT library test sketch for DHT11 && Arduino
//     URL:
//
// Released to the public domain
//

#include <dht.h>
#include <LiquidCrystal.h>
dht DHT;

#define DHT11_PIN 7

// initialize the library with the numbers of the interface pins
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);

void setup()
{
  Serial.begin(115200);
  Serial.println("DHT TEST PROGRAM ");
  Serial.print("LIBRARY VERSION: ");
  Serial.println(DHT_LIB_VERSION);
  Serial.println();
  Serial.println("Type,\tstatus,\tHumidity (%),\tTemperature (C)");
  // set up the LCD's number of columns and rows: 
  lcd.begin(16, 2);
}

void loop()
{
  // READ DATA
  Serial.print("DHT11, \t");
  int chk = DHT.read11(DHT11_PIN);
  switch (chk)
  {
  case DHTLIB_OK:  
    Serial.print("OK,\t"); 
    break;
  case DHTLIB_ERROR_CHECKSUM: 
    Serial.print("Checksum error,\t"); 
    break;
  case DHTLIB_ERROR_TIMEOUT: 
    Serial.print("Time out error,\t"); 
    break;
  case DHTLIB_ERROR_CONNECT:
    Serial.print("Connect error,\t");
    break;
  case DHTLIB_ERROR_ACK_L:
    Serial.print("Ack Low error,\t");
    break;
  case DHTLIB_ERROR_ACK_H:
    Serial.print("Ack High error,\t");
    break;
  default: 
    Serial.print("Unknown error,\t"); 
    break;
  }
  // DISPLAY DATA
  Serial.print(DHT.humidity, 1);
  Serial.print(",\t\t");
  Serial.println(DHT.temperature, 1);
  lcd.setCursor(0,0);
  lcd.print("Temp     ");
  lcd.print(DHT.temperature);
  lcd.print((char)223);
  lcd.print("C");
  lcd.setCursor(0,1);
  lcd.print("Humidity ");
  lcd.print(DHT.humidity);
  lcd.print("% ");
  delay(2000);
}

the dht0.1.17 does fail to support the DHT11 (I did not test it well enough).

please use the version 0.1.15 , should work.

attached here - Class for DHT11, DHT21 and DHT22 (temperature & humidity) - #123 by robtillaart - Libraries - Arduino Forum -

That did the trick! Thanks Rob.