1.7 KiB
title | description | ha_category | ha_iot_class | ha_release | ha_domain | ha_platforms | ha_integration_type | related | ha_quality_scale | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Sigfox | Display messages from Sigfox devices in Home Assistant. |
|
Cloud Polling | 0.68 | sigfox |
|
integration |
|
legacy |
SigFox {% term integration %} adding a sensor for each Sigfox device registered with your account. The default name of sensors is sigfox_{DEVICE_ID}
where DEVICE_ID
is the devices Sigfox ID. The state of an added Sigfox sensor is the payload of the last message published by that device. Additionally, there are attributes for the latitude and longitude coordinates of the device, as well as the signal-to-noise ratio (snr).
Setup
Note that your_api_login
and your_api_password
are your API access credentials which can be accessed by following:
- Log into Sigfox backend
- Select
GROUP
- Select
API ACCESS
- Click on
new
and create new access entry
Configuration
To use this {% term integration %}, add the following to your {% term "configuration.yaml
" %} file.
{% include integrations/restart_ha_after_config_inclusion.md %}
# Example configuration.yaml entry
sensor:
- platform: sigfox
api_login: your_api_login
api_password: your_api_password
{% configuration %} api_login: description: Your Sigfox API login. required: true type: string api_password: description: Your Sigfox API password. required: true type: string name: description: The name to prepend to the device ID. required: false default: "sigfox" type: string {% endconfiguration %}