Navigation

    M5Stack Community

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

    sysdl132

    @sysdl132

    1
    Reputation
    59
    Posts
    2297
    Profile views
    1
    Followers
    1
    Following
    Joined Last Online
    Website sysdl132.gitee.io/mario-maker Location Hangzhou,China

    sysdl132 Follow

    Posts made by sysdl132

    • Problems when building OpenTyrian for esp32...
      # https://github.com/jkirsons/OpenTyrian.git
      $ make menuconfig
      Makefile:9: /make/project.mk: No such file or directory
      make: *** No rule to make target '/make/project.mk'.  Stop.
      
      posted in ESP - IDF
      sysdl132
    • FATAL ERROR: Name m5line is not defined
      from m5stack import *
      from m5ui import *
      from uiflow import *
      import unit
      
      setScreenColor(0x514f4f)
      earth0 = unit.get(unit.EARTH, unit.PORTA)
      
      std = M5Circle(40, 91, 10, 0xFFFFFF, 0xFFFFFF)
      text0 = M5TextBox(61, 119, "Status", lcd.FONT_Default, 0x78ff00, rotate=180)
      text1 = M5TextBox(77, 149, "Water monitor", lcd.FONT_DefaultSmall, 0x00e5ff, rotate=0)
      label0 = M5TextBox(77, 58, "value:", lcd.FONT_Default, 0xe4ff00, rotate=180)
      rectangle0 = M5Rect(2, 41, 34, 20, 0xFFFFFF, 0xFFFFFF)
      angread = M5TextBox(30, 57, "err", lcd.FONT_DefaultSmall, 0x000000, rotate=180)
      rectangle1 = M5Rect(16, 11, 20, 20, 0xFFFFFF, 0xFFFFFF)
      label1 = M5TextBox(77, 27, "Unit std:", lcd.FONT_DefaultSmall, 0xfffe00, rotate=180)
      line0 = M5Line(M5Line.PLINE, 16, 128, 62, 128, 0xFFFFFF)    # <--bug line
      need = M5TextBox(75, 74, "Water needed!", lcd.FONT_DefaultSmall, 0xff0000, rotate=180)
      
      # sysinit
      def init():
        need.hide()
        angread.setText('0')
        rectangle0.setBgColor(0xff0000)
        rectangle0.setBorderColor(0xff0000)
        std.setBgColor(0xff0000)
        std.setBorderColor(0xff0000)
      
      
      
      init()
      while True:
        if False:
          angread.setText(str(earth0.analogValue))
        elif False:
          pass
        wait_ms(2)
      
      posted in Bug Report
      sysdl132
    • Easyloader virus found?

      0_1593650536206_b3a44659-62bf-464b-b6e3-0cde7976815e-image.png

      but virscan.org show "no virus"
      https://r.virscan.org/language/zh-cn/report/83e8090dd7b1e701b1eb6c725a503693

      posted in SOFTWARE
      sysdl132
    • RE: I think my StickC has died ... any suggestions?

      You can try to reset your 'sick-C' by erase your flash and burn the firmware again?
      (my older m5stickC bought at 2017 .it never 'died'. I erase and burn the firmware for about 1,500 times and it never 'sicked')

      posted in M5 Stick/StickC
      sysdl132
    • RE: Temporary workaround for using Arduino M5Stack core in ESP-IDF 4.0

      @brus awesome

      posted in ESP - IDF
      sysdl132
    • RE: Bitcoin / Multi Crypto Coin Ticker with 24 candlesticks chart

      @frittna
      can you made the green frame to blue?The default icon is blue.

      posted in PROJECTS
      sysdl132
    • RE: Erry when I try to build micropython firmware

      maybe your compiler has some error(I only used arduino and uiflow,you can try with it)🤔

      posted in Micropython
      sysdl132
    • RE: M5StickC Electronic Animated Eyes

      Great!

      posted in PROJECTS
      sysdl132
    • RE: Detect LongPress-Button (but not only when released button)

      @m5stickfreakler Try to set the longpress time shorter.

      from m5stack import *
      from m5ui import *
      from uiflow import *
      
      setScreenColor(0x222222)
      
      buttonA_LongPressed = 0
      buttonB_LongPressed = 0
      buttonC_LongPressed = 0
      longPress_ms = 600
      # or shorter
      longPress_interval = 100
      #==============================
      # Your code here
      
      posted in General
      sysdl132
    • RE: Analog Pin

      My earth unit can work on stickC with analog reading.
      0_1583563552955_6dcceb3f-0d82-4a36-879f-7f342fa224e5-图片.png
      (Maybe is G33)

      #define analogpin 33   //maybe it's 32
      
      posted in M5 Stick/StickC
      sysdl132