Skip to content

Commit

Permalink
add: print in Basic demo
Browse files Browse the repository at this point in the history
  • Loading branch information
Hansen0314 committed Jul 10, 2020
1 parent 2133af4 commit 6c86309
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/BasicReadings.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import seeed_mlx9064x
import time
CHIP_TYPE = 'MLX90641'
CHIP_TYPE = 'MLX90640'
def main():
if CHIP_TYPE == 'MLX90641':
mlx = seeed_mlx9064x.grove_mxl90641()
Expand All @@ -15,7 +15,7 @@ def main():
mlx.getFrame(frame)
except ValueError:
continue
# print(frame)
print(frame)
end = time.time()
print("The time: %f"%(end - start))
if __name__ == '__main__':
Expand Down

0 comments on commit 6c86309

Please sign in to comment.