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

    IR Block not available

    Scheduled Pinned Locked Moved Bug Report
    2 Posts 2 Posters 2.5k Views
    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 Offline
      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 Offline
        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

        Hello! It looks like you're interested in this conversation, but you don't have an account yet.

        Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

        With your input, this post could be even better 💗

        Register Login
        • First post
          Last post