Skip to content

Commit 45b7190

Browse files
Update README.md
1 parent 4f6a123 commit 45b7190

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Otherwise, for traditional, do this:
2323
from time import sleep_ms
2424
```
2525

26-
The sensor is represented as a class called SHT3x. Create a new instance like this:
26+
Next, create a new instance of the SHT3x sensor class like this:
2727

2828
```
2929
i2c = SoftI2C(scl=Pin(I2C_CLOCK), sda=Pin(I2C_DATA))
@@ -37,7 +37,7 @@ i2c = SoftI2C(scl=Pin(I2C_CLOCK), sda=Pin(I2C_DATA))
3737
sht3x = SHT3x(i2c)
3838
```
3939

40-
Then you can request a measurement, wait for the sensor to finish, and read the results.
40+
Then, you can request a measurement, wait for the sensor to finish, and read the results.
4141

4242
```
4343
sht3x.measure()

0 commit comments

Comments
 (0)