Navigation

    M5Stack Community

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

    rbarsa

    @rbarsa

    0
    Reputation
    5
    Posts
    715
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    rbarsa Follow

    Posts made by rbarsa

    • RE: [Product] - Industrial 24VDC DI, DO, AI, AO

      I would like to see this option as well. 24V I/O including the optocouplers

      posted in Features Wish List
      R
      rbarsa
    • RE: "get Battery Level" issue

      When using the MQTT the simmilar problem occure. The weight value sometimes shows nonsense number.

      posted in Bug Report
      R
      rbarsa
    • RE: "get Battery Level" issue

      from m5stack import *
      from m5ui import *
      from uiflow import *
      import unit

      setScreenColor(0x222222)
      weigh_1 = unit.get(unit.WEIGHT, unit.PORTA)

      proc = M5TextBox(90, 46, "proc", lcd.FONT_DejaVu40, 0xFFFFFF, rotate=0)
      gram = M5TextBox(128, 125, "gram", lcd.FONT_DejaVu40, 0xFFFFFF, rotate=0)
      label2 = M5TextBox(0, 46, "Bat:", lcd.FONT_DejaVu40, 0xFFFFFF, rotate=0)
      label3 = M5TextBox(0, 125, "Wght:", lcd.FONT_DejaVu40, 0xFFFFFF, rotate=0)

      weigh_1.zero()
      while True:
      gram.setText(str(weigh_1.weight))
      proc.setText(str(power.getBatteryLevel()))
      wait_ms(2)

      posted in Bug Report
      R
      rbarsa
    • "get Battery Level" issue

      Hi, I am using the 24bit HX711 connected on port A to measure the weight from sensor. All works, but when call the "get Battery level" , the measurement show nonsense number and stop working. Any idea ?

      Device: M5Stack core
      firmware: v1.8.3 (via M5Burner)
      UIFlow: v1.8.3

      posted in Bug Report
      R
      rbarsa