SHT75 and refresh rate time problem!

i have the SHT75 sensor for temperature & humidity i use this library > GitHub - practicalarduino/SHT1x: Arduino library to support SHT1x-series (SHT10, SHT11, SHT15) temperature / humidity sensors from Sensirion

my problem is the time and refresh rate in serial monitor :

no : 0,1,2,3,4,5,6,7,8 (sec)
but : 0,2,4,7,9,12,14 (sec)

why? how to fix this?

The example sketch in the library has baud rate of 38400 and a 2 second delay between readings, try stepping your serial baud rate up to 115200 and post your code so we can see whats going on.

How to post your code in the Arduino forum:

After you have typed your message, start the Arduino IDE if not already running and load or type in your code.
Right click in the editor window then left click [Select All].
Right click again then left click [Copy].
In the forum [New Topic] or [Reply] page, click the

</>

code symbol in the upper left.
Right click in the box that appears then left click [Paste].

Or type:

[code]

Type or
paste your
code here

[/code]

Hi. I use these sonsors all the time. 4 at a time. They respond very fast. If you want to see how fast then work out the time on the Arduino side using millis. Record millis before you call the sensor and then after and subtract the 2. Then display that and you will see it is very fast. The serial comms take the most time.

Regards.