Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to log local on microbit? #663

Open
davorradic opened this issue May 28, 2019 · 1 comment
Open

How to log local on microbit? #663

davorradic opened this issue May 28, 2019 · 1 comment

Comments

@davorradic
Copy link

davorradic commented May 28, 2019

I have next code:

import time
from microbit import *
def writeToLocalStrage():
    with open('log.txt') as old_file:
        text_from_file_before = old_file.read()
    
    with open('log.txt', 'w') as my_file:
        display.show(text_from_file_before)
        content = str(temperature())
        content = text_from_file_before + content
        content = content + ';'
        my_file.write(content)
    
    
while True:
    writeToLocalStrage()
    time.sleep(2)

if I want to get it with:
ufs get log.txt
I get only 3x
28;28;28;
but never more then this, is the memory full or my script is not good?

@dpgeorge
Copy link
Member

dpgeorge commented Jun 3, 2019

The above code works fine for me, it wrote up to at least 10 entries (and then I stopped it).

I suggest to check what other files you have on the microbit's filesystem.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants