Navigation

    M5Stack Community

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

    shliao

    @shliao

    0
    Reputation
    1
    Posts
    490
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    shliao Follow

    Posts made by shliao

    • Can not get signal from GPIO 36

      Dear all,
      I connected PIR sensor in GPIO36 but I can not get any data from StickC.
      The Code is:

      from m5stack import *
      from m5ui import *
      from uiflow import *
      import machine

      setScreenColor(0x111111)

      pinv = None

      label0 = M5TextBox(12, 34, "Text", lcd.FONT_Default, 0xFFFFFF, rotate=0)

      while True:
      pin0 = machine.Pin(36, mode=machine.Pin.IN, pull=machine.Pin.PULL_UP)
      pinv = pin0.value()
      label0.setText(str(pinv))
      wait_ms(2)

      I always got 0(zero). Could you help me where I am worng?

      posted in Micropython
      S
      shliao