summaryrefslogtreecommitdiffstatshomepage
path: root/examples/accellog.py
diff options
context:
space:
mode:
authorJohn R. Lenton <jlenton@gmail.com>2014-01-07 18:01:08 +0000
committerJohn R. Lenton <jlenton@gmail.com>2014-01-07 18:01:08 +0000
commit270112f7312f724e46ae34649dfce3ec43b697e0 (patch)
treed7438ae877350aede062d8ac7e62e52ab35cb018 /examples/accellog.py
parentc06763a0207dde7f2060f7b1670a0b99298a01f8 (diff)
parentfd04bb3bacf5dbc4d79c04a49520e3e81abb7352 (diff)
downloadmicropython-270112f7312f724e46ae34649dfce3ec43b697e0.tar.gz
micropython-270112f7312f724e46ae34649dfce3ec43b697e0.zip
Merge remote-tracking branch 'upstream/master' into listsort. Lots of conflict fun.
Conflicts: py/obj.h py/objbool.c py/objboundmeth.c py/objcell.c py/objclass.c py/objclosure.c py/objcomplex.c py/objdict.c py/objexcept.c py/objfun.c py/objgenerator.c py/objinstance.c py/objmodule.c py/objrange.c py/objset.c py/objslice.c
Diffstat (limited to 'examples/accellog.py')
-rw-r--r--examples/accellog.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/accellog.py b/examples/accellog.py
new file mode 100644
index 0000000000..81f44f19a8
--- /dev/null
+++ b/examples/accellog.py
@@ -0,0 +1,14 @@
+# log the accelerometer values to a file, 1 per second
+
+f = open('motion.dat', 'w') # open the file for writing
+
+for i in range(60): # loop 60 times
+ time = pyb.time() # get the current time
+ accel = pyb.accel() # get the accelerometer data
+
+ # write time and x,y,z values to the file
+ f.write('{} {} {} {}\n'.format(time, accel[0], accel[1], accel[2]))
+
+ pyb.delay(1000) # wait 1000 ms = 1 second
+
+f.close() # close the file