🤖Have you ever tried Chat.M5Stack.com before asking??😎
    M5Stack Community
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login

    IR Block not available

    Bug Report
    2
    2
    2.0k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • D
      Dave_White
      last edited by

      Hi there,

      UI Flow and IR capability were my reasons for buying a M5Stack C Plus.
      I would like you to add the missing block in order to finish the hardware list.

      image

      Thank you
      David Blanco

      1 Reply Last reply Reply Quote 0
      • felmueF
        felmue
        last edited by

        Hello @Dave_White

        in the mean time you could use Advanced - PIN and setup GPIO9 (IR) as pin0 / output and then set pin0 LOW to turn the IR LED on.

        Below MicroPython code lets the IR LED blink:

        from m5stack import *
        from m5ui import *
        from uiflow import *
        import machine
        import time
        
        setScreenColor(0x111111)
        pin0 = machine.Pin(9, mode=machine.Pin.OUT, pull=0x00)
        while True:
          pin0.off()
          wait(1)
          pin0.on()
          wait(1)
        

        Cheers
        Felix

        GPIO translation table M5Stack / M5Core2
        Information about various M5Stack products.
        Code examples

        1 Reply Last reply Reply Quote 0
        • First post
          Last post