Skip to content

Commit 2679628

Browse files
authored
Update README.md
1 parent 4098ba0 commit 2679628

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -73,14 +73,14 @@ Initialize the sersor object and config the sersor refresh rate.
7373
import seeed_mlx90640
7474
mlx = seeed_mlx90640.grove_mxl90640()
7575
mlx.refresh_rate = seeed_mlx90640.RefreshRate.REFRESH_8_HZ # The fastest for raspberry 4
76-
# 0x00 0.5HZ
77-
# 0x01 1HZ
78-
# 0x02 2HZ
79-
# 0x03 4HZ
80-
# 0x04 8HZ(recommend for raspberry)
81-
# 0x05 16HZ
82-
# 0x06 32HZ
83-
# 0x07 64HZ
76+
# REFRESH_0_5_HZ = 0b000 # 0.5Hz
77+
# REFRESH_1_HZ = 0b001 # 1Hz
78+
# REFRESH_2_HZ = 0b010 # 2Hz
79+
# REFRESH_4_HZ = 0b011 # 4Hz
80+
# REFRESH_8_HZ = 0b100 # 8Hz
81+
# REFRESH_16_HZ = 0b101 # 16Hz
82+
# REFRESH_32_HZ = 0b110 # 32Hz
83+
# REFRESH_64_HZ = 0b111 # 64Hz
8484
```
8585

8686
## Reading from the Sensor

0 commit comments

Comments
 (0)