Navigation

    M5Stack Community

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. dybber2
    D
    • Continue chat with dybber2
    • Start new chat with dybber2
    • Flag Profile
    • Profile
    • Following
    • Followers
    • Blocks
    • Topics
    • Posts
    • Best
    • Groups
    Save
    Saving

    dybber2

    @dybber2

    I work with Computer Science Education at University of Copenhagen, Department of Computer Science. Reaching out to Danish high schools.

    0
    Reputation
    2
    Posts
    57
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online
    Website di.ku.dk Location Copenhagen, Denmark

    dybber2 Follow

    Posts made by dybber2

    • Disable UIflow on newest MicroPython firmware?

      Hi M5Stack

      How do you disable automatic import and loading of UIflow modules on the newest firmware (1.6.6)? Previously, we could just edit to boot.py, and avoid it connecting to WiFi etc., but now that no longer seems to be enough.

      We are programming M5Stick's directly in Python, not through the webinterface, but through e.g. Mu-editor or Thonny beginner Python editors.

      We want to access modules when we need them, not have everything automatically imported on startup.

      Also, the current firmware (1.6.6) often gives the following error:

        File "_boot.py", line 30, in <module>
        File "m5stack.py", line 39, in <module>
        File "m5stack.py", line 24, in clear_imu_irq
        File "i2c_bus.py", line 40, in __init__
        File "i2c_bus.py", line 31, in get
      KeyboardInterrupt: 
      Traceback (most recent call last):
        File "_flow.py", line 2, in <module>
        File "menu/cloud.py", line 1, in <module>
      ImportError: can't import name lcd
      

      The error is very unpredictable, as it works sometimes, but then sometimes just happens when we run our code.

      Best regards,
      Martin Dybdal

      posted in Micropython
      D
      dybber2
    • Can't import m5stack.rtc on firmware 1.6.6

      Hi m5stack,

      On the newest version, 1.6.6, it's no longer possible to from m5stack import rtc

      >>> from m5stack import rtc
      Traceback (most recent call last):
        File "<stdin>", line 1, in <module>
      ImportError: can't import name rtc
      

      Has the real time clock module been renamed?

      posted in Micropython
      D
      dybber2