• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

[MMM-Buttons] Connect multiple buttons to send configurable notifications

Scheduled Pinned Locked Moved System
40 Posts 15 Posters 30.3k Views 14 Watching
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 Offline
    Mar @Jopyth
    last edited by Feb 7, 2017, 3:08 PM

    @Jopyth Thanks for the response, and that seems to make complete sense. I missed that part in the documentation.

    Though upon trying PINS 22/23 i am still getting the same result. The button.py program detects each individual click properly, but in the MM I have to double (sometimes triple) click the button so that it registers. I can see it registers as it shows up in the pm2 logs and my profile changes.

    Im not sure if its an issue with the buttons as they are a standard 4 pin button and the test script works fine with them?

    J 1 Reply Last reply Feb 7, 2017, 4:15 PM Reply Quote 1
    • J Offline
      Jopyth Moderator @Mar
      last edited by Jopyth Feb 7, 2017, 4:16 PM Feb 7, 2017, 4:15 PM

      @Mar Well its not, as if it were documented anywhere in my readme. :( Should probably add this somewhere.

      How long are you pressing the button? For a very short time? Note, that if the press is longer than 500ms it will not be registered as a (short) press (it is the maxShortPressTime and can be configured).

      If this is not the case, I am sorry, but I have no real idea how to fix it, without having the same situation on my Pi.

      Helpful sticky: How to troubleshoot

      M 3 Replies Last reply Feb 7, 2017, 4:18 PM Reply Quote 1
      • M Offline
        Mar @Jopyth
        last edited by Feb 7, 2017, 4:18 PM

        @Jopyth I thought this also, and set the short time from 0-1000ms and still will only register the second of a double click.

        Its very consistent though, i can get it to work 100% of the time with a double click like opening a folder on the computer. one click doesnt do anything, and I don’t believe the longPress worked at all (But i wasnt using it so not that bothered with it).

        Maybe its just the buttons…i just dont have anything else around that i could use to test as a button.

        1 Reply Last reply Reply Quote 0
        • M Offline
          Mar @Jopyth
          last edited by Feb 7, 2017, 4:26 PM

          @Jopyth Just tested with buttons ripped out from an old monitor and same issue, needed to double click. I suppose i will slowly go through the code and try break it down and see. any advice on which functions to start with?

          1 Reply Last reply Reply Quote 0
          • M Offline
            Mar @Jopyth
            last edited by Mar Feb 7, 2017, 4:35 PM Feb 7, 2017, 4:33 PM

            @Jopyth Fixed!! I switched the 1 and the 0 in the watchHandler function of node_helper.js and solved the issue. Must have been backwards with how the button was being interpreted vs set up?

            Put the 0 first, then 1.

            Now the double click makes sense, the time between the clicks seems to have been what was counted as a valid min press time.

            1 Reply Last reply Reply Quote 1
            • M Offline
              Mar
              last edited by Feb 7, 2017, 7:35 PM

              @Jopyth Anyway to use one button to switch between profiles? Trying to use profile switches classes and creating the same button on different profiles (classes) but it always runs both buttons so take me back to the default page.

              J 1 Reply Last reply Feb 8, 2017, 8:59 AM Reply Quote 0
              • J Offline
                Jopyth Moderator @Mar
                last edited by Jopyth Feb 8, 2017, 9:00 AM Feb 8, 2017, 8:59 AM

                @Mar Glad you got it work. :) Did you switch back to the default (regarding the 0 and 1)? Or is it now different than in the main code? Not yet possible to switch between multiple profiles. Could maybe be implemented as an array of notification definitions, instead of a single notification definition and then it cycles through these notifications on each press?

                Helpful sticky: How to troubleshoot

                M 1 Reply Last reply Feb 8, 2017, 1:30 PM Reply Quote 0
                • M Offline
                  Mar @Jopyth
                  last edited by Mar Feb 8, 2017, 1:30 PM Feb 8, 2017, 1:30 PM

                  @Jopyth No i had to switch the 1 and the 0 to make it work (0 first, then 1) so my code does differ slightly unfortunately. Suppose I’ll have to remember to manually make the change on updates unless it can be made a config option.
                  That could be a good option. We’d need a way for profile switcher to send over all unique profiles which would make it easy to do, rather than scrape the config file for “classes”.

                  edit: Though I suppose thinking about this not relying on another module would be much quicker fix.

                  1 Reply Last reply Reply Quote 0
                  • ? Offline
                    A Former User
                    last edited by yawns Feb 20, 2017, 10:31 AM Feb 8, 2017, 5:04 PM

                    What if I want to send an alert show display message when the GPIO port is ON? I mean, is not like a switch that closes the GPIO port, is when you programatically send an outoput GPIO signal to close (lets say a relay). Is there any changes necessary? I can´t make it happen.

                    {
                             module: 'MMM-Buttons',
                            config: {
                            buttons: [
                                    {
                                     pin: 17,
                                    name: "rele",
                                    longPress: {
                                                    title: "Rele longpress",
                                                    message: 'El rele esta siendo pulsado largo',
                                                    imageFA: 'power-off',
                                                    notification: 'SHOW_ALERT',
                                                    payload: {
                                                            type: 'notification',
                                                            title: 'Alerta rele pulsado largo'
                                                    }
                                            },
                                            shortPress:  {
                                                    title: "Rele shortress",
                                                    message: 'El rele esta siendo pulsado corto',
                                                   imageFA: 'power-on',
                                                    notification: 'SHOW_ALERT',
                                             payload: {
                                                          type: 'notification',
                                                            title: 'Alerta rele pulsado largo'
                                                 }
                    
                                            }
                    
                    
                                    }
                            ]
                                    } //del config
                    
                     },
                    
                    1 Reply Last reply Reply Quote 0
                    • P Offline
                      PointPubMedia
                      last edited by Feb 19, 2017, 8:01 PM

                      Anyone have an example of a switching profile using Buttons + ProfileSwitcher ?

                      M 1 Reply Last reply Feb 20, 2017, 11:22 AM Reply Quote 0
                      • 1
                      • 2
                      • 3
                      • 4
                      • 1 / 4
                      • First post
                        Last post
                      Enjoying MagicMirror? Please consider a donation!
                      MagicMirror created by Michael Teeuw.
                      Forum managed by Sam, technical setup by Karsten.
                      This forum is using NodeBB as its core | Contributors
                      Contact | Privacy Policy