diff --git a/source/_components/sensor.sensehat.markdown b/source/_components/sensor.sensehat.markdown new file mode 100644 index 00000000000..b4c1b377ca8 --- /dev/null +++ b/source/_components/sensor.sensehat.markdown @@ -0,0 +1,38 @@ +--- +layout: page +title: "Sense HAT" +description: "Instructions how to integrate Sense HAT within Home Assistant." +date: 2016-12-05 07:00 +sidebar: true +comments: false +sharing: true +footer: true +logo: sense-hat.png +ha_category: Sensor +ha_release: 0.35 +ha_iot_class: "Local Push" +--- + + +The `sensehat` sensor platform allows you to display information collected by a [Sense HAT](https://www.raspberrypi.org/products/sense-hat/) add-on board for Raspberry Pi. + +To add this platform to your installation, add the following to your `configuration.yaml` file: + +```yaml +# Example configuration.yaml entry +sensor: + - platform: sensehat + display_options: + - temperature + - humidity + - pressure +``` + +Configuration variables: + +- **display_options** (*Requires*) array: List of details to monitor. Defaults is `memory_free`. + - 'temperature' + - 'humidity' + - 'pressure' + + diff --git a/source/images/supported_brands/sense-hat.png b/source/images/supported_brands/sense-hat.png new file mode 100644 index 00000000000..de049bfa7e9 Binary files /dev/null and b/source/images/supported_brands/sense-hat.png differ