Navigation

    M5Stack Community

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. wsanders
    3. Topics
    W
    • Continue chat with wsanders
    • Start new chat with wsanders
    • Flag Profile
    • Profile
    • Following
    • Followers
    • Blocks
    • Topics
    • Posts
    • Best
    • Groups

    Topics created by wsanders

    • W

      "Download the file to the M5" doesn't work anymore?
      Bug Report • • wsanders

      1
      0
      Votes
      1
      Posts
      311
      Views

      No one has replied

    • W

      More fonts in Core2 UIFlow "Graphic"
      Bug Report • • wsanders

      2
      0
      Votes
      2
      Posts
      329
      Views

      @wsanders M5Stack hit the space limit for the MP firmware and had to remove several fonts. V2 firmware should fix this issue.
    • W

      Custom Colors in UIFlow "Graphics".
      Features Wish List • • wsanders

      1
      0
      Votes
      1
      Posts
      478
      Views

      No one has replied

    • W

      Sample code for Thermal Unit and Core2?
      Units • • wsanders

      3
      0
      Votes
      3
      Posts
      522
      Views

      W

      Thanks for the hint. That code won't compile: 'MLX90640_BadPixelsCorrection' was not declared in this scope. If you comment out the reference to MLX90640_BadPixelsCorrection it compiles and works OK. In the meantime I got a UIFlow version working more or less. Download from https://github.com/wsanders/WSThermalCore2Cam/blob/main/thermtest1.m5f. It's pretty crude but it autoranges OK if the temperature differences aren't too bad. Using ASCII art pixels because it's faster than drawing two rectangle (you STILL can't draw a borderless rectangle in UIFlow!) Sorry - I deleted my previous post accidentally. It was full of errors anyway.
    • W

      NeoHEX 37 RGB LED Board: Are all three connectors Grove format?
      Units • • wsanders

      3
      0
      Votes
      3
      Posts
      1530
      Views

      P

      @wsanders i think so, but i have trouble lighting LEDs with m5stick
    • W

      Arduino IDE overwrites UIFlow Boot Loader?
      Arduino • arduino • • wsanders

      2
      0
      Votes
      2
      Posts
      1362
      Views

      Unfortunately not. Arduino work on a lower level than MicroPython and so runs directly on the hardware. Micropython is an interpreted language and so need to install a boot loader/ interpreter to run. It can be inconvenient to have to install the MP boot loader when you want to switch back but its now a simple process.
    • W

      Has anyone gotten machine.lightsleep to work from UIflow?
      UIFlow • • wsanders

      4
      0
      Votes
      4
      Posts
      2214
      Views

      W

      @wsanders I got the program to run with lightsleep, but only in "Internet Mode" and not "App Mode". Battery life was no different with lightsleep than with wait, about 2 hr. (Wait is probably is just a call to lightsleep, just in a more organized manner.) It appears that in 1.9.6 Wifi doesn't come back up after lightsleep, I seem to remember the above callback function worked in 1.9.5 even after lightsleep. Now it hangs. Back to square one. I think the best way is to have two separate programs, one to sync the watch to NTP, and one to run the clock with the time from the RTC (so I can still use the watch outside of my home wifi network.)
    • W

      UIFlow: How to try/except for "Connect to Wifi"?
      General • • wsanders

      2
      1
      Votes
      2
      Posts
      1215
      Views

      W

      @wsanders SOLUTION: Use "Original Network Function" blocks instead.
    • W

      UIFlow "Invalid Syntax"?
      General • • wsanders

      3
      0
      Votes
      3
      Posts
      1383
      Views

      W

      This was caused by a missing double quotation mark in a file name in an "Execute code" block.....
    • W

      M5StickC PLUS Watchband is Very Small
      Bases • • wsanders

      1
      0
      Votes
      1
      Posts
      1245
      Views

      No one has replied

    • W

      SSID With Spaces
      General • • wsanders

      2
      0
      Votes
      2
      Posts
      877
      Views

      @wsanders Yes, the SSID's need to be changed as far as I'm aware, the issue is with Micropython.
    • W

      Arduino IDE on Mac High Sierra - is it supported?
      General • • wsanders

      5
      0
      Votes
      5
      Posts
      2754
      Views

      @wsanders I just followed the install instructions to install Python3 in OSX All you are doing is adding a list of folders that tell the terminal where to look for python 3. Something like this guide works fine: https://www.educative.io/edpresso/how-to-add-python-to-the-path-variable-in-mac Then once the variable is set you use python3 instead of python when issuing commands.