mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-19 15:26:59 +00:00
documentation for the Minut Point (#7269)
* documentation for the Minut Point * Update source/_components/sensor.point.markdown Co-Authored-By: fredrike <fredrik.e@gmail.com> * Update source/_components/binary_sensor.point.markdown Co-Authored-By: fredrike <fredrik.e@gmail.com> * Update source/_components/binary_sensor.point.markdown Co-Authored-By: fredrike <fredrik.e@gmail.com> * Update source/_components/binary_sensor.point.markdown Co-Authored-By: fredrike <fredrik.e@gmail.com> * Update source/_components/point.markdown Co-Authored-By: fredrike <fredrik.e@gmail.com> * Update source/_components/point.markdown Co-Authored-By: fredrike <fredrik.e@gmail.com> * Update source/_components/sensor.point.markdown Co-Authored-By: fredrike <fredrik.e@gmail.com> * Added button_press and tamper * Update point.markdown, new configuration flow. * added ha_release * Update source/_components/point.markdown Co-Authored-By: fredrike <fredrik.e@gmail.com> * added configuration section * quote ha_release
This commit is contained in:
parent
f656af4786
commit
683b3538e2
35
source/_components/binary_sensor.point.markdown
Normal file
35
source/_components/binary_sensor.point.markdown
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
---
|
||||||
|
layout: page
|
||||||
|
title: "Minut Point Binary Sensor"
|
||||||
|
description: "Access your Minut Point Events as binary sensors."
|
||||||
|
date: 2018-11-19
|
||||||
|
sidebar: true
|
||||||
|
comments: false
|
||||||
|
sharing: true
|
||||||
|
footer: true
|
||||||
|
logo: minut.svg
|
||||||
|
ha_category: Binary Sensor
|
||||||
|
ha_release: "0.83"
|
||||||
|
ha_iot_class: "Cloud Push"
|
||||||
|
ha_qa_scale: silver
|
||||||
|
---
|
||||||
|
|
||||||
|
Each Point exposes the following binary sensors:
|
||||||
|
|
||||||
|
- **battery**: `On` means low, `Off` means normal
|
||||||
|
- **button_press**: `On` means the button was pressed, `Off` means normal
|
||||||
|
- **cold**: `On` means cold, `Off` means normal
|
||||||
|
- **connectivity**: `On` means connected, `Off` means disconnected
|
||||||
|
- **dry**: `On` means too dry, `Off` means normal
|
||||||
|
- **heat**: `On` means hot, `Off` means normal
|
||||||
|
- **light**: `On` means light detected, `Off` means no light
|
||||||
|
- **moisture**: `On` means moisture detected (wet), `Off` means no moisture (dry)
|
||||||
|
- **motion**: `On` means motion detected, `Off` means no motion (clear)
|
||||||
|
- **sound**: `On` means sound detected, `Off` means no sound (clear)
|
||||||
|
- **tamper**: `On` means the point was removed or attached
|
||||||
|
|
||||||
|
For installation instructions, see [the Point component](/components/point/).
|
||||||
|
|
||||||
|
<p class='note'>
|
||||||
|
The events sent from the Point is also sent as a webhook back to Home Assistant with `event_type` as `point_webhook_received`, please consider the documentation for the [IFTT](https://www.home-assistant.io/components/ifttt/) component on how to write automations for webhooks.
|
||||||
|
</p>
|
45
source/_components/point.markdown
Normal file
45
source/_components/point.markdown
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
---
|
||||||
|
layout: page
|
||||||
|
title: "Minut Point"
|
||||||
|
description: "Instructions on how to integrate Minut Point into Home Assistant."
|
||||||
|
date: 2018-11-19
|
||||||
|
sidebar: true
|
||||||
|
comments: false
|
||||||
|
sharing: true
|
||||||
|
footer: true
|
||||||
|
logo: minut.svg
|
||||||
|
ha_category: Hub
|
||||||
|
featured: true
|
||||||
|
ha_release: "0.83"
|
||||||
|
ha_iot_class: "Cloud Polling"
|
||||||
|
ha_qa_scale: silver
|
||||||
|
---
|
||||||
|
|
||||||
|
The Point component is the main component to integrate the [Minut Point](https://minut.se/). To connect Point, you will have to [sign up for a developer account](https://minut.com/community/developers/) and get a `client_id` and `client_secret` using the `callback url` as `base_url` + `/api/minut` eg. `http://localhost:8123/api/minut`. The `client_id` and `client_secret` should be used as below.
|
||||||
|
|
||||||
|
Once Home Assistant is started, a configurator will pop up asking you to Authenticate your Point account via a link when you follow the link and have clicked on **Accept** you will be redirected to the `callback url` and the Point integration will be automatically configured and you can go back to the original dialog and press **Submit**.
|
||||||
|
|
||||||
|
### {% linkable_title Configuration %}
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# Example configuration.yaml entry
|
||||||
|
point:
|
||||||
|
client_id: CLIENT_ID
|
||||||
|
client_secret: CLIENT_SECRET
|
||||||
|
```
|
||||||
|
|
||||||
|
{% configuration %}
|
||||||
|
client_id:
|
||||||
|
description: Your Minut Point developer client ID.
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
client_secret:
|
||||||
|
description: Your Minut Point developer client secret.
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
{% endconfiguration %}
|
||||||
|
|
||||||
|
<p class='note'>
|
||||||
|
The Point is just active occasionally so the sensors are only updated every hour or so.
|
||||||
|
The events sent from the Point is sent as a webhook back to Home Assistant with `event_type` as `point_webhook_received`, please consider the documentation for the [IFTT](https://www.home-assistant.io/components/ifttt/) component on how to write automations for webhooks.
|
||||||
|
</p>
|
29
source/_components/sensor.point.markdown
Normal file
29
source/_components/sensor.point.markdown
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
---
|
||||||
|
layout: page
|
||||||
|
title: "Minut Point Sensor"
|
||||||
|
description: "Access your Minut Point Sensors."
|
||||||
|
date: 2018-11-19
|
||||||
|
sidebar: true
|
||||||
|
comments: false
|
||||||
|
sharing: true
|
||||||
|
footer: true
|
||||||
|
logo: minut.svg
|
||||||
|
ha_category: Sensor
|
||||||
|
ha_release: "0.83"
|
||||||
|
ha_iot_class: "Cloud Polling"
|
||||||
|
ha_qa_scale: silver
|
||||||
|
---
|
||||||
|
|
||||||
|
Each Point exposes the following sensors:
|
||||||
|
|
||||||
|
- **temperature**: Temperature in °C.
|
||||||
|
- **humidity**: Percentage of humidity in the air.
|
||||||
|
- **pressure**: Pressure in hPa.
|
||||||
|
- **sound_level**: Sound level in dBa.
|
||||||
|
|
||||||
|
|
||||||
|
For installation instructions, see [the Point component](/components/point/).
|
||||||
|
|
||||||
|
<p class='note'>
|
||||||
|
The Point is just active occasionally so the sensors are only updated every hour or so.
|
||||||
|
</p>
|
1
source/images/supported_brands/minut.svg
Normal file
1
source/images/supported_brands/minut.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="123" height="54" viewBox="0 -0.555 123 54" overflow="visible"><path fill="#0F6497" d="M12.771 26.642l7.398-12.849c.104-.129.279-.337.525-.623.247-.286.629-.429 1.149-.429h2.647c.286 0 .532.104.74.312.208.208.311.454.311.74v25.153c0 .286-.104.531-.311.739a1.012 1.012 0 0 1-.74.312h-3.154a1.01 1.01 0 0 1-.74-.312 1.008 1.008 0 0 1-.312-.739V23.722l-5.062 8.761c-.13.207-.312.422-.545.643-.234.221-.532.331-.896.331h-2.025c-.363 0-.662-.11-.895-.331a3.33 3.33 0 0 1-.545-.643l-5.062-8.761v15.225c0 .286-.104.531-.312.739a1.012 1.012 0 0 1-.74.312h-3.15c-.286 0-.533-.104-.74-.312a1.01 1.01 0 0 1-.312-.74V13.793c0-.286.104-.532.312-.74a1.01 1.01 0 0 1 .74-.312h2.647c.519 0 .902.143 1.149.429.246.286.421.494.525.623l7.398 12.849zm21.61 13.355a1.01 1.01 0 0 1-.74-.312 1.006 1.006 0 0 1-.312-.739V13.793c0-.286.104-.532.312-.74a1.01 1.01 0 0 1 .74-.312h3.154c.285 0 .532.104.74.312.208.208.312.454.312.74v25.153c0 .286-.104.532-.312.739a1.012 1.012 0 0 1-.74.312h-3.154zm29.67 0c-.441 0-.779-.116-1.013-.35a6.895 6.895 0 0 1-.506-.546L51.629 22.904v16.042c0 .286-.104.532-.311.739a1.012 1.012 0 0 1-.74.312h-3.154a1.01 1.01 0 0 1-.74-.312 1.006 1.006 0 0 1-.312-.739V13.793c0-.286.104-.532.312-.74a1.01 1.01 0 0 1 .74-.312h2.726c.44 0 .778.117 1.012.35.234.234.402.416.506.545L62.57 29.834V13.793c0-.286.104-.532.312-.74.208-.208.453-.312.74-.312h3.154c.284 0 .531.104.74.312.207.208.311.454.311.74v25.153c0 .286-.104.532-.311.739a1.015 1.015 0 0 1-.74.312h-2.725zm31.888-27.255c.285 0 .531.104.74.312.207.208.312.455.312.74v15.964c0 1.61-.234 3.063-.701 4.361-.468 1.299-1.168 2.415-2.104 3.349-.934.935-2.102 1.654-3.503 2.16-1.402.506-3.024.76-4.868.76-1.869 0-3.498-.254-4.886-.76-1.39-.506-2.552-1.226-3.484-2.16a8.726 8.726 0 0 1-2.084-3.349c-.455-1.297-.682-2.751-.682-4.361V13.793c0-.285.104-.532.312-.74.208-.208.453-.312.74-.312h3.153c.286 0 .532.104.74.312s.312.455.312.74v15.769c0 1.065.143 1.974.429 2.726.285.753.687 1.37 1.207 1.85a4.71 4.71 0 0 0 1.868 1.051 8.135 8.135 0 0 0 2.375.332c.857 0 1.655-.111 2.396-.332.74-.22 1.368-.57 1.888-1.051.52-.48.928-1.096 1.227-1.85.298-.752.447-1.66.447-2.726V13.793c0-.285.104-.532.312-.74.207-.208.454-.312.739-.312h3.115zm26.009 0c.286 0 .532.104.74.312s.312.454.312.739v2.765c0 .286-.104.532-.312.74a1.01 1.01 0 0 1-.74.311h-7.008v21.338c0 .286-.104.531-.312.739s-.455.312-.739.312h-3.155c-.285 0-.532-.104-.739-.312a1.004 1.004 0 0 1-.312-.739V17.608h-7.008c-.287 0-.533-.103-.74-.311a1.006 1.006 0 0 1-.312-.74v-2.765c0-.285.103-.532.312-.74.207-.208.453-.312.74-.312h19.273zM35.962 46.755c1.666 0 2.97 1.26 2.97 2.971 0 1.71-1.305 3.016-2.97 3.016-1.666 0-3.016-1.396-3.016-3.016.001-1.622 1.35-2.971 3.016-2.971m0-46.755c1.666 0 2.97 1.26 2.97 2.971 0 1.71-1.305 3.016-2.97 3.016-1.666 0-3.016-1.396-3.016-3.016C32.947 1.35 34.296 0 35.962 0"/></svg>
|
After Width: | Height: | Size: 2.8 KiB |
Loading…
x
Reference in New Issue
Block a user