Navigation

    MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord

    [MMM-Buttons] Not recognizing button presses

    Troubleshooting
    3
    23
    9331
    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.
    • M
      Mar last edited by

      module is great but doesnt seem to be recognizing my clicks. its not sending out a notification, i only have buttons installed for testing so not sure if its that?

      1 Reply Last reply Reply Quote 0
      • istepgueu
        istepgueu last edited by

        For testing in terminal :

        1- Create a button.py file with this :

        import RPi.GPIO as GPIO
        import time
        
        GPIO.setmode(GPIO.BCM)
        GPIO.setup(24, GPIO.IN, pull_up_down=GPIO.PUD_UP)
        GPIO.setup(25, GPIO.IN, pull_up_down=GPIO.PUD_UP)
        
        tries = 0
        
        while (tries < 200):
            if GPIO.input(25):
                print("Open")
            else:
                print ("Close")
            time.sleep(0.5)
            tries = tries + 1
        
        #GPIO.cleanup()           # clean up GPIO on normal exit
        
        

        2 - Execute with “python button.py”

        3 - Test your button.

        M J 3 Replies Last reply Reply Quote 1
        • M
          Mar @istepgueu last edited by

          @istepgueu thanks, ive done this and its working properly and registers all my clicks.

          1 Reply Last reply Reply Quote 0
          • M
            Mar @istepgueu last edited by

            @istepgueu im assuming the following would just send out a test broadcast that the pm2 logs can see? It sees the notifications from all the other modules i.e CALENDA_EVENTS etc… when they happen.

            {
                                module: 'MMM-Buttons',
                                config: {
                                    buttons: [
                                        {
                                            pin: 5,
                                            name: "TEST",
                                            shortPress: {
                                                notification: "TEST_ACTION",
                                                payload: {action: "ACTIONON"}
                                            },
                                            longPress: undefined
                                        }
                                    ]
                                }
                            },
            
            1 Reply Last reply Reply Quote 0
            • J
              Jopyth Moderator @istepgueu last edited by

              @istepgueu Can I add the snippet and instructions to the readme?

              istepgueu 1 Reply Last reply Reply Quote 0
              • istepgueu
                istepgueu @Jopyth last edited by istepgueu

                @Jopyth Yes of course !

                M 1 Reply Last reply Reply Quote 1
                • M
                  Mar @istepgueu last edited by

                  @istepgueu So my button registers properly but its not sending out a notification at all. There are no errors and my mirror loads correctly. I’m using the pin5:test code above.

                  istepgueu 1 Reply Last reply Reply Quote 0
                  • istepgueu
                    istepgueu @Mar last edited by

                    @Mar you can you test with this code and capture log from firebug

                    {
                                    pin: 5,
                                    name: "power",
                                    longPress: {
                                        title: "Power off",
                                        message: "Keep pressed for 3 seconds to shut down",
                                        imageFA: "power-off",
                                        notification: "REMOTE_ACTION",
                                        payload: {action: "SHUTDOWN"}
                                    },
                                    shortPress: undefined
                                }
                    
                    M 1 Reply Last reply Reply Quote 0
                    • M
                      Mar @istepgueu last edited by

                      @istepgueu Alright now this is weird. I have my MM running via HDMI, and also opened it up in a Chrome tab on my laptop. When i press the buttong the inspector shows the log of the button and I get a popup on Chrome. But nothing is happening on the screen connected to the actual pi?

                      istepgueu 1 Reply Last reply Reply Quote 0
                      • istepgueu
                        istepgueu @Mar last edited by

                        @Mar I suppose you have try

                        pm2 restart mm
                        
                        M 1 Reply Last reply Reply Quote 0
                        • 1
                        • 2
                        • 3
                        • 1 / 3
                        • First post
                          Last post
                        Enjoying MagicMirror? Please consider a donation!
                        MagicMirror created by Michael Teeuw.
                        Forum managed by Paul-Vincent Roll and Rodrigo Ramírez Norambuena.
                        This forum is using NodeBB as its core | Contributors
                        Contact | Privacy Policy