We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2133af4 commit 6c86309Copy full SHA for 6c86309
1 file changed
examples/BasicReadings.py
@@ -1,6 +1,6 @@
1
import seeed_mlx9064x
2
import time
3
-CHIP_TYPE = 'MLX90641'
+CHIP_TYPE = 'MLX90640'
4
def main():
5
if CHIP_TYPE == 'MLX90641':
6
mlx = seeed_mlx9064x.grove_mxl90641()
@@ -15,7 +15,7 @@ def main():
15
mlx.getFrame(frame)
16
except ValueError:
17
continue
18
-# print(frame)
+ print(frame)
19
end = time.time()
20
print("The time: %f"%(end - start))
21
if __name__ == '__main__':
0 commit comments