Skip to content

Commit 6c86309

Browse files
author
Hansen0314
committed
add: print in Basic demo
1 parent 2133af4 commit 6c86309

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: examples/BasicReadings.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import seeed_mlx9064x
22
import time
3-
CHIP_TYPE = 'MLX90641'
3+
CHIP_TYPE = 'MLX90640'
44
def main():
55
if CHIP_TYPE == 'MLX90641':
66
mlx = seeed_mlx9064x.grove_mxl90641()
@@ -15,7 +15,7 @@ def main():
1515
mlx.getFrame(frame)
1616
except ValueError:
1717
continue
18-
# print(frame)
18+
print(frame)
1919
end = time.time()
2020
print("The time: %f"%(end - start))
2121
if __name__ == '__main__':

0 commit comments

Comments
 (0)