Integration with Minut Point?

Hi to all,
after 110 version manual alarm panel configuration option pending_time is renamed to arming_time.

Is there a possibility to chance it also on minut point alarm panel?

Thanks in avance,

Alessandro

where u see ā€œpending_timeā€ on minut ?

Just recieved this from point.

Pro subscription needed for api-access. How will this affect this integration?

I would guess that the integration would stop working if you are not following the pro plan.

"The API is available for users with a Minut Pro subscription. " :rage:

Markus from Minut assured me that the original Kickstarter backers still have access to the API without a Pro subscription.

1 Like

This still donā€™t work for meā€¦
Waiting for some ha updates but didnā€™t work.
Someone has an idea?

Hi,
iā€™ve tried to make an automation like this:

- alias: Interfono per pranzo - cena pronti
  trigger:
  - platform: state
    entity_id: binary_sensor.taverna_button_press
    to: "on"
  condition:
  - condition: state
    entity_id: group.famiglia
    state: 'home'
  action:
  - service: script.my_notify
    data:
      call_no_annuncio: 1
      no_show: 1
      alexa:
        message_tts: "Pulsante premuto"
        media_player: media_player.echo_dot_di_alessandro
        audio: >
          <audio src="soundbank://soundlibrary/alarms/chimes_and_bells/chimes_bells_11"/>

but no triggered.
Is it possibile to use binary sensor button press or is it necessary Pro subscription?
Thank you in advance,

Alessandro

In case anyone is still interested in the motion sensor, I managed to get it working by adding:

    "motion": ( # pir_motion when motion detected
        "pir_motion", ""
    )

to binary_sensor.py.

1 Like

Could you show a diff of exactly what youā€™ve done to binary_sensor.py so we can add it to the HA-code.

Iā€™ve set up a pull request: https://github.com/home-assistant/core/pull/45865

1 Like

Where is .py file?

About point button.
Does press button binary sensor goes to on?
I donā€™t manage to make any automation because this entity doesnā€™t go to ā€œonā€

Mimut app works as it should.
Any ideas?

Regards,

Alessandro

Hi,
is there a possibility to use minut point sensor withouot pro subcription?
My sensor is unavailable in Hassio.
Regards,

Alessandro

No, I do not think it is possible without a pro subscription.

Ty for reply Fredrike.
Incredible how to make a great sensor unusable.

Regards,

Alessandro

I can confirm the above guide for integrating the Minut Points as of August 2021, 2021.8.3, is still working fine.
Be aware, I followed these steps in Microsoft Edge, as described by @Jorgensen, since it did not work in Google Chrome!!

Hi, Iā€™ve received an email from Minut making me aware that the current API version v1 will be retired on October 15th and subsequent requests using the v1 api will fail. They provide the docs for v5 which is at Minut Developer Documentation. Does anybody know whether the current Minut Point HA core implemention needs to be updated?

Iā€™ll take a look at it.

It seems that I just need to change version number in these lines: https://github.com/fredrike/pypoint/blob/f40229445281d4bea472aafaff317c2dcde21cd8/pypoint/init.py#L15-L19. But will make some additional tests.

1 Like

Thanks Frederik, let me know if you want me to help with testing.

While youā€™re at it could you please fix the callback url when configuring the Minut Point integration and remove the extra ā€œ/ā€ just before the query parameter. For example:

Not working : http://homeassistant.local:8123/api/minut/?code=
Working : http://homeassistant.local:8123/api/minut?code=

Iā€™ve also confirmed that with the v1 api the integration configuration no longer works, you get the standard login screen as opposed to the authorization screen with the v5 api. So changing the version number to v5 should work.

You may also want to review the webhook api url which is no longer in draft.

1 Like