SHT35 Humidity & Temperature sensor

I want a library SHT35 Humidity & Temperature sensor. Please help me.

Look at the library for the SHT31-D from Adafruit. It might be close enough to get you started.

This example may also help. The 'D' version is digital output and the 'A' version is analogue. If you don't need the accuracy of the 35 then the 31 in breakout board form from Adafruit is a good choice.

I test module SHT35 by this code from adafruit but result :

SHT31 test
Failed to read temperature
Failed to read humidity

i connect arduino uno r3 with module SHT35

vcc(red) - 5v
gnd(black) - gnd
sda(yellow) - A4
scl(white) - A5

Please help me to understand. Thank you

/***************************************************
This is an example for the SHT31-D Humidity & Temp Sensor

Designed specifically to work with the SHT31-D sensor from Adafruit
----> Adafruit Sensirion SHT31-D [Temperature & Humidity Sensor] : ID 2857 : $13.95 : Adafruit Industries, Unique & fun DIY electronics and kits

These sensors use I2C to communicate, 2 pins are required to
interface
****************************************************/

#include <Arduino.h>
#include <Wire.h>
#include "Adafruit_SHT31.h"

Adafruit_SHT31 sht31 = Adafruit_SHT31();

#if defined(ARDUINO_ARCH_SAMD)
// for Zero, output on USB Serial console, remove line below if using programming port to program the Zero!
#define Serial SerialUSB
#endif

void setup() {
#ifndef ESP8266
while (!Serial); // will pause Zero, Leonardo, etc until serial console opens
#endif
Serial.begin(9600);
Serial.println("SHT31 test");
if (! sht31.begin(0x44)) { // Set to 0x45 for alternate i2c addr
Serial.println("Couldn't find SHT31");
while (1) delay(1);
}
}

void loop() {
float t = sht31.readTemperature();
float h = sht31.readHumidity();

if (! isnan(t)) { // check if 'is not a number'
Serial.print("Temp *C = "); Serial.println(t);
} else {
Serial.println("Failed to read temperature");
}

if (! isnan(h)) { // check if 'is not a number'
Serial.print("Hum. % = "); Serial.println(h);
} else {
Serial.println("Failed to read humidity");
}
Serial.println();
delay(1000);
}

Check the operating voltage of the SHT35 as it may be 3.3V. If so, you will need to power it from the 3.3V pin of the Uno and use a bidirectional level converter for the I2C signals. You may also want to run an I2C scanner to find out which address the module has assumed. If the address pin on the module is left floating then it should be pulled down with a low value resistor, 1K, or grounded. The fact that the code found the module at 0x44 says it's correct but do not leave the address pin floating.

If you've operated the module on the wrong voltage, it may already be damaged. The Adafruit breakout contains a voltage regulator and level converters. It's just a matter of how accurate you want your readings.

you are using the analog pin
SHT35 is digital
try to connect it on the digital pin of your uno