Search found 1 match

by Anders_Fg
Wed Apr 13, 2022 7:41 am
Forum: micro:bit boards
Topic: Accelerometer data collection on a MicroBit
Replies: 7
Views: 35454

Re: Accelerometer data collection on a MicroBit

This is how I use one microbit to collect data. I make a new file with a random name and can then move the file to a computer. Press A for start reading and B for stop reading. ---- from microbit import * from random import random tal = str(random()) f = open(tal + '.txt','w') f.write(" x y z \n") d...