We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4098ba0 commit 2679628Copy full SHA for 2679628
README.md
@@ -73,14 +73,14 @@ Initialize the sersor object and config the sersor refresh rate.
73
import seeed_mlx90640
74
mlx = seeed_mlx90640.grove_mxl90640()
75
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
+# REFRESH_0_5_HZ = 0b000 # 0.5Hz
+# REFRESH_1_HZ = 0b001 # 1Hz
+# REFRESH_2_HZ = 0b010 # 2Hz
+# REFRESH_4_HZ = 0b011 # 4Hz
+# REFRESH_8_HZ = 0b100 # 8Hz
+# REFRESH_16_HZ = 0b101 # 16Hz
+# REFRESH_32_HZ = 0b110 # 32Hz
+# REFRESH_64_HZ = 0b111 # 64Hz
84
```
85
86
## Reading from the Sensor
0 commit comments