home-assistant.io/source/_components/sensor.sigfox.markdown
Emacee f53128b925 Update sensor.sigfox.markdown (#7506)
Change IoT Class to Cloud Polling as it is using the Sigfox API.
2018-11-15 09:25:06 +01:00

1.6 KiB

layout title description date sidebar comments sharing footer logo ha_category ha_iot_class ha_release
page Sigfox Sensor Display messages from Sigfox devices in Home Assistant. 2018-04-07 12:10 true false true true sigfox.png Sensor Cloud Polling 0.68

SigFox component 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).

{% linkable_title Setup %}

Note that your_api_login and your_api_password are your API access credentials which can be accessed by following:

  1. Log into Sigfox backend
  2. Select GROUP
  3. Select API ACCESS
  4. Click on new and create new access entry

{% linkable_title Configuration %}

To use this sensor, add the following to your configuration.yaml file:

# 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 %}