diff --git a/Rakefile b/Rakefile index dc17981edbf..9dba571e0dd 100644 --- a/Rakefile +++ b/Rakefile @@ -33,6 +33,8 @@ task :generate do abort("Generating CSS failed") unless success success = system "rake analytics_data" abort("Generating analytics data failed") unless success + success = system "rake blueprint_exchange_data" + abort("Generating blueprint exchange data failed") unless success success = system "jekyll build" abort("Generating site failed") unless success if ENV["CONTEXT"] != 'production' @@ -68,7 +70,8 @@ task :preview, :listen do |t, args| puts "Starting to watch source with Jekyll and Compass." puts "Now listening on http://localhost:#{server_port}" system "compass compile --css-dir #{source_dir}/stylesheets" unless File.exist?("#{source_dir}/stylesheets/screen.css") - success = system "rake analytics_data" + system "rake analytics_data" + system "rake blueprint_exchange_data" jekyllPid = Process.spawn({"OCTOPRESS_ENV"=>"preview"}, "jekyll build -t --watch --incremental") compassPid = Process.spawn("compass watch") rackupPid = Process.spawn("rackup --port #{server_port} --host #{listen_addr}") @@ -184,7 +187,17 @@ task :analytics_data do File.open("#{source_dir}/_data/analytics_data.json", "w") do |file| file.write(JSON.generate(remote_data[last_entry])) end +end +desc "Download data from the blueprint exchange @ community.home-assistant.io" +task :blueprint_exchange_data do + uri = URI('https://community.home-assistant.io/c/blueprints-exchange/53/l/top/all.json') + + remote_data = JSON.parse(Net::HTTP.get(uri)) + + File.open("#{source_dir}/_data/blueprint_exchange_data.json", "w") do |file| + file.write(JSON.generate(remote_data['topic_list']['topics'])) + end end def get_stdin(message) diff --git a/_config.yml b/_config.yml index c0355bb85f6..f8e49ab6133 100644 --- a/_config.yml +++ b/_config.yml @@ -66,7 +66,7 @@ titlecase: true # Converts page and post titles to titlecase collections: integrations: output: true - cookbook: + examples: output: true docs: output: true diff --git a/package.json b/package.json index c2e70cc6b4f..72bdfc121a5 100644 --- a/package.json +++ b/package.json @@ -20,6 +20,6 @@ "scripts": { "markdown:lint": "remark --quiet --frail .", "textlint:all": "textlint source", - "textlint": "textlint source/_cookbook source/_docs source/_faq source/_integrations source/_lovelace source/cloud source/getting-started source/hassio source/lovelace" + "textlint": "textlint source/_examples source/_docs source/_faq source/_integrations source/_lovelace source/cloud source/getting-started source/hassio source/lovelace" } } \ No newline at end of file diff --git a/source/_cookbook/automation_enocean_phue.markdown b/source/_cookbook/automation_enocean_phue.markdown deleted file mode 100644 index 2d5f60b6436..00000000000 --- a/source/_cookbook/automation_enocean_phue.markdown +++ /dev/null @@ -1,50 +0,0 @@ ---- -title: "Switch Philips Hue with enocean" -description: "Automation to switch a Philips Hue lamp with an enocean switch." -ha_category: Automation Examples ---- - -Assume that you have an enocean wall switch and some Philips Hue lamps. The enocean wall switch will fire the event button_pressed and pass along several parameters which is used to turn on/off the lamps. - -event_data: - -* which -* pushed -* onoff -* id -* devname - -```yaml -enocean: - device: /dev/ttyUSB0 - -binary_sensor: - - platform: enocean - id: [0x00,0x01,0x02,0x03] - name: living_room_switch - -automation: - - alias: "Turn on living room light" - trigger: - platform: event - event_type: button_pressed - event_data: - onoff: 1 - devname: living_room_switch - action: - service: light.turn_on - target: - entity_id: light.hue_color_lamp_3 - - - alias: "Turn off living room light" - trigger: - platform: event - event_type: button_pressed - event_data: - onoff: 0 - devname: living_room_switch - action: - service: light.turn_off - target: - entity_id: light.hue_color_lamp_3 -``` diff --git a/source/_cookbook/automation_first_light.markdown b/source/_cookbook/automation_first_light.markdown deleted file mode 100644 index e31a5db69ea..00000000000 --- a/source/_cookbook/automation_first_light.markdown +++ /dev/null @@ -1,121 +0,0 @@ ---- -title: "Examples using first light" -description: "Automation examples that trigger lights in the morning." -ha_category: Automation Examples ---- - -#### Create an input_boolean - -```yaml -input_boolean: - trigger_first_morning: - name: Waiting for first morning motion - icon: mdi:kettle -``` - -#### The Main Automation - -{% raw %} - -```yaml -## These first two control t input_boolean that allows the "first morning action" to occur -## If the action is triggered, it will also disable this boolean. This assumes you have the sun platform enabled. - -automation: -#turns it on at 5am - - alias: "Enable First Morning Trigger" - trigger: - - platform: time - at: "05:00:00" - action: - service: homeassistant.turn_on - target: - entity_id: input_boolean.trigger_first_morning - -# turns it off an hour after sunrise - - alias: "Disable First Morning Trigger" - trigger: - - platform: sun - event: sunrise - offset: "01:00:00" - action: - service: homeassistant.turn_off - target: - entity_id: input_boolean.trigger_first_morning - - - -# This is the main automation. It triggers when my motion sensor is triggered -# (in this case, a motion sensor from a security system attached to my Vera) - - alias: "First Morning Motion" - trigger: - platform: state - entity_id: binary_sensor.livingroom_motion - to: "on" - # only complete the automation if we're still waiting for the first motion - condition: - condition: state - entity_id: input_boolean.trigger_first_morning - state: "on" - - action: - # turn off the "waiting" boolean regardless of whether lights will turn on - # so that this happens only once - - service: homeassistant.turn_off - target: - entity_id: input_boolean.trigger_first_morning - - # But only turn on lights if the living room and kitchen lights are off or dimmed - # If a condition tests false, the automation will end - - condition: and - conditions: - - condition: numeric_state - entity_id: light.livingroom_ec - # if light is off, force a 0, otherwise use the brightness value - value_template: '{% if is_state('light.livingroom_ec', 'on') %}{{ state_attr('light.livingroom_ec', 'brightness') }}{% else %}0{% endif %}' - # brightness below 50% (255 = 100%) - below: 128 - - condition: numeric_state - entity_id: light.kitchen_bar - value_template: '{% if is_state('light.kitchen_bar', 'on') %}{{ state_attr('light.kitchen_bar', 'brightness') }}{% else %}0{% endif %}' - below: 128 - - condition: numeric_state - entity_id: light.kitchen_ceiling - value_template: '{% if is_state('light.kitchen_ceiling', 'on') %}{{ state_attr('light.kitchen_ceiling', 'brightness') }}{% else %}0{% endif %}' - below: 128 - - # Trigger a scene - # You could add as many services or scenes as you'd like - - service: scene.turn_on - target: - entity_id: scene.morning_first_motion -``` - -{% endraw %} - -#### The Scene - -Here is the Scene that is called via the Automations above. - -```yaml -# here's the scene that gets called. Lights in -# my living room and kitchen turn on. -scene: - - name: Morning First Motion - entities: - light.kitchen_ceiling: - state: on - brightness: 127 - light.kitchen_bar: - state: on - brightness: 178 - light.kitchen_above_cabinet: - state: on - brightness: 178 - light.livingroom_ec: - state: on - brightness: 153 - light.livingroom_track: - state: on - brightness: 153 -``` diff --git a/source/_cookbook/automation_flashing_lights.markdown b/source/_cookbook/automation_flashing_lights.markdown deleted file mode 100644 index 1ecce435d1d..00000000000 --- a/source/_cookbook/automation_flashing_lights.markdown +++ /dev/null @@ -1,113 +0,0 @@ ---- -title: "Examples for flashing lights" -description: "Automation examples for flashing lights in case of an alarm." -ha_category: Automation Examples ---- - -#### Flashing lights triggered by an alarm - -For flashing regular lights in case an alarm is triggered. - -```yaml -# AlmAct1 - switch to activate the alarm in Room1 -# AlmSnd1 - switch for a buzzer - -automation: -- alias: "Alarm_PIR_Room1" - trigger: - platform: state - entity_id: binary_sensor.PIR1 - to: "on" - condition: - - condition: state - entity_id: switch.AlmAct1 - state: "on" - - condition: state - entity_id: script.alarm_room1 - state: "off" - action: - # start alarm on movement if alarm activated - # and the alarm is not triggered - service: script.turn_on - target: - entity_id: script.alarm_room1 - -- alias: "flash_room1_start" - trigger: - platform: state - entity_id: switch.AlmSnd1 - to: "on" - action: - service: script.turn_on - target: - entity_id: script.flash_room1 - -- alias: "flash_room1_stop" - trigger: - platform: state - entity_id: switch.REL1 - to: "off" - condition: - condition: state - entity_id: switch.AlmSnd1 - state: "off" - action: - service: script.turn_off - target: - entity_id: script.flash_room1 - -script: - alarm_room1: - alias: "Alarm room1" - sequence: - - alias: "Alarm Room1 Start" - service: homeassistant.turn_on - target: - entity_id: switch.AlmSnd1 - - alias: "Set Ack Room1" - service: homeassistant.turn_on - target: - entity_id: input_boolean.ack1 - - alias: "email_Room1" - service: notify.email - data: - message: "Movement alarm in Room1" - - delay: - # time interval for alarm sound and light flashing - seconds: 60 - - alias: "Alarm Room1 Stop" - service: homeassistant.turn_off - target: - entity_id: switch.AlmSnd1 - - flash_room1: - alias: "Flash Room1 On" - sequence: - - alias: "Light Room1 On" - service: homeassistant.turn_on - target: - entity_id: switch.REL1 - - delay: - # time for flash light on - seconds: 1 - - alias: "Light Room1 Off" - service: homeassistant.turn_off - target: - entity_id: switch.REL1 - - alias: "loop_room1" - service: script.turn_on - target: - entity_id: script.flash_loop - - flash_loop: - alias: "Flash loop" - sequence: - - delay: - # time for flash light off - seconds: 1 - - alias: "loop_room1" - service: script.turn_on - target: - entity_id: script.flash_room1 -``` - diff --git a/source/_cookbook/automation_for_rainy_days.markdown b/source/_cookbook/automation_for_rainy_days.markdown deleted file mode 100644 index 4a481e30015..00000000000 --- a/source/_cookbook/automation_for_rainy_days.markdown +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: "Automation for rainy days" -description: "Basic example how to use weather conditions to set states" -ha_category: Automation Examples ---- - -This requires a [Dark Sky](/integrations/darksky) sensor with the condition `precip_intensity` that tells if it's raining or not. You could also experiment with other attributes such as `cloud_cover`. - -Turn on a light in the living room when it starts raining, someone is home, and it's afternoon or later. - -```yaml -automation: - - alias: "Rainy Day" - trigger: - - platform: state - entity_id: sensor.precip_intensity - to: "rain" - condition: - - condition: state - entity_id: all - state: "home" - - condition: time - after: "14:00" - before: "23:00" - action: - service: light.turn_on - target: - entity_id: light.couch_lamp -``` - -And then of course turn off the lamp when it stops raining but only if it's within an hour before sunset. - -```yaml - - alias: "Rain is over" - trigger: - - platform: state - entity_id: sensor.precip_intensity - to: "None" - condition: - - condition: sun - after: "sunset" - after_offset: "-01:00:00" - action: - service: light.turn_off - target: - entity_id: light.couch_lamp -``` - diff --git a/source/_cookbook/automation_sun.markdown b/source/_cookbook/automation_sun.markdown deleted file mode 100644 index 959a580de4d..00000000000 --- a/source/_cookbook/automation_sun.markdown +++ /dev/null @@ -1,110 +0,0 @@ ---- -title: "Examples using the sun" -description: "Automation examples that use the sun." -ha_category: Automation Examples ---- - -#### Turn on the living room lights 45 minutes before sunset if anyone is at home - -```yaml -automation: - trigger: - platform: sun - event: sunset - offset: "-00:45:00" - condition: - condition: state - entity_id: all - state: home - action: - service: light.turn_on - target: - entity_id: group.living_room_lights -``` - -#### Natural wake up light - -_Note, Philips Hue and LIFX are currently the only light platforms that support transitions._ - -```yaml -automation: - trigger: - platform: time - at: "07:15:00" - action: - service: light.turn_on - target: - entity_id: light.bedroom - data: - # 900 seconds = 15 minutes - transition: 900 -``` - -#### Send sun rise/sun set notifications - -Send notifications through [PushBullet](/integrations/pushbullet) when the sun state is changed. - -```yaml -automation: - - alias: "Send notification when sun rises" - trigger: - platform: sun - event: sunrise - offset: "+00:00:00" - action: - service: notify.pushbullet - data: - message: "The sun is up." - - alias: "Send notification when sun sets" - trigger: - platform: sun - event: sunset - offset: "+00:00:00" - action: - service: notify.pushbullet - data: - message: "The sun is down." -``` - -#### Automations for lights and blinds based on solar elevation - -Solar elevation automations can cope with offsets from sunset / sunrise as the seasons change better than using a time based offsets. - -{% raw %} - -```yaml -- alias: "Turn a few lights on when the sun gets dim" - trigger: - platform: numeric_state - entity_id: sun.sun - value_template: "{{ state_attr('sun.sun', 'elevation') }}" - below: 3.5 - action: - service: scene.turn_on - target: - entity_id: scene.background_lights - -- alias: "Turn more lights on as the sun gets dimmer" - trigger: - platform: numeric_state - entity_id: sun.sun - value_template: "{{ state_attr('sun.sun', 'elevation') }}" - below: 1.5 - action: - service: scene.turn_on - target: - entity_id: scene.more_lights - -- alias: "Close blind at dusk" - trigger: - platform: numeric_state - entity_id: sun.sun - value_template: "{{ state_attr('sun.sun', 'elevation') }}" - below: -2.5 - action: - service: switch.turn_off - target: - entity_id: switch.blind -``` - -{% endraw %} \ No newline at end of file diff --git a/source/_cookbook/automation_telegram_presence_alert.markdown b/source/_cookbook/automation_telegram_presence_alert.markdown deleted file mode 100644 index e8ceeb7ba10..00000000000 --- a/source/_cookbook/automation_telegram_presence_alert.markdown +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: "Examples sending notification depending of the presence" -description: "Examples sending notification depending of the presence" -ha_category: Automation Examples ---- - -This will send a message when someone in your known devices list connects to your local network. In other words, when someone arrives home. It will only work if you are using the [Nmap](/integrations/nmap_tracker) device tracker or a similar integration. - -This example uses [Telegram](/integrations/telegram) to send the notification. - -```yaml -notify: - - name: Telegram - platform: telegram - api_key: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx - chat_id: xxxxxxxxx -``` - -Add the automation rule. Change `device_name_here` to match the device you want to track. - -```yaml -automation: - trigger: - platform: state - entity_id: device_tracker.device_name_here - from: "not_home" - to: "home" - action: - service: notify.Telegram - data: - message: "Person is now home" -``` diff --git a/source/_cookbook/automation_using_timeinterval_inputboolean.markdown b/source/_cookbook/automation_using_timeinterval_inputboolean.markdown deleted file mode 100644 index 070399ddded..00000000000 --- a/source/_cookbook/automation_using_timeinterval_inputboolean.markdown +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: "Using time interval and input boolean" -description: "Automation to get a random color every 2 minutes that can be turned on/off." -ha_category: Automation Examples ---- - -#### Change Hue light on interval to random color based on state of an input boolean - -_Note, Philips Hue is currently the only light platform that support the random effect._ - -```yaml -input_boolean: - loop_livingcolors: - name: Loop LivingColors - initial: off - icon: mdi:spotlight - -automation: -# Changes Hue light every two minutes to random color if input boolean is set to on -- alias: "Set LivingColors to random color" - trigger: - platform: time_pattern - minutes: "/2" - condition: - condition: state - entity_id: input_boolean.loop_livingcolors - state: "on" - action: - service: light.turn_on - target: - entity_id: light.woonkamer_livingcolors - data: - effect: random - transition: 5 - brightness: 255 -``` diff --git a/source/_cookbook/dim_and_brighten_lights.markdown b/source/_cookbook/dim_and_brighten_lights.markdown deleted file mode 100644 index 160d30db7b6..00000000000 --- a/source/_cookbook/dim_and_brighten_lights.markdown +++ /dev/null @@ -1,151 +0,0 @@ ---- -title: "Dim (and brighten) lights via a remote" -description: "The scripts and automations to allow you to use a remote to dim and brighten a light" -ha_category: Automation Examples ---- - -This requires both a dimmable light, and a Z-Wave remote control that sends one scene when a button is held, and another when released. This ensures that the scripts (which follow) are stopped, avoiding the risks of a script that never ends. - -In the following automations, replace `zwave.YOUR_REMOTE` with the actual entity ID of your controller, and `light.YOUR_LIGHT` with the actual entity ID of your light. - -For the controller this was written for scene ID 13 was sent when the up button was held, and 15 when released. Similarly, scene 14 when the down button was held, and 16 when released. You'll need to use the scene IDs that are sent by your remote if different. - -```yaml -automation: - - - alias: "Make the lights go bright" - initial_state: "on" - trigger: - - platform: event - event_type: zwave.scene_activated - event_data: - scene_id: 13 - entity_id: zwave.YOUR_REMOTE - action: - - service: script.turn_on - target: - entity_id: script.ramp_light - data: - variables: - direction: up - light: light.YOUR_LIGHT - - - alias: "Make the lights go dim" - initial_state: "on" - trigger: - - platform: event - event_type: zwave.scene_activated - event_data: - scene_id: 14 - entity_id: zwave.YOUR_REMOTE - action: - - service: script.turn_on - target: - entity_id: script.ramp_light - data: - variables: - direction: down - light: light.YOUR_LIGHT - - - alias: "Stop the light just there" - initial_state: "on" - trigger: - - platform: event - event_type: zwave.scene_activated - event_data: - scene_id: 15 - entity_id: zwave.YOUR_REMOTE - - platform: event - event_type: zwave.scene_activated - event_data: - scene_id: 16 - entity_id: zwave.YOUR_REMOTE - action: - - service: script.turn_off - target: - entity_id: script.ramp_light -``` - -There are two variables that control the speed of the change for the script below. The first is the step -- small steps create a smooth transition. The second is the delay -- larger delays will create a slower transition. -Please note that some lights do not update their new brightness attribute very quickly, so make sure to use a large enough delay for your particular light. - -There are two other variables that control the minimum and maximum brightness levels at which to stop the script. - -To allow flexibility all four variables are controlled by [Input Number](/integrations/input_number/) entities so that it's easy to tune (or manage through an automation). - -```yaml -input_number: - light_step: - name: "Step the lights this much" - initial: 20 - min: 1 - max: 64 - step: 1 - - light_minimum: - name: "No dimmer than this" - initial: 5 - min: 1 - max: 255 - step: 1 - - light_maximum: - name: "No brighter than this" - initial: 255 - min: 50 - max: 255 - step: 1 - - light_delay_ms: - name: "Step the lights this often (ms)" - initial: 500 - min: 100 - max: 5000 - step: 100 -``` - -Now the script. - -{% raw %} -```yaml -script: - ramp_light: - alias: "Ramp Light Brightness" - description: Ramp light brightness up or down - fields: - direction: - description: "Direction to change brightness: up or down" - example: up - light: - description: Light entity_id - example: light.family_room_lamp - mode: restart - sequence: - - repeat: - while: - - condition: template - value_template: > - {% set br = state_attr(light, 'brightness')|int(0) %} - {% set mn = states('input_number.light_minimum')|int %} - {% set mx = states('input_number.light_maximum')|int %} - {{ direction == 'up' and br < mx or - direction == 'down' and br > mn }} - sequence: - - service: light.turn_on - target: - entity_id: "{{ light }}" - data: - brightness: > - {% set br = state_attr(light, 'brightness')|int(0) %} - {% set mn = states('input_number.light_minimum')|int %} - {% set mx = states('input_number.light_maximum')|int %} - {% set st = states('input_number.light_step')|int %} - {% if direction == 'up' %} - {{ [br + st, mx]|min }} - {% else %} - {{ [br - st, mn]|max }} - {% endif %} - - delay: - milliseconds: "{{ states('input_number.light_delay_ms')|int }}" -``` -{% endraw %} diff --git a/source/_cookbook/dim_lights_when_playing_media.markdown b/source/_cookbook/dim_lights_when_playing_media.markdown deleted file mode 100644 index 45231c140fc..00000000000 --- a/source/_cookbook/dim_lights_when_playing_media.markdown +++ /dev/null @@ -1,74 +0,0 @@ ---- -title: "Dim lights when playing media" -description: "Dim lights up or down when playing media" -ha_category: Automation Examples ---- - -Like it how the lights dim up/down at the movies? Do it at home as well! - -This example uses the [media player](/integrations/media_player/), [lights](/integrations/light/) (transitions) and the [sun](/integrations/sun/) integration. We'll use actions to detect media player state changes and [scenes](/integrations/scene/) to control multiple lights and transition between scenes. - -#### Scenes -One scene for normal light, one for when movies are on. A 2 second transition gives a nice 'feel' to the switch. - -```yaml -scene: - - name: Livingroom normal - entities: - light.light1: - state: on - transition: 2 - brightness_pct: 60 - light.light2: - state: on - transition: 2 - brightness_pct: 85 - - name: Livingroom dim - entities: - light.light1: - state: on - transition: 2 - brightness_pct: 30 - light.light2: - state: on - transition: 2 - brightness_pct: 55 -``` - - -#### Automation -The paused/stopped state is best matched using "from: 'playing'". Adding in the sun condition as we only want this when it's dark. - -```yaml -automation: - - alias: "Media player paused/stopped" - trigger: - - platform: state - entity_id: media_player.htpc - from: "playing" - to: "idle" - condition: - - condition: state - entity_id: sun.sun - state: "below_horizon" - action: - service: scene.turn_on - target: - entity_id: scene.livingroom_normal - - - alias: "Media player playing" - trigger: - - platform: state - entity_id: media_player.htpc - to: "playing" - from: "idle" - condition: - - condition: state - entity_id: sun.sun - state: "below_horizon" - action: - service: scene.turn_on - target: - entity_id: scene.livingroom_dim -``` - diff --git a/source/_cookbook/foscam_away_mode_PTZ.markdown b/source/_cookbook/foscam_away_mode_PTZ.markdown deleted file mode 100644 index 7cdaaffdc9a..00000000000 --- a/source/_cookbook/foscam_away_mode_PTZ.markdown +++ /dev/null @@ -1,81 +0,0 @@ ---- -title: "Foscam Recording during Away Mode Only using Pan/Tilt/Zoom Control and Motion Detection" -description: "Example of how to set Foscam to only have Motion Detection Recording while no one is home. When users are home the Foscam will indicate it is not recording by pointing down and away from users" -ha_category: Automation Examples ---- - -This requires a [Foscam IP Camera](/integrations/foscam) camera with PTZ (Pan, Tilt, Zoom) and CGI functionality ([Source](https://www.foscam.es/descarga/Foscam-IPCamera-CGI-User-Guide-AllPlatforms-2015.11.06.pdf)) - -Foscam Cameras can be controlled by Home Assistant through a number of CGI commands. -The following outlines examples of the switch, services, and scripts required to move between 2 preset destinations while controlling motion detection, but many other options of movement are provided in the Foscam CGI User Guide linked above. - -The `switch.foscam_motion` will control whether the motion detection is on or off. This switch supports `statecmd`, which checks the current state of motion detection. - -{% raw %} - -```yaml -# Replace admin and password with an "Admin" privileged Foscam user -# Replace ipaddress with the local IP address of your Foscam -switch: - platform: command_line - switches: - #Switch for Foscam Motion Detection - foscam_motion: - command_on: "curl -k --tls-max 1.2 "https://ipaddress:443/cgi-bin/CGIProxy.fcgi?cmd=setMotionDetectConfig&isEnable=1&usr=admin&pwd=password"" - command_off: 'curl -k --tls-max 1.2 "https://ipaddress:443/cgi-bin/CGIProxy.fcgi?cmd=setMotionDetectConfig&isEnable=0&usr=admin&pwd=password"' - command_state: 'curl -k --silent --tls-max 1.2 "https://ipaddress:443/cgi-bin/CGIProxy.fcgi?cmd=getMotionDetectConfig&usr=admin&pwd=password" | grep "isEnable" | cut -b 15' - value_template: '{{ value == "1" }}' -``` - -{% endraw %} - -The service `shell_command.foscam_turn_off` sets the camera to point down and away to indicate it is not recording, and `shell_command.foscam_turn_on` sets the camera to point where I'd like to record. Each of these services require preset points to be added to your camera. See source above for additional information. - -```yaml -shell_command: - #Created a preset point in Foscam Web Interface named Off which essentially points the camera down and away - foscam_turn_off: 'curl -k --tls-max 1.2 "https://ipaddress:443/cgi-bin/CGIProxy.fcgi?cmd=ptzGotoPresetPoint&name=Off&usr=admin&pwd=password"' - #Created a preset point in Foscam Web Interface named Main which points in the direction I would like to record - foscam_turn_on: 'curl -k --tls-max 1.2 "https://ipaddress:443/cgi-bin/CGIProxy.fcgi?cmd=ptzGotoPresetPoint&name=Main&usr=admin&pwd=password"' -``` - -The `script.foscam_off` and `script.foscam_on` can be used to set the motion detection appropriately, and then move the camera. These scripts can be called as part of an automation with `device_tracker` triggers to set `home` and `not_home` modes for your Foscam and disable motion detection recording while `home`. - -```yaml -script: - foscam_off: - sequence: - - service: switch.turn_off - target: - entity_id: switch.foscam_motion - - service: shell_command.foscam_turn_off - foscam_on: - sequence: - - service: switch.turn_off - target: - entity_id: switch.foscam_motion - - service: shell_command.foscam_turn_on - - service: switch.turn_on - target: - entity_id: switch.foscam_motion -``` - -To automate Foscam being set to "on" (facing the correct way with motion sensor on), I used the following simple automation: - -```yaml -automation: - - alias: "Set Foscam to Away Mode when I leave home" - trigger: - platform: state - entity_id: group.family - from: "home" - action: - service: script.foscam_on - - alias: "Set Foscam to Home Mode when I arrive Home" - trigger: - platform: state - entity_id: group.family - to: "home" - action: - service: script.foscam_off -``` diff --git a/source/_cookbook/notify_if__new_ha_release.markdown b/source/_cookbook/notify_if__new_ha_release.markdown deleted file mode 100644 index c4fcedf70cd..00000000000 --- a/source/_cookbook/notify_if__new_ha_release.markdown +++ /dev/null @@ -1,55 +0,0 @@ ---- -title: "Send notification if new Home Assistant release" -description: "Basic example of how to send a notification if a new Home Assistant release is available" -ha_category: Automation Examples ---- - -The following example sends a notification via XMPP if a new Home Assistant release is available: - -```yaml -notify: - - platform: xmpp - name: jabber - sender: sender@jabber.org - password: !secret xmpp_password - recipient: recipient@jabber.org - -automation: - - alias: "Update notification" - trigger: - - platform: state - entity_id: binary_sensor.updater - from: "off" - to: "on" - action: - - service: notify.jabber - data: - message: "There is a new Home Assistant release available." -``` - -You can use [templates](/topics/templating/) to include the release number of Home Assistant if you prefer. The following example sends a notification via [Pushbullet](/integrations/pushbullet) with the Home Assistant version in the message. - -{% raw %} - -```yaml -notify: - - platform: pushbullet - api_key: "YOUR_KEY_HERE" - name: pushbullet - -automation: - - alias: "Update notification" - trigger: - - platform: state - entity_id: binary_sensor.updater - from: "off" - to: "on" - action: - - service: notify.pushbullet - data: - title: "New Home Assistant Release" - target: "YOUR_TARGET_HERE" #See Pushbullet integration for usage - message: "Home Assistant {{ state_attr('binary_sensor.updater', 'newest_version') }} is now available." -``` - -{% endraw %} diff --git a/source/_cookbook/notify_if_over_threshold.markdown b/source/_cookbook/notify_if_over_threshold.markdown deleted file mode 100644 index 9ac53100330..00000000000 --- a/source/_cookbook/notify_if_over_threshold.markdown +++ /dev/null @@ -1,49 +0,0 @@ ---- -title: "Send notification based on sensor" -description: "Basic example of how to send a templated notification if a sensor is over a given threshold" -ha_category: Automation Examples ---- - -The following example sends a notification via pushbullet if a sensor is over a critical value: - -{% raw %} - -```yaml -notify me: - platform: pushbullet - api_key: "API_KEY_HERE" - name: mypushbullet - -automation: - - alias: "FanOn" - trigger: - platform: numeric_state - entity_id: sensor.furnace - above: 2 - action: - service: notify.mypushbullet - data: - title: "Furnace fan is running" - message: "Fan running because current is {{ states('sensor.furnace') }} amps" -``` - -{% endraw %} - -If you also want a notification when it drops back down below that limit, you could add this as well: - -{% raw %} - -```yaml - - alias: "FanOff" - trigger: - platform: numeric_state - entity_id: sensor.furnace - below: 2 - action: - service: notify.mypushbullet - data: - title: "Furnace fan is stopped" - message: "Fan stopped because current is {{ states('sensor.furnace') }} amps" -``` - -{% endraw %} diff --git a/source/_cookbook/perform_actions_based_on_input_select.markdown b/source/_cookbook/perform_actions_based_on_input_select.markdown deleted file mode 100644 index 5f3e9aa648d..00000000000 --- a/source/_cookbook/perform_actions_based_on_input_select.markdown +++ /dev/null @@ -1,171 +0,0 @@ ---- -title: "Perform actions based on input select" -description: "Example playing media to Chromecast based on input select element" -ha_category: Automation Examples ---- - -This example uses an [`input_select`](/integrations/input_select/) element to pick which mp3 file to play on a [Chromecast](/integrations/cast/). - -```yaml -# Define our dropdown list -input_select: - lullaby: - name: Lullaby - options: - - Rain - - Babbling Brook - - None - initial: None - icon: mdi:weather-rainy - -# Define our media player -media_player: - - platform: cast - host: chromecast-nursery - name: Nursery - -automation: - # If you select "Rain", play the "rain.mp3" file - - alias: "Play Rain Lullaby" - - trigger: - platform: state - entity_id: input_select.lullaby - to: "Rain" - - action: - service: media_player.play_media - target: - entity_id: media_player.nursery - data: - media_content_id: http://fileserver/rain.mp3 - media_content_type: music - - - # If you select "Babbling Brook", play the "babbling_brook.mp3" file - - alias: "Play Babbling Brook Lullaby" - - trigger: - platform: state - entity_id: input_select.lullaby - to: "Babbling Brook" - - action: - service: media_player.play_media - target: - entity_id: media_player.nursery - data: - media_content_id: http://fileserver/babbling_brook.mp3 - media_content_type: music - - # If you select "None, turn the Chromecast off - - alias: "Stop the Lullaby" - - trigger: - platform: state - entity_id: input_select.lullaby - to: "None" - - action: - service: media_player.turn_off - target: - entity_id: media_player.nursery -``` -A little bit more complex example that uses [`input_select`](/integrations/input_select/) and template to decide what to play, and which [Chromecast](/integrations/cast/) to play on. - -{% raw %} - -```yaml -input_select: - radio_station: - name: Radio Station - options: - - Z88.3 - - Virgin - - RMC - - rmcHQ - - 105 - - None - initial: None - icon: mdi:radio - radio_player: - name: Radio Player - options: - - Mansarda - - Doccia - - Bed - - Bath - - Salotto - - Salotto Video - - None - initial: None - icon: mdi:airplay - -automation: - - alias: "Stop Streaming Radio" - trigger: - - platform: state - entity_id: input_select.radio_station - to: "None" - action: - service: media_player.turn_off - target: - entity_id: > - {% if is_state("input_select.radio_player", "Mansarda") %} - media_player.bed_2 - {%-elif is_state("input_select.radio_player", "Doccia") %} - media_player.bed_3 - {%-elif is_state("input_select.radio_player", "Bed") %} - media_player.bed - {%-elif is_state("input_select.radio_player", "Bath") %} - media_player.bath - {%-elif is_state("input_select.radio_player", "Salotto") %} - media_player.salotto - {%-elif is_state("input_select.radio_player", "Salotto Video") %} - media_player.salotto_video - {% else %} - none - {% endif %} - - - alias: "Stream Radio - Template" - trigger: - - platform: state - entity_id: input_select.radio_station - action: - - service: media_player.play_media - target: - entity_id: > - {% if is_state("input_select.radio_player", "Mansarda") %} - media_player.bed_2 - {%-elif is_state("input_select.radio_player", "Doccia") %} - media_player.bed_3 - {%-elif is_state("input_select.radio_player", "Bed") %} - media_player.bed - {%-elif is_state("input_select.radio_player", "Bath") %} - media_player.bath - {%-elif is_state("input_select.radio_player", "Salotto") %} - media_player.salotto - {%-elif is_state("input_select.radio_player", "Salotto Video") %} - media_player.salotto_video - {% else %} - none - {% endif %} - data: - media_content_id: > - {% if is_state("input_select.radio_station", "Z88.3") %} - http://ice.zradio.org/z/high.mp3 - {%-elif is_state("input_select.radio_station", "Virgin") %} - http://icecast.unitedradio.it/Virgin.mp3 - {%-elif is_state("input_select.radio_station", "RMC") %} - http://icecast.unitedradio.it/RMC.mp3 - {%-elif is_state("input_select.radio_station", "rmcHQ") %} - http://icecast.unitedradio.it/rmcHQ.mp3 - {%-elif is_state("input_select.radio_station", "105") %} - http://icecast.unitedradio.it/Radio105.mp3 - {% else %} - none - {% endif %} - media_content_type: "music" -``` - -{% endraw %} diff --git a/source/_cookbook/restart_ha_if_wemo_switch_is_not_detected.markdown b/source/_cookbook/restart_ha_if_wemo_switch_is_not_detected.markdown deleted file mode 100644 index f315c64d9b4..00000000000 --- a/source/_cookbook/restart_ha_if_wemo_switch_is_not_detected.markdown +++ /dev/null @@ -1,99 +0,0 @@ ---- -title: "Restart Home Assistant if Wemo Switch is not detected" -description: "Restart Home Assistant if Wemo Switch is not detected." -ha_category: Automation Examples ---- - -### Restart Home Assistant - -This configuration example is restarting Home Assistant if a [WeMo](/integrations/wemo) switch is not detected. An additional MQTT switch is present for stopping Home Assistant and can be triggered by [IFTTT](/integrations/ifttt/). The running batch script will automatically restart Home Assistant if the process isn't found anymore. - -{% raw %} - -```yaml -mqtt: - broker: 127.0.0.1 - port: 1883 - client_id: home-assistant-1 - keepalive: 60 - -device_tracker: - - platform: nmap_tracker - hosts: 192.168.0.1-255 - home_interval: 1 - interval_seconds: 30 - consider_home: 900 - -ifttt: - key: *** - -notify: - - platform: pushbullet - api_key: *** - name: pushbullet - -wemo: - discovery: true - -switch: - - platform: mqtt - state_topic: "home/killhass" - command_topic: "home/killhass" - name: "KillHass" - qos: 0 - payload_on: "ON" - payload_of: "OFF" - optimistic: false - -script: - restarthawemo: - alias: "Restart HA if WeMo isn't found after 15 minutes" - sequence: - - delay: - minutes: 15 - - service: notify.pushbullet - data: - message: "WeMo not found, restarting HA" - - service: switch.turn_on - target: - entity_id: switch.killhass - -automation: -- alias: "Restart HA if WeMo switch isn't found after 15 minutes" - trigger: - platform: state - entity_id: device_tracker.wemo - from: "not_home" - to: "home" - condition: - - condition: template - value_template: '{% if states.switch.wemo %}false{% else %}true{% endif %}' - - condition: state - entity_id: script.restarthawemo - state: "off" - action: - service: homeassistant.turn_on - target: - entity_id: script.restarthawemo -- alias: "Stop HA" - trigger: - - platform: state - entity_id: switch.KillHass - to: "on" - action: - service: homeassistant.stop - - alias: "Stop restarting HA is WeMo is found" - trigger: - platform: template - value_template: '{% if states.switch.wemo %}true{% else %}false{% endif %}' - condition: - condition: state - entity_id: script.restarthawemo - state: "on" - action: - service: homeassistant.turn_off - target: - entity_id: script.restarthawemo -``` - -{% endraw %} diff --git a/source/_cookbook/send_a_reminder.markdown b/source/_cookbook/send_a_reminder.markdown deleted file mode 100644 index 9b4509bbf83..00000000000 --- a/source/_cookbook/send_a_reminder.markdown +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: "Send a reminder" -description: "Send a reminder" -ha_category: Automation Examples ---- - -Always forget to eat lunch? Let Home Assistant send you a reminder. - -Add a [notify platform](/integrations/notify/) of your choice. - -```yaml -notify: - - platform: xmpp - name: jabber - sender: YOUR_JID - password: YOUR_JABBER_ACCOUNT_PASSWORD - recipient: YOUR_RECIPIENT -``` - -and automation part to your `configuration.yaml` file. - -```yaml -automation: - - alias: "Send message at a given time" - trigger: - platform: time - at: "12:15:00" - action: - service: notify.jabber - data: - message: "Time for lunch" -``` diff --git a/source/_cookbook/sonos_say.markdown b/source/_cookbook/sonos_say.markdown deleted file mode 100644 index 3167b14009b..00000000000 --- a/source/_cookbook/sonos_say.markdown +++ /dev/null @@ -1,68 +0,0 @@ ---- -title: "Sonos say script to speak with text-to-speech" -description: "Sonos say script to use text-to-speech with Sonos" -ha_category: Automation Examples ---- - -#### Sonos say script to speak with text-to-speech - -This script allows you to use [TTS](/integrations/#text-to-speech) on Sonos. - -{% raw %} - -```yaml -script: - sonos_say: - alias: "Sonos TTS script" - sequence: - - service: sonos.snapshot - target: - entity_id: "{{ sonos_entity }}" - - service: sonos.unjoin - target: - entity_id: "{{ sonos_entity }}" - - service: media_player.volume_set - data: - entity_id: "{{ sonos_entity }}" - volume_level: "{{ volume }}" - - service: tts.voicerss_say - data: - entity_id: "{{ sonos_entity }}" - message: "{{ message }}" - - delay: "{{ delay }}" - - service: sonos.restore - target: - entity_id: "{{ sonos_entity }}" -``` - -{% endraw %} - -We call this now with: - -```yaml -automation: - - alias: "test" - trigger: - - platform: state - entity_id: input_boolean.mytest - action: - - service: script.sonos_say - data: - sonos_entity: media_player.office - volume: 0.5 - message: "Your husband coming home!" - delay: "00:00:05" -``` - -Note that this example uses the `voicerss` text-to-speech platform. There are many platforms that can be used. The one installed by default with Home Assistant is Google TTS. This appears in your `configuration.yaml` file as: - -```yaml -tts: - - platform: google_translate -``` - -If you want to use this TTS engine, change the line in the example provided to: - -```txt -- service: tts.google_translate_say -``` diff --git a/source/_cookbook/track_battery_level.markdown b/source/_cookbook/track_battery_level.markdown deleted file mode 100644 index 9ea3ce8a960..00000000000 --- a/source/_cookbook/track_battery_level.markdown +++ /dev/null @@ -1,96 +0,0 @@ ---- -title: "Track your phone battery level" -description: "Basic example how to track the battery level of your mobile devices." -ha_category: Automation Examples ---- - -## Android and iOS Devices - -The [Home Assistant Companion Apps](https://companion.home-assistant.io/) for iOS and Android pass the current battery level to Home Assistant with every location update. The default name of the sensor used is `sensor.battery_level`. - -### iOS Devices - -If you have a device running iOS (iPhone, iPad, etc), The [iCloud](/integrations/icloud) integration is gathering various details about your device including the battery level. To display it in the Frontend use a [template sensor](/integrations/template). You can also use the `battery` [sensor device class](/integrations/sensor/#device-class) to dynamically change the icon with the battery level. - -{% raw %} - -```yaml -sensor: - - platform: template - sensors: - battery_iphone: - friendly_name: iPhone Battery - unit_of_measurement: "%" - value_template: >- - {%- if state_attr('device_tracker.iphone', 'battery') %} - {{ state_attr('device_tracker.iphone', 'battery')|round }} - {% else %} - {{ states('sensor.battery_iphone') }} - {%- endif %} - device_class: battery -``` - -{% endraw %} - -### Android Devices - -On your Android device, once the official [Home Assistant Companion app](https://companion.home-assistant.io/) is installed and connected to your Home Assistance instance, you will be able to display the battery level in the frontend by adding a [template sensor](/integrations/template) to your configuration YAML file. You can also use the battery [sensor device class](/integrations/sensor/#device-class) to dynamically change the icon with the battery level. - -{% raw %} - -```yaml -sensor: - - platform: template - sensors: - battery_phone: - friendly_name: AndroidPhone Battery - unit_of_measurement: "%" - value_template: >- - {%- if state_attr('device_tracker.xxxxx', 'battery_level') %} - {{ state_attr('device_tracker.xxxxx', 'battery_level')|round }} - {% else %} - {{ states('device_tracker.xxxxx') }} - {%- endif %} - device_class: battery -``` - -{% endraw %} - -Replace 'device_tracker.xxxxx' with your phone name as shown under Configuration/Devices Device Info/Entities, for example: 'device_tracker.mi_a1' - -#### MQTT - -If you have configured Owntracks to send reports via MQTT you can use the received data via a MQTT sensor. -Replace username with your MQTT username (for the embedded MQTT it's simply homeassistant), and deviceid with the set Device ID in Owntracks. - -{% raw %} - -```yaml -sensor: - - platform: mqtt - state_topic: "owntracks/username/deviceid" - name: "Battery Tablet" - unit_of_measurement: "%" - value_template: "{{ value_json.batt }}" - device_class: battery -``` - -{% endraw %} - -#### HTTP - -If you have configured Owntracks to send reports to your Home Assistant instance via HTTP you can use a template sensor. -Replace `deviceid` with the set Device ID in Owntracks. - -{% raw %} - -```yaml -sensor: -- platform: template - sensors: - your_battery_sensor_name: - value_template: "{{ state_attr('device_tracker.deviceid', 'battery_level') }}" - unit_of_measurement: "%" -``` - -{% endraw %} diff --git a/source/_cookbook/turn_on_light_for_10_minutes_when_motion_detected.markdown b/source/_cookbook/turn_on_light_for_10_minutes_when_motion_detected.markdown deleted file mode 100644 index aeb91e0e89f..00000000000 --- a/source/_cookbook/turn_on_light_for_10_minutes_when_motion_detected.markdown +++ /dev/null @@ -1,106 +0,0 @@ ---- -title: "Turn on lights for 10 minutes after motion detected" -description: "Turn on lights for 10 minutes when motion detected." -ha_category: Automation Examples ---- - -#### Turn on lights with a resettable off timer - -This recipe will turn on a light when there is motion and turn off the light when ten minutes has passed without any motion events. - -```yaml -automation: -- alias: "Turn on kitchen light when there is movement" - trigger: - platform: state - entity_id: sensor.motion_sensor - to: "on" - action: - service: light.turn_on - target: - entity_id: light.kitchen_light - -- alias: "Turn off kitchen light 10 minutes after last movement" - trigger: - platform: state - entity_id: sensor.motion_sensor - to: "off" - for: - minutes: 10 - action: - service: light.turn_off - target: - entity_id: light.kitchen_light -``` - -Or in the case of multiple sensors/triggers: - -```yaml -automation: -- alias: "Turn on hallway lights when the doorbell rings, the front door opens or if there is movement" - trigger: - - platform: state - entity_id: sensor.motion_sensor, binary_sensor.front_door, binary_sensor.doorbell - to: "on" - action: - - service: light.turn_on - target: - entity_id: - - light.hallway_0 - - light.hallway_1 - - service: timer.start - target: - entity_id: timer.hallway - -- alias: "Turn off hallway lights 10 minutes after trigger" - trigger: - platform: event - event_type: timer.finished - event_data: - entity_id: timer.hallway - action: - service: light.turn_off - target: - entity_id: - - light.hallway_0 - - light.hallway_1 - -timer: - hallway: - duration: "00:10:00" -``` - -You can also restrict lights from turning on based on time of day and implement transitions for fading lights on and off. - -```yaml -- alias: "Motion Sensor Lights On" - trigger: - platform: state - entity_id: binary_sensor.ecolink_pir_motion_sensor_sensor - to: "on" - condition: - condition: time - after: "07:30" - before: "23:30" - action: - service: homeassistant.turn_on - target: - entity_id: group.office_lights - data: - transition: 15 - - -- alias: "Motion Sensor Lights Off" - trigger: - - platform: state - entity_id: binary_sensor.ecolink_pir_motion_sensor_sensor - to: "off" - for: - minutes: 15 - action: - - service: homeassistant.turn_off - target: - entity_id: group.office_lights - data: - transition: 160 -``` diff --git a/source/_data/blueprint_exchange_data.json b/source/_data/blueprint_exchange_data.json new file mode 100644 index 00000000000..9fef56bdc3c --- /dev/null +++ b/source/_data/blueprint_exchange_data.json @@ -0,0 +1 @@ +[{"id":258664,"title":"Low battery level detection & notification for all battery sensors","fancy_title":"Low battery level detection & notification for all battery sensors","slug":"low-battery-level-detection-notification-for-all-battery-sensors","posts_count":104,"reply_count":53,"highest_post_number":109,"image_url":null,"created_at":"2020-12-22T13:47:11.653Z","last_posted_at":"2021-04-10T13:53:17.374Z","bumped":true,"bumped_at":"2021-04-10T13:53:17.374Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":null,"tags":[],"views":22566,"like_count":90,"has_summary":true,"last_poster_username":"mkono87","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":56648,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":87875,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":85612,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":83231,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":15797,"primary_group_id":null}]},{"id":254565,"title":"📸 Send camera snapshot notification on motion","fancy_title":":camera_flash: Send camera snapshot notification on motion","slug":"send-camera-snapshot-notification-on-motion","posts_count":99,"reply_count":59,"highest_post_number":101,"image_url":"https://community-assets.home-assistant.io/optimized/3X/9/3/93d181ada8197c09be40c04289c66e3ea459786a_2_1024x805.jpeg","created_at":"2020-12-12T16:09:18.833Z","last_posted_at":"2021-04-02T13:56:47.673Z","bumped":true,"bumped_at":"2021-04-02T13:56:47.673Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":1137,"height":894,"url":"https://community-assets.home-assistant.io/original/3X/9/3/93d181ada8197c09be40c04289c66e3ea459786a.jpeg"},{"max_width":1024,"max_height":1024,"width":1024,"height":805,"url":"https://community-assets.home-assistant.io/optimized/3X/9/3/93d181ada8197c09be40c04289c66e3ea459786a_2_1024x805.jpeg"}],"tags":["blueprint"],"views":23274,"like_count":73,"has_summary":true,"last_poster_username":"mcinnes01","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":24369,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":86380,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":42271,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":86279,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":14717,"primary_group_id":null}]},{"id":255193,"title":"Wake-up light alarm with sunrise effect","fancy_title":"Wake-up light alarm with sunrise effect","slug":"wake-up-light-alarm-with-sunrise-effect","posts_count":164,"reply_count":81,"highest_post_number":168,"image_url":null,"created_at":"2020-12-14T12:17:55.047Z","last_posted_at":"2021-04-05T06:58:09.495Z","bumped":true,"bumped_at":"2021-04-05T06:58:09.495Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":null,"tags":["automation","blueprint"],"views":26860,"like_count":103,"has_summary":true,"last_poster_username":"erik.pretorius","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":56648,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":3808,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":88676,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":79891,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":100617,"primary_group_id":null}]},{"id":256773,"title":"🔔 Actionable notifications for Android","fancy_title":":bell: Actionable notifications for Android","slug":"actionable-notifications-for-android","posts_count":53,"reply_count":28,"highest_post_number":54,"image_url":"https://community-assets.home-assistant.io/optimized/3X/6/0/605a0055e152cbd56dfb90cffcf8e94462d4908c_2_1024x361.jpeg","created_at":"2020-12-17T20:23:31.995Z","last_posted_at":"2021-04-06T20:21:38.904Z","bumped":true,"bumped_at":"2021-04-06T20:21:38.904Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":1079,"height":381,"url":"https://community-assets.home-assistant.io/original/3X/6/0/605a0055e152cbd56dfb90cffcf8e94462d4908c.jpeg"},{"max_width":1024,"max_height":1024,"width":1024,"height":361,"url":"https://community-assets.home-assistant.io/optimized/3X/6/0/605a0055e152cbd56dfb90cffcf8e94462d4908c_2_1024x361.jpeg"}],"tags":["notification","android"],"views":16774,"like_count":64,"has_summary":true,"last_poster_username":"dshokouhi","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":24369,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":79512,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":15358,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":86060,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":14212,"primary_group_id":null}]},{"id":257085,"title":"Turn on light, switch, scene, script or group based on motion and illuminance (+ more conditions)","fancy_title":"Turn on light, switch, scene, script or group based on motion and illuminance (+ more conditions)","slug":"turn-on-light-switch-scene-script-or-group-based-on-motion-and-illuminance-more-conditions","posts_count":171,"reply_count":112,"highest_post_number":174,"image_url":null,"created_at":"2020-12-18T16:49:17.698Z","last_posted_at":"2021-04-05T13:32:14.541Z","bumped":true,"bumped_at":"2021-04-05T13:32:14.541Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":null,"tags":["group","switch","script","blueprint","lights"],"views":22037,"like_count":62,"has_summary":true,"last_poster_username":"Pplayer","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":25240,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":28146,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":2101,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":88257,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":61798,"primary_group_id":null}]},{"id":253804,"title":"ZHA - IKEA five button remote for lights","fancy_title":"ZHA - IKEA five button remote for lights","slug":"zha-ikea-five-button-remote-for-lights","posts_count":49,"reply_count":23,"highest_post_number":51,"image_url":"https://community-assets.home-assistant.io/optimized/3X/0/1/0100d04d2debf34eb11abdfee0707624f3961f80_2_1024x1024.jpeg","created_at":"2020-12-10T09:20:58.681Z","last_posted_at":"2021-04-08T17:37:05.676Z","bumped":true,"bumped_at":"2021-04-08T17:37:05.676Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":1400,"height":1400,"url":"https://community-assets.home-assistant.io/original/3X/0/1/0100d04d2debf34eb11abdfee0707624f3961f80.jpeg"},{"max_width":1024,"max_height":1024,"width":1024,"height":1024,"url":"https://community-assets.home-assistant.io/optimized/3X/0/1/0100d04d2debf34eb11abdfee0707624f3961f80_2_1024x1024.jpeg"},{"max_width":1024,"max_height":1024,"width":1024,"height":1024,"url":"https://community-assets.home-assistant.io/optimized/3X/0/1/0100d04d2debf34eb11abdfee0707624f3961f80_2_1024x1024.jpeg"}],"tags":["zha","blueprint"],"views":11395,"like_count":35,"has_summary":false,"last_poster_username":"tkilgour","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":10250,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":50402,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":84529,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":79880,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":9251,"primary_group_id":null}]},{"id":254841,"title":"Notify or do something when an appliance like a dishwasher or washing machine finishes","fancy_title":"Notify or do something when an appliance like a dishwasher or washing machine finishes","slug":"notify-or-do-something-when-an-appliance-like-a-dishwasher-or-washing-machine-finishes","posts_count":55,"reply_count":18,"highest_post_number":55,"image_url":null,"created_at":"2020-12-13T14:03:32.035Z","last_posted_at":"2021-04-03T22:45:13.219Z","bumped":true,"bumped_at":"2021-04-03T22:45:13.219Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":null,"tags":["notification","automation","blueprint"],"views":13107,"like_count":39,"has_summary":true,"last_poster_username":"e-raser","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":56648,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":66964,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":87366,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":34574,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":83231,"primary_group_id":null}]},{"id":277211,"title":"🎮 ZHA, deCONZ, Zigbee2MQTT - Ikea 5-button Remote Universal blueprint - all actions + double click events - control lights, media players and more with Hooks","fancy_title":":video_game: ZHA, deCONZ, Zigbee2MQTT - Ikea 5-button Remote Universal blueprint - all actions + double click events - control lights, media players and more with Hooks","slug":"zha-deconz-zigbee2mqtt-ikea-5-button-remote-universal-blueprint-all-actions-double-click-events-control-lights-media-players-and-more-with-hooks","posts_count":59,"reply_count":37,"highest_post_number":61,"image_url":"https://community-assets.home-assistant.io/original/3X/6/8/68fe1edee8c04f762bc00633932772738eff16ce.jpeg","created_at":"2021-02-05T16:17:14.478Z","last_posted_at":"2021-03-29T10:15:35.467Z","bumped":true,"bumped_at":"2021-03-29T10:15:35.467Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":1024,"height":1024,"url":"https://community-assets.home-assistant.io/original/3X/6/8/68fe1edee8c04f762bc00633932772738eff16ce.jpeg"}],"tags":["automation","zigbee2mqtt","zha","deconz","blueprint"],"views":4421,"like_count":34,"has_summary":true,"last_poster_username":"epmatt","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":"latest","description":"Original Poster, Most Recent Poster","user_id":86840,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":87282,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":95044,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":19749,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":98981,"primary_group_id":null}]},{"id":256656,"title":"Mi Magic Cube - Deconz (45+ actions!)","fancy_title":"Mi Magic Cube - Deconz (45+ actions!)","slug":"mi-magic-cube-deconz-45-actions","posts_count":43,"reply_count":29,"highest_post_number":45,"image_url":"https://community-assets.home-assistant.io/original/3X/9/9/99519badb69697100086bab350c6595d1e983570.png","created_at":"2020-12-17T14:57:36.839Z","last_posted_at":"2021-03-15T16:36:52.989Z","bumped":true,"bumped_at":"2021-03-15T16:36:52.989Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":379,"height":307,"url":"https://community-assets.home-assistant.io/original/3X/9/9/99519badb69697100086bab350c6595d1e983570.png"}],"tags":["aqara","automation"],"views":6565,"like_count":29,"has_summary":false,"last_poster_username":"BjoernM","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":43056,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":1811,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":72743,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":31446,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":97783,"primary_group_id":null}]},{"id":253939,"title":"🔋 Turn off phone charging after the phone is charged","fancy_title":":battery: Turn off phone charging after the phone is charged","slug":"turn-off-phone-charging-after-the-phone-is-charged","posts_count":14,"reply_count":6,"highest_post_number":16,"image_url":"https://community-assets.home-assistant.io/optimized/3X/b/1/b187219b50460dc405258e614589636eb552d21c_2_1024x583.png","created_at":"2020-12-10T18:01:36.106Z","last_posted_at":"2021-01-01T20:07:26.231Z","bumped":true,"bumped_at":"2021-01-01T20:07:26.231Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":1932,"height":1101,"url":"https://community-assets.home-assistant.io/original/3X/b/1/b187219b50460dc405258e614589636eb552d21c.png"},{"max_width":1024,"max_height":1024,"width":1024,"height":583,"url":"https://community-assets.home-assistant.io/optimized/3X/b/1/b187219b50460dc405258e614589636eb552d21c_2_1024x583.png"}],"tags":["switch","automation"],"views":7408,"like_count":27,"has_summary":false,"last_poster_username":"razvanmdobre","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":24369,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":47635,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":88466,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":83231,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":86448,"primary_group_id":null}]},{"id":270829,"title":"Aqara Magic Cube ZHA (51 actions)","fancy_title":"Aqara Magic Cube ZHA (51 actions)","slug":"aqara-magic-cube-zha-51-actions","posts_count":41,"reply_count":24,"highest_post_number":43,"image_url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg","created_at":"2021-01-20T15:05:26.978Z","last_posted_at":"2021-04-07T16:20:03.809Z","bumped":true,"bumped_at":"2021-04-07T16:20:03.809Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":212,"height":28,"url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg"}],"tags":["aqara","automation","zha","blueprint"],"views":4470,"like_count":20,"has_summary":false,"last_poster_username":"brent","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":89916,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":92419,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":79880,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":94662,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":22166,"primary_group_id":null}]},{"id":256094,"title":"Home Assistant update notification","fancy_title":"Home Assistant update notification","slug":"home-assistant-update-notification","posts_count":11,"reply_count":4,"highest_post_number":11,"image_url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg","created_at":"2020-12-16T08:32:46.887Z","last_posted_at":"2021-03-25T22:16:44.425Z","bumped":true,"bumped_at":"2021-03-25T22:16:44.425Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":212,"height":28,"url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg"}],"tags":["notification","automation"],"views":6025,"like_count":17,"has_summary":false,"last_poster_username":"forte","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":76340,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":83231,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":68887,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":86096,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":17956,"primary_group_id":null}]},{"id":255308,"title":"Zigbee2Mqtt - IKEA five button remote","fancy_title":"Zigbee2Mqtt - IKEA five button remote","slug":"zigbee2mqtt-ikea-five-button-remote","posts_count":24,"reply_count":14,"highest_post_number":25,"image_url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg","created_at":"2020-12-14T16:02:13.156Z","last_posted_at":"2021-03-31T17:22:38.429Z","bumped":true,"bumped_at":"2021-03-31T17:22:38.429Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":212,"height":28,"url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg"}],"tags":["zigbee2mqtt","blueprint"],"views":6452,"like_count":19,"has_summary":false,"last_poster_username":"starbuck93","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":"latest","description":"Original Poster, Most Recent Poster","user_id":661,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":86448,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":86369,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":87321,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":18353,"primary_group_id":null}]},{"id":256409,"title":"Home Assistant restart notification","fancy_title":"Home Assistant restart notification","slug":"home-assistant-restart-notification","posts_count":32,"reply_count":22,"highest_post_number":32,"image_url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg","created_at":"2020-12-16T21:09:19.184Z","last_posted_at":"2021-02-10T11:44:25.707Z","bumped":true,"bumped_at":"2021-02-10T11:44:25.707Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":212,"height":28,"url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg"}],"tags":["notification","automation","blueprint"],"views":5511,"like_count":45,"has_summary":false,"last_poster_username":"Skaven","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":46331,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":3808,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":28146,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":5876,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":8569,"primary_group_id":null}]},{"id":254039,"title":"💾 Create Automated Backups Every Day","fancy_title":":floppy_disk: Create Automated Backups Every Day","slug":"create-automated-backups-every-day","posts_count":18,"reply_count":22,"highest_post_number":31,"image_url":"https://community-assets.home-assistant.io/optimized/3X/d/e/dee2c39a629543cc620bc96b686715d962e762c6_2_1023x638.png","created_at":"2020-12-10T22:39:40.686Z","last_posted_at":"2020-12-26T20:28:18.425Z","bumped":true,"bumped_at":"2020-12-26T20:28:18.425Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":1896,"height":1182,"url":"https://community-assets.home-assistant.io/original/3X/d/e/dee2c39a629543cc620bc96b686715d962e762c6.png"},{"max_width":1024,"max_height":1024,"width":1023,"height":638,"url":"https://community-assets.home-assistant.io/optimized/3X/d/e/dee2c39a629543cc620bc96b686715d962e762c6_2_1023x638.png"}],"tags":["automation","backup","blueprint"],"views":11316,"like_count":30,"has_summary":false,"last_poster_username":"epmatt","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":24369,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":4931,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":47124,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":86387,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":86840,"primary_group_id":null}]},{"id":255048,"title":"ZHA - Philips Hue Dimmer Switch (RWL020, RWL021)","fancy_title":"ZHA - Philips Hue Dimmer Switch (RWL020, RWL021)","slug":"zha-philips-hue-dimmer-switch-rwl020-rwl021","posts_count":47,"reply_count":22,"highest_post_number":48,"image_url":"https://community-assets.home-assistant.io/original/3X/c/b/cba37a75ded80c033791709101542ec4fc906f47.jpeg","created_at":"2020-12-14T02:31:47.684Z","last_posted_at":"2021-03-26T21:06:33.201Z","bumped":true,"bumped_at":"2021-03-26T21:06:33.201Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":620,"height":378,"url":"https://community-assets.home-assistant.io/original/3X/c/b/cba37a75ded80c033791709101542ec4fc906f47.jpeg"}],"tags":["zha","blueprint"],"views":10034,"like_count":36,"has_summary":false,"last_poster_username":"cece74","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":39472,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":4886,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":50402,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":33310,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":99702,"primary_group_id":null}]},{"id":259631,"title":"Cast and re-cast a lovelace view to a Google Hub","fancy_title":"Cast and re-cast a lovelace view to a Google Hub","slug":"cast-and-re-cast-a-lovelace-view-to-a-google-hub","posts_count":31,"reply_count":13,"highest_post_number":32,"image_url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg","created_at":"2020-12-25T07:23:32.950Z","last_posted_at":"2021-03-30T17:46:57.408Z","bumped":true,"bumped_at":"2021-03-30T17:46:57.408Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":212,"height":28,"url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg"}],"tags":["automation","cast"],"views":5741,"like_count":13,"has_summary":false,"last_poster_username":"mrhelium3","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":54183,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":38354,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":20657,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":12335,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":100079,"primary_group_id":null}]},{"id":259010,"title":"Synchronize the on/off state of 2 entities","fancy_title":"Synchronize the on/off state of 2 entities","slug":"synchronize-the-on-off-state-of-2-entities","posts_count":15,"reply_count":7,"highest_post_number":16,"image_url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg","created_at":"2020-12-23T08:18:32.247Z","last_posted_at":"2021-03-22T18:05:04.565Z","bumped":true,"bumped_at":"2021-03-22T18:05:04.565Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":212,"height":28,"url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg"}],"tags":["blueprint"],"views":3869,"like_count":15,"has_summary":false,"last_poster_username":"johanschelin","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":86831,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":88145,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":38248,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":5859,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":67279,"primary_group_id":null}]},{"id":257062,"title":"YAMA - Yet Another Motion Automation (Scenes, Ambient Light and some Conditions )","fancy_title":"YAMA - Yet Another Motion Automation (Scenes, Ambient Light and some Conditions )","slug":"yama-yet-another-motion-automation-scenes-ambient-light-and-some-conditions","posts_count":74,"reply_count":34,"highest_post_number":74,"image_url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg","created_at":"2020-12-18T15:19:47.014Z","last_posted_at":"2021-04-08T14:08:59.449Z","bumped":true,"bumped_at":"2021-04-08T14:08:59.449Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":212,"height":28,"url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg"}],"tags":["automation","blueprint"],"views":10730,"like_count":19,"has_summary":true,"last_poster_username":"Eddie46848","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":85759,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":78218,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":75009,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":88372,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":75847,"primary_group_id":null}]},{"id":258334,"title":":no_pedestrians: Automatic Room Occupancy","fancy_title":":no_pedestrians: Automatic Room Occupancy","slug":"automatic-room-occupancy","posts_count":16,"reply_count":6,"highest_post_number":16,"image_url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg","created_at":"2020-12-21T18:35:27.615Z","last_posted_at":"2021-04-07T19:30:36.053Z","bumped":true,"bumped_at":"2021-04-07T19:30:36.053Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"unicode_title":"🚷 Automatic Room Occupancy","thumbnails":[{"max_width":null,"max_height":null,"width":212,"height":28,"url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg"}],"tags":["automation","blueprint"],"views":6636,"like_count":11,"has_summary":false,"last_poster_username":"KTibow","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":47063,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":83231,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":28146,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":50268,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":59357,"primary_group_id":null}]},{"id":255999,"title":"Turn a fan on and off based on the difference between a humidity sensor and a baseline","fancy_title":"Turn a fan on and off based on the difference between a humidity sensor and a baseline","slug":"turn-a-fan-on-and-off-based-on-the-difference-between-a-humidity-sensor-and-a-baseline","posts_count":29,"reply_count":10,"highest_post_number":29,"image_url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg","created_at":"2020-12-16T01:06:10.148Z","last_posted_at":"2021-02-01T22:31:22.775Z","bumped":true,"bumped_at":"2021-02-01T22:31:22.775Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":212,"height":28,"url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg"}],"tags":[],"views":4878,"like_count":15,"has_summary":false,"last_poster_username":"Mario_Bros","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":69082,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":28146,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":79913,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":59357,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":93515,"primary_group_id":null}]},{"id":255131,"title":"Motion detect lights with solar elevation check","fancy_title":"Motion detect lights with solar elevation check","slug":"motion-detect-lights-with-solar-elevation-check","posts_count":21,"reply_count":11,"highest_post_number":21,"image_url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg","created_at":"2020-12-14T09:39:04.806Z","last_posted_at":"2021-01-03T15:25:38.425Z","bumped":true,"bumped_at":"2021-01-03T15:25:38.425Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":212,"height":28,"url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg"}],"tags":["automation","blueprint","lights"],"views":5095,"like_count":13,"has_summary":false,"last_poster_username":"kallejoken","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":39191,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":30451,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":7924,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":67288,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":78218,"primary_group_id":null}]},{"id":255403,"title":"deCONZ - IKEA five button remote for lights","fancy_title":"deCONZ - IKEA five button remote for lights","slug":"deconz-ikea-five-button-remote-for-lights","posts_count":24,"reply_count":9,"highest_post_number":25,"image_url":"https://community-assets.home-assistant.io/optimized/3X/0/1/0100d04d2debf34eb11abdfee0707624f3961f80_2_1024x1024.jpeg","created_at":"2020-12-14T19:28:09.515Z","last_posted_at":"2021-01-30T18:12:26.227Z","bumped":true,"bumped_at":"2021-01-30T18:12:26.227Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":1400,"height":1400,"url":"https://community-assets.home-assistant.io/original/3X/0/1/0100d04d2debf34eb11abdfee0707624f3961f80.jpeg"},{"max_width":1024,"max_height":1024,"width":1024,"height":1024,"url":"https://community-assets.home-assistant.io/optimized/3X/0/1/0100d04d2debf34eb11abdfee0707624f3961f80_2_1024x1024.jpeg"},{"max_width":1024,"max_height":1024,"width":1024,"height":1024,"url":"https://community-assets.home-assistant.io/optimized/3X/0/1/0100d04d2debf34eb11abdfee0707624f3961f80_2_1024x1024.jpeg"}],"tags":["deconz","blueprint"],"views":4657,"like_count":16,"has_summary":false,"last_poster_username":"fuse1","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":2858,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":28373,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":1811,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":85015,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":93239,"primary_group_id":null}]},{"id":255880,"title":"Enhanced motion controller to activate scenes by time and illuminance - now in addition with idle ambient scene","fancy_title":"Enhanced motion controller to activate scenes by time and illuminance - now in addition with idle ambient scene","slug":"enhanced-motion-controller-to-activate-scenes-by-time-and-illuminance-now-in-addition-with-idle-ambient-scene","posts_count":41,"reply_count":27,"highest_post_number":41,"image_url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg","created_at":"2020-12-15T20:07:17.641Z","last_posted_at":"2021-03-21T07:30:49.456Z","bumped":true,"bumped_at":"2021-03-21T07:30:49.456Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":212,"height":28,"url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg"}],"tags":["automation","blueprint"],"views":5275,"like_count":20,"has_summary":false,"last_poster_username":"Airyphyla","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":86528,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":28146,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":87221,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":85759,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":94192,"primary_group_id":null}]},{"id":276577,"title":"ZWave-JS - Inovelli LZW31-SN Red-Series Dimmer","fancy_title":"ZWave-JS - Inovelli LZW31-SN Red-Series Dimmer","slug":"zwave-js-inovelli-lzw31-sn-red-series-dimmer","posts_count":15,"reply_count":4,"highest_post_number":15,"image_url":null,"created_at":"2021-02-04T05:17:21.197Z","last_posted_at":"2021-04-08T17:04:39.920Z","bumped":true,"bumped_at":"2021-04-08T17:04:39.920Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":null,"tags":["zwave"],"views":1155,"like_count":16,"has_summary":false,"last_poster_username":"natdm","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":23414,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":83005,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":19361,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":100613,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":99610,"primary_group_id":null}]},{"id":255221,"title":"Mute media player when on phone, only when home","fancy_title":"Mute media player when on phone, only when home","slug":"mute-media-player-when-on-phone-only-when-home","posts_count":36,"reply_count":21,"highest_post_number":36,"image_url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg","created_at":"2020-12-14T13:17:40.499Z","last_posted_at":"2021-01-06T21:42:13.539Z","bumped":true,"bumped_at":"2021-01-06T21:42:13.539Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":212,"height":28,"url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg"}],"tags":[],"views":3978,"like_count":13,"has_summary":false,"last_poster_username":"JackPoint","category_id":53,"pinned_globally":false,"featured_link":"https://gist.github.com/JackPoint/2375dd5d15f0b4c52161207170c14f60","featured_link_root_domain":"github.com","has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":"latest","description":"Original Poster, Most Recent Poster","user_id":51764,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":35826,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":69919,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":46799,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":76858,"primary_group_id":null}]},{"id":258472,"title":"ZHA - Xiaomi Mijia Round Wireless Switch (WXKG01LM) - lumi.sensor_switch","fancy_title":"ZHA - Xiaomi Mijia Round Wireless Switch (WXKG01LM) - lumi.sensor_switch","slug":"zha-xiaomi-mijia-round-wireless-switch-wxkg01lm-lumi-sensor-switch","posts_count":31,"reply_count":22,"highest_post_number":31,"image_url":"https://community-assets.home-assistant.io/original/3X/6/e/6ef65dae41a033a3f8d5a3f624da367f9b4c8f0a.jpeg","created_at":"2020-12-22T02:03:59.116Z","last_posted_at":"2021-04-09T10:58:13.184Z","bumped":true,"bumped_at":"2021-04-09T10:58:13.184Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":800,"height":800,"url":"https://community-assets.home-assistant.io/original/3X/6/e/6ef65dae41a033a3f8d5a3f624da367f9b4c8f0a.jpeg"}],"tags":["zigbee","xiaomi","automation","zha","blueprint"],"views":3188,"like_count":17,"has_summary":false,"last_poster_username":"jant90","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":86986,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":8313,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":25829,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":8920,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":76859,"primary_group_id":null}]},{"id":255120,"title":"ZHA - IKEA five button remote","fancy_title":"ZHA - IKEA five button remote","slug":"zha-ikea-five-button-remote","posts_count":35,"reply_count":20,"highest_post_number":37,"image_url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg","created_at":"2020-12-14T09:00:39.534Z","last_posted_at":"2021-03-12T07:29:45.239Z","bumped":true,"bumped_at":"2021-03-12T07:29:45.239Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":212,"height":28,"url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg"}],"tags":["switch","zha","blueprint"],"views":4958,"like_count":10,"has_summary":false,"last_poster_username":"wormie_dk","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":"latest","description":"Original Poster, Most Recent Poster","user_id":73520,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":42831,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":36595,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":66964,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":36092,"primary_group_id":null}]},{"id":255657,"title":"Door Sensor - Turn on/off Light","fancy_title":"Door Sensor - Turn on/off Light","slug":"door-sensor-turn-on-off-light","posts_count":19,"reply_count":12,"highest_post_number":19,"image_url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg","created_at":"2020-12-15T10:34:50.388Z","last_posted_at":"2021-03-02T15:19:04.278Z","bumped":true,"bumped_at":"2021-03-02T15:19:04.278Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":212,"height":28,"url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg"}],"tags":["automation","blueprint"],"views":6606,"like_count":11,"has_summary":false,"last_poster_username":"bergstrom","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":"latest","description":"Original Poster, Most Recent Poster","user_id":43056,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":85203,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":26357,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":70130,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":48164,"primary_group_id":null}]},{"id":257953,"title":"Doorbell - Notify Google and send camera snapshot to app","fancy_title":"Doorbell - Notify Google and send camera snapshot to app","slug":"doorbell-notify-google-and-send-camera-snapshot-to-app","posts_count":40,"reply_count":21,"highest_post_number":41,"image_url":"https://community-assets.home-assistant.io/original/3X/0/d/0dc01703f5031063312c4693ae2048cb84075705.png","created_at":"2020-12-20T20:13:13.054Z","last_posted_at":"2021-03-20T13:26:05.285Z","bumped":true,"bumped_at":"2021-03-20T13:26:05.285Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":723,"height":860,"url":"https://community-assets.home-assistant.io/original/3X/0/d/0dc01703f5031063312c4693ae2048cb84075705.png"}],"tags":["automation","blueprint"],"views":7494,"like_count":19,"has_summary":false,"last_poster_username":"allenporter","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":18864,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":46351,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":83259,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":92380,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":77955,"primary_group_id":null}]},{"id":293469,"title":"Fancy Home Assistant Update Available Notifier for Android (With customizable notification settings)","fancy_title":"Fancy Home Assistant Update Available Notifier for Android (With customizable notification settings)","slug":"fancy-home-assistant-update-available-notifier-for-android-with-customizable-notification-settings","posts_count":19,"reply_count":14,"highest_post_number":20,"image_url":"https://community-assets.home-assistant.io/optimized/3X/f/6/f64e339460175ee6ec9c8792ddbd922576164583_2_1024x304.jpeg","created_at":"2021-03-25T22:04:25.843Z","last_posted_at":"2021-04-10T06:01:48.943Z","bumped":true,"bumped_at":"2021-04-10T06:01:48.943Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":2048,"height":608,"url":"https://community-assets.home-assistant.io/original/3X/f/6/f64e339460175ee6ec9c8792ddbd922576164583.jpeg"},{"max_width":1024,"max_height":1024,"width":1024,"height":304,"url":"https://community-assets.home-assistant.io/optimized/3X/f/6/f64e339460175ee6ec9c8792ddbd922576164583_2_1024x304.jpeg"}],"tags":[],"views":1045,"like_count":19,"has_summary":false,"last_poster_username":"LukaszP2","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":17956,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":57843,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":14212,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":56992,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":53673,"primary_group_id":null}]},{"id":255988,"title":"deCONZ - Xiaomi Aqara MFKZQ01LM Cube Controller","fancy_title":"deCONZ - Xiaomi Aqara MFKZQ01LM Cube Controller","slug":"deconz-xiaomi-aqara-mfkzq01lm-cube-controller","posts_count":21,"reply_count":14,"highest_post_number":21,"image_url":"https://community-assets.home-assistant.io/original/3X/5/3/535b631cdc72543ce975ba7a71efe8e28972bff2.jpeg","created_at":"2020-12-16T00:05:29.193Z","last_posted_at":"2021-03-31T20:55:05.052Z","bumped":true,"bumped_at":"2021-03-31T21:26:59.640Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":450,"height":450,"url":"https://community-assets.home-assistant.io/original/3X/5/3/535b631cdc72543ce975ba7a71efe8e28972bff2.jpeg"}],"tags":["switch","automation","deconz","blueprint"],"views":2733,"like_count":12,"has_summary":false,"last_poster_username":"jeanbart","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":4469,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":10358,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":89076,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":5600,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":16232,"primary_group_id":null}]},{"id":257293,"title":"Window open, climate off","fancy_title":"Window open, climate off","slug":"window-open-climate-off","posts_count":44,"reply_count":27,"highest_post_number":44,"image_url":"https://community-assets.home-assistant.io/optimized/3X/4/e/4ee0953296104cfb65747957b9357aa0e63a4d43_2_1024x576.jpeg","created_at":"2020-12-19T07:39:25.352Z","last_posted_at":"2021-04-08T23:38:41.742Z","bumped":true,"bumped_at":"2021-04-08T23:38:41.742Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":1920,"height":1080,"url":"https://community-assets.home-assistant.io/original/3X/4/e/4ee0953296104cfb65747957b9357aa0e63a4d43.jpeg"},{"max_width":1024,"max_height":1024,"width":1024,"height":576,"url":"https://community-assets.home-assistant.io/optimized/3X/4/e/4ee0953296104cfb65747957b9357aa0e63a4d43_2_1024x576.jpeg"}],"tags":["climate","blueprint"],"views":5450,"like_count":12,"has_summary":false,"last_poster_username":"Kevinm94","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":87010,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":97039,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":91864,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":99953,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":9914,"primary_group_id":null}]},{"id":255540,"title":"ZHA - Aqara Wireless Mini Switch","fancy_title":"ZHA - Aqara Wireless Mini Switch","slug":"zha-aqara-wireless-mini-switch","posts_count":14,"reply_count":8,"highest_post_number":14,"image_url":"https://community-assets.home-assistant.io/original/3X/a/6/a6b5c412171769c8374df5cd23430997f72faa16.jpeg","created_at":"2020-12-15T01:05:36.035Z","last_posted_at":"2021-03-28T16:42:40.647Z","bumped":true,"bumped_at":"2021-03-28T16:42:40.647Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":700,"height":441,"url":"https://community-assets.home-assistant.io/original/3X/a/6/a6b5c412171769c8374df5cd23430997f72faa16.jpeg"}],"tags":["switch","aqara","zha","blueprint"],"views":3030,"like_count":9,"has_summary":false,"last_poster_username":"Roelofk85","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":28643,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":78998,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":70993,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":60419,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":29868,"primary_group_id":null}]},{"id":268628,"title":"ZHA - Sonoff Zigbee Switch","fancy_title":"ZHA - Sonoff Zigbee Switch","slug":"zha-sonoff-zigbee-switch","posts_count":13,"reply_count":4,"highest_post_number":13,"image_url":null,"created_at":"2021-01-15T11:19:03.701Z","last_posted_at":"2021-04-06T11:17:07.409Z","bumped":true,"bumped_at":"2021-04-06T11:17:07.409Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":null,"tags":["zigbee","sonoff","zha"],"views":2874,"like_count":9,"has_summary":false,"last_poster_username":"CortexPro","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":91088,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":71657,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":97899,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":94660,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":100756,"primary_group_id":null}]},{"id":255733,"title":"Send Notification for Battery Level","fancy_title":"Send Notification for Battery Level","slug":"send-notification-for-battery-level","posts_count":30,"reply_count":13,"highest_post_number":32,"image_url":"https://community-assets.home-assistant.io/optimized/3X/6/e/6eba44ba033ea4e5ebb531e80979d7fb2d3fb263_2_1024x804.png","created_at":"2020-12-15T13:48:37.140Z","last_posted_at":"2020-12-23T00:14:19.800Z","bumped":true,"bumped_at":"2020-12-23T00:14:19.800Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":1054,"height":828,"url":"https://community-assets.home-assistant.io/original/3X/6/e/6eba44ba033ea4e5ebb531e80979d7fb2d3fb263.png"},{"max_width":1024,"max_height":1024,"width":1024,"height":804,"url":"https://community-assets.home-assistant.io/optimized/3X/6/e/6eba44ba033ea4e5ebb531e80979d7fb2d3fb263_2_1024x804.png"}],"tags":[],"views":6890,"like_count":12,"has_summary":false,"last_poster_username":"Ildar_Gabdullin","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":73602,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":5385,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":28146,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":18864,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":77840,"primary_group_id":null}]},{"id":268132,"title":"Execute any service (turn on switch/light/scene/scripts etc., even run another automation) based on any entity's state change (motion sensor, illuminance, sun rise/set)","fancy_title":"Execute any service (turn on switch/light/scene/scripts etc., even run another automation) based on any entity’s state change (motion sensor, illuminance, sun rise/set)","slug":"execute-any-service-turn-on-switch-light-scene-scripts-etc-even-run-another-automation-based-on-any-entitys-state-change-motion-sensor-illuminance-sun-rise-set","posts_count":26,"reply_count":17,"highest_post_number":26,"image_url":null,"created_at":"2021-01-14T06:43:23.016Z","last_posted_at":"2021-03-27T01:17:15.519Z","bumped":true,"bumped_at":"2021-03-27T01:17:15.519Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":null,"tags":["switch","automation","blueprint"],"views":3859,"like_count":10,"has_summary":false,"last_poster_username":"kevinxw","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":"latest","description":"Original Poster, Most Recent Poster","user_id":90765,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":68145,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":1086,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":98580,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":83231,"primary_group_id":null}]},{"id":255412,"title":"ZHA - IKEA Tradfri on/off switch (incl dimmer)","fancy_title":"ZHA - IKEA Tradfri on/off switch (incl dimmer)","slug":"zha-ikea-tradfri-on-off-switch-incl-dimmer","posts_count":26,"reply_count":16,"highest_post_number":26,"image_url":"https://community-assets.home-assistant.io/original/3X/d/d/dd3e937bf5a20d74f84f1c9ba227eac73332d97f.jpeg","created_at":"2020-12-14T19:39:00.817Z","last_posted_at":"2021-03-29T19:04:52.306Z","bumped":true,"bumped_at":"2021-03-29T19:04:52.306Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":225,"height":225,"url":"https://community-assets.home-assistant.io/original/3X/d/d/dd3e937bf5a20d74f84f1c9ba227eac73332d97f.jpeg"}],"tags":["switch","zha","blueprint"],"views":6650,"like_count":8,"has_summary":false,"last_poster_username":"brent","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":9617,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":9734,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":89593,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":19290,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":22166,"primary_group_id":null}]},{"id":255343,"title":"Deconz - Philips Hue Dimmer Switch (RWL021)","fancy_title":"Deconz - Philips Hue Dimmer Switch (RWL021)","slug":"deconz-philips-hue-dimmer-switch-rwl021","posts_count":11,"reply_count":4,"highest_post_number":11,"image_url":null,"created_at":"2020-12-14T17:09:03.279Z","last_posted_at":"2021-03-25T21:59:28.894Z","bumped":true,"bumped_at":"2021-03-25T21:59:28.894Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":null,"tags":[],"views":2783,"like_count":10,"has_summary":false,"last_poster_username":"DonNL","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":23761,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":39472,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":24290,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":5671,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":16693,"primary_group_id":null}]},{"id":261814,"title":":city_sunrise: Activating Lights At Sunset","fancy_title":":city_sunrise: Activating Lights At Sunset","slug":"activating-lights-at-sunset","posts_count":28,"reply_count":18,"highest_post_number":28,"image_url":"https://community-assets.home-assistant.io/optimized/3X/7/1/71c219512b1cdf1d3916d00d7ab0fb5883313f75_2_1024x354.png","created_at":"2020-12-30T17:23:47.359Z","last_posted_at":"2021-03-27T07:43:24.083Z","bumped":true,"bumped_at":"2021-03-27T07:43:24.083Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"unicode_title":"🌇 Activating Lights At Sunset","thumbnails":[{"max_width":null,"max_height":null,"width":1033,"height":358,"url":"https://community-assets.home-assistant.io/original/3X/7/1/71c219512b1cdf1d3916d00d7ab0fb5883313f75.png"},{"max_width":1024,"max_height":1024,"width":1024,"height":354,"url":"https://community-assets.home-assistant.io/optimized/3X/7/1/71c219512b1cdf1d3916d00d7ab0fb5883313f75_2_1024x354.png"}],"tags":["automation","time","blueprint","lights"],"views":7665,"like_count":15,"has_summary":false,"last_poster_username":"CyanAutomation","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":"latest","description":"Original Poster, Most Recent Poster","user_id":88363,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":13227,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":94296,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":71183,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":30339,"primary_group_id":null}]},{"id":278457,"title":"Inovelli LZW30 Red-Series Switch using the new ZWave-JS Integration","fancy_title":"Inovelli LZW30 Red-Series Switch using the new ZWave-JS Integration","slug":"inovelli-lzw30-red-series-switch-using-the-new-zwave-js-integration","posts_count":16,"reply_count":8,"highest_post_number":16,"image_url":null,"created_at":"2021-02-08T16:50:28.165Z","last_posted_at":"2021-04-08T04:36:50.368Z","bumped":true,"bumped_at":"2021-04-08T04:36:50.368Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":null,"tags":[],"views":568,"like_count":17,"has_summary":false,"last_poster_username":"badmin","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":1795,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":49959,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":50180,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":93134,"primary_group_id":null}]},{"id":255902,"title":"Trigger different actions on a single, double or double click on a binary sensor","fancy_title":"Trigger different actions on a single, double or double click on a binary sensor","slug":"trigger-different-actions-on-a-single-double-or-double-click-on-a-binary-sensor","posts_count":36,"reply_count":16,"highest_post_number":36,"image_url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg","created_at":"2020-12-15T20:44:49.141Z","last_posted_at":"2021-03-29T23:01:56.596Z","bumped":true,"bumped_at":"2021-03-29T23:01:56.596Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":212,"height":28,"url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg"}],"tags":["automation","blueprint"],"views":3745,"like_count":6,"has_summary":false,"last_poster_username":"wagnerf","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":82557,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":7952,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":28146,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":59357,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":80782,"primary_group_id":null}]},{"id":277861,"title":"🎮 ZHA, deCONZ, Zigbee2MQTT - Ikea E1743 On/Off Switch & Dimmer Universal blueprint - all actions + double click events - control lights, media players and more with Hooks","fancy_title":":video_game: ZHA, deCONZ, Zigbee2MQTT - Ikea E1743 On/Off Switch & Dimmer Universal blueprint - all actions + double click events - control lights, media players and more with Hooks","slug":"zha-deconz-zigbee2mqtt-ikea-e1743-on-off-switch-dimmer-universal-blueprint-all-actions-double-click-events-control-lights-media-players-and-more-with-hooks","posts_count":26,"reply_count":13,"highest_post_number":26,"image_url":"https://community-assets.home-assistant.io/original/3X/d/6/d6d7f3f70a3fca8ab64ce9c849717e2dd7bcd1ea.jpeg","created_at":"2021-02-07T08:27:28.857Z","last_posted_at":"2021-04-08T12:10:18.671Z","bumped":true,"bumped_at":"2021-04-08T12:19:54.541Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":150,"height":150,"url":"https://community-assets.home-assistant.io/original/3X/d/6/d6d7f3f70a3fca8ab64ce9c849717e2dd7bcd1ea.jpeg"}],"tags":["automation","zigbee2mqtt","zha","deconz","blueprint"],"views":2433,"like_count":11,"has_summary":false,"last_poster_username":"bipsen","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":86840,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":65936,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":97244,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":98867,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":54726,"primary_group_id":null}]},{"id":269701,"title":"Dim lights based on the sun's elevation","fancy_title":"Dim lights based on the sun’s elevation","slug":"dim-lights-based-on-the-suns-elevation","posts_count":59,"reply_count":41,"highest_post_number":59,"image_url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg","created_at":"2021-01-17T21:57:51.625Z","last_posted_at":"2021-02-28T23:14:57.494Z","bumped":true,"bumped_at":"2021-02-28T23:14:57.494Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":212,"height":28,"url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg"}],"tags":["automation","blueprint","lights"],"views":4583,"like_count":9,"has_summary":true,"last_poster_username":"mukens","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":"latest","description":"Original Poster, Most Recent Poster","user_id":72841,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":69055,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":55729,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":92640,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":96755,"primary_group_id":null}]},{"id":257617,"title":"deCONZ - IKEA five button remote for lights with color temp","fancy_title":"deCONZ - IKEA five button remote for lights with color temp","slug":"deconz-ikea-five-button-remote-for-lights-with-color-temp","posts_count":31,"reply_count":20,"highest_post_number":33,"image_url":"https://community-assets.home-assistant.io/optimized/3X/8/b/8ba53edd32b4e8db10a4c810644aed9946e5f847_2_1024x1024.jpeg","created_at":"2020-12-19T23:58:12.312Z","last_posted_at":"2021-04-05T19:19:50.668Z","bumped":true,"bumped_at":"2021-04-08T03:44:00.271Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":1400,"height":1400,"url":"https://community-assets.home-assistant.io/original/3X/8/b/8ba53edd32b4e8db10a4c810644aed9946e5f847.jpeg"},{"max_width":1024,"max_height":1024,"width":1024,"height":1024,"url":"https://community-assets.home-assistant.io/optimized/3X/8/b/8ba53edd32b4e8db10a4c810644aed9946e5f847_2_1024x1024.jpeg"}],"tags":["deconz","blueprint"],"views":3272,"like_count":10,"has_summary":false,"last_poster_username":"applesauce","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":50227,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":28146,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":88158,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":92663,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":39206,"primary_group_id":null}]},{"id":255538,"title":"ZHA - IKEA Tradfri On/Off Switch","fancy_title":"ZHA - IKEA Tradfri On/Off Switch","slug":"zha-ikea-tradfri-on-off-switch","posts_count":10,"reply_count":1,"highest_post_number":10,"image_url":null,"created_at":"2020-12-15T00:55:59.621Z","last_posted_at":"2021-03-29T19:04:35.476Z","bumped":true,"bumped_at":"2021-03-29T19:04:35.476Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":null,"tags":["switch","zha","blueprint"],"views":2851,"like_count":7,"has_summary":false,"last_poster_username":"brent","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":66964,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":78782,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":38039,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":32972,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":22166,"primary_group_id":null}]},{"id":263006,"title":"Z2M - Xiaomi Cube Controller","fancy_title":"Z2M - Xiaomi Cube Controller","slug":"z2m-xiaomi-cube-controller","posts_count":26,"reply_count":13,"highest_post_number":26,"image_url":null,"created_at":"2021-01-02T16:09:35.274Z","last_posted_at":"2021-04-05T13:09:50.168Z","bumped":true,"bumped_at":"2021-04-05T13:09:50.168Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":null,"tags":["switch","automation","zigbee2mqtt","blueprint"],"views":3073,"like_count":12,"has_summary":false,"last_poster_username":"jekawmfux","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":89076,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":28146,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":82912,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":71454,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":99720,"primary_group_id":null}]},{"id":258681,"title":"Blueprint: Mute Spotify free advertisements","fancy_title":"Blueprint: Mute Spotify free advertisements","slug":"blueprint-mute-spotify-free-advertisements","posts_count":13,"reply_count":4,"highest_post_number":13,"image_url":null,"created_at":"2020-12-22T14:16:31.533Z","last_posted_at":"2021-03-31T18:40:04.507Z","bumped":true,"bumped_at":"2021-03-31T22:24:02.149Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":null,"tags":["blueprint"],"views":2366,"like_count":8,"has_summary":false,"last_poster_username":"akszyn_pl","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":44476,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":6414,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":59357,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":18128,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":100187,"primary_group_id":null}]},{"id":261418,"title":"Aqara Opple 6 Buttons For Zha","fancy_title":"Aqara Opple 6 Buttons For Zha","slug":"aqara-opple-6-buttons-for-zha","posts_count":23,"reply_count":14,"highest_post_number":24,"image_url":"https://community-assets.home-assistant.io/original/3X/1/a/1a56c8d6d7cf57c5e0613cfadef0b7509e668985.jpeg","created_at":"2020-12-29T20:20:26.010Z","last_posted_at":"2021-03-13T09:58:37.141Z","bumped":true,"bumped_at":"2021-03-14T09:53:45.240Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":1000,"height":1000,"url":"https://community-assets.home-assistant.io/original/3X/1/a/1a56c8d6d7cf57c5e0613cfadef0b7509e668985.jpeg"}],"tags":[],"views":1740,"like_count":15,"has_summary":false,"last_poster_username":"yfands","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":42831,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":70303,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":88612,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":92801,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":80734,"primary_group_id":null}]},{"id":256311,"title":"NOT WORKING CONSISTENTLY -- Xiaomi Cube Controller (ZHA)","fancy_title":"NOT WORKING CONSISTENTLY – Xiaomi Cube Controller (ZHA)","slug":"not-working-consistently-xiaomi-cube-controller-zha","posts_count":40,"reply_count":18,"highest_post_number":40,"image_url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg","created_at":"2020-12-16T16:47:51.285Z","last_posted_at":"2021-01-23T10:51:19.953Z","bumped":true,"bumped_at":"2021-01-23T10:51:19.953Z","archetype":"regular","unseen":false,"pinned":false,"unpinned":null,"visible":true,"closed":false,"archived":false,"bookmarked":null,"liked":null,"thumbnails":[{"max_width":null,"max_height":null,"width":212,"height":28,"url":"https://community-assets.home-assistant.io/original/3X/9/4/94379a79c42e3606b5b057dbd9fcf6092bb076f2.svg"}],"tags":["aqara","zha","blueprint"],"views":4026,"like_count":16,"has_summary":false,"last_poster_username":"XxCabbyoO","category_id":53,"pinned_globally":false,"featured_link":null,"has_accepted_answer":false,"vote_count":null,"can_vote":false,"user_voted":null,"posters":[{"extras":null,"description":"Original Poster","user_id":86756,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":16399,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":61728,"primary_group_id":null},{"extras":null,"description":"Frequent Poster","user_id":83882,"primary_group_id":null},{"extras":"latest","description":"Most Recent Poster","user_id":67899,"primary_group_id":null}]}] \ No newline at end of file diff --git a/source/_data/glossary.yml b/source/_data/glossary.yml index 342b1ae6a9d..623c7560bc4 100644 --- a/source/_data/glossary.yml +++ b/source/_data/glossary.yml @@ -10,8 +10,6 @@ description: "Integrations (see below) used to be known as components." - topic: Condition description: "[Conditions](/docs/scripts/conditions/) are an optional part of an automation that will prevent an action from firing if they are not met." -- topic: Cookbook - description: "The [Cookbook](/cookbook/) contains a set of configuration examples of Home Assistant from the community." - topic: Cover description: "[Covers](/integrations/cover) are devices such as blinds, garage doors, etc that can be opened and closed and optionally set to a specific position." - topic: Customize diff --git a/source/_docs/configuration.markdown b/source/_docs/configuration.markdown index 14cf80c8ab1..67afdee479b 100644 --- a/source/_docs/configuration.markdown +++ b/source/_docs/configuration.markdown @@ -20,7 +20,7 @@ If you want to use a different folder for configuration, use the configuration c Inside your configuration folder is the file `configuration.yaml`. This is the main file that contains integrations to be loaded along with their configurations. Throughout the documentation you will find snippets that you can add to your configuration file to enable specific functionality. -If you run into trouble while configuring Home Assistant, refer the [configuration troubleshooting page](/getting-started/troubleshooting-configuration/) and at the [`configuration.yaml` examples](/cookbook/#example-configurationyaml). +If you run into trouble while configuring Home Assistant, refer the [configuration troubleshooting page](/getting-started/troubleshooting-configuration/) and at the [`configuration.yaml` examples](/examples/#example-configurationyaml).
diff --git a/source/_docs/configuration/splitting_configuration.markdown b/source/_docs/configuration/splitting_configuration.markdown index bb7edc22e6a..76cfefbcf7b 100644 --- a/source/_docs/configuration/splitting_configuration.markdown +++ b/source/_docs/configuration/splitting_configuration.markdown @@ -5,7 +5,7 @@ description: "Splitting the configuration.yaml into several files." So you've been using Home Assistant for a while now and your `configuration.yaml` file brings people to tears or you simply want to start off with the distributed approach, here's how to split the `configuration.yaml` into more manageable (read: humanly readable) pieces. -First off, several community members have sanitized (read: without API keys/passwords etc) versions of their configurations available for viewing, you can see a list of them [here](/cookbook/#example-configurationyaml). +First off, several community members have sanitized (read: without API keys/passwords etc) versions of their configurations available for viewing, you can see a list of them [here](/examples/#example-configurationyaml). As commenting code doesn't always happen, please read on for the details. diff --git a/source/_docs/frontend.markdown b/source/_docs/frontend.markdown index c743b25912b..a5780afaf89 100644 --- a/source/_docs/frontend.markdown +++ b/source/_docs/frontend.markdown @@ -9,7 +9,7 @@ The frontend of Home Assistant is built with [Polymer](https://www.polymer-proje

-The [User Interface section](/cookbook/#user-interface) can give you some starting points to expand the frontend. +The [User Interface section](/examples/#user-interface) can give you some starting points to expand the frontend. If you want to work on the frontend, please refer to the [Frontend Development documentation](/developers/frontend/). diff --git a/source/_cookbook/configuration_yaml_by_DrJohnT.markdown b/source/_examples/configuration_yaml_by_DrJohnT.markdown similarity index 100% rename from source/_cookbook/configuration_yaml_by_DrJohnT.markdown rename to source/_examples/configuration_yaml_by_DrJohnT.markdown diff --git a/source/_cookbook/configuration_yaml_by_alok_saboo.markdown b/source/_examples/configuration_yaml_by_alok_saboo.markdown similarity index 100% rename from source/_cookbook/configuration_yaml_by_alok_saboo.markdown rename to source/_examples/configuration_yaml_by_alok_saboo.markdown diff --git a/source/_cookbook/configuration_yaml_by_aneisch.markdown b/source/_examples/configuration_yaml_by_aneisch.markdown similarity index 100% rename from source/_cookbook/configuration_yaml_by_aneisch.markdown rename to source/_examples/configuration_yaml_by_aneisch.markdown diff --git a/source/_cookbook/configuration_yaml_by_apocrathia.markdown b/source/_examples/configuration_yaml_by_apocrathia.markdown similarity index 100% rename from source/_cookbook/configuration_yaml_by_apocrathia.markdown rename to source/_examples/configuration_yaml_by_apocrathia.markdown diff --git a/source/_cookbook/configuration_yaml_by_carlo_costanzo.markdown b/source/_examples/configuration_yaml_by_carlo_costanzo.markdown similarity index 100% rename from source/_cookbook/configuration_yaml_by_carlo_costanzo.markdown rename to source/_examples/configuration_yaml_by_carlo_costanzo.markdown diff --git a/source/_cookbook/configuration_yaml_by_cy1701.markdown b/source/_examples/configuration_yaml_by_cy1701.markdown similarity index 100% rename from source/_cookbook/configuration_yaml_by_cy1701.markdown rename to source/_examples/configuration_yaml_by_cy1701.markdown diff --git a/source/_cookbook/configuration_yaml_by_geekofweek.markdown b/source/_examples/configuration_yaml_by_geekofweek.markdown similarity index 100% rename from source/_cookbook/configuration_yaml_by_geekofweek.markdown rename to source/_examples/configuration_yaml_by_geekofweek.markdown diff --git a/source/_cookbook/configuration_yaml_by_gummientchen.markdown b/source/_examples/configuration_yaml_by_gummientchen.markdown similarity index 100% rename from source/_cookbook/configuration_yaml_by_gummientchen.markdown rename to source/_examples/configuration_yaml_by_gummientchen.markdown diff --git a/source/_cookbook/configuration_yaml_by_jimpower.markdown b/source/_examples/configuration_yaml_by_jimpower.markdown similarity index 100% rename from source/_cookbook/configuration_yaml_by_jimpower.markdown rename to source/_examples/configuration_yaml_by_jimpower.markdown diff --git a/source/_cookbook/configuration_yaml_by_jonathan_adams.markdown b/source/_examples/configuration_yaml_by_jonathan_adams.markdown similarity index 100% rename from source/_cookbook/configuration_yaml_by_jonathan_adams.markdown rename to source/_examples/configuration_yaml_by_jonathan_adams.markdown diff --git a/source/_cookbook/configuration_yaml_by_joshuagarrison27.markdown b/source/_examples/configuration_yaml_by_joshuagarrison27.markdown similarity index 100% rename from source/_cookbook/configuration_yaml_by_joshuagarrison27.markdown rename to source/_examples/configuration_yaml_by_joshuagarrison27.markdown diff --git a/source/_cookbook/configuration_yaml_by_klaasnicolaas.markdown b/source/_examples/configuration_yaml_by_klaasnicolaas.markdown similarity index 100% rename from source/_cookbook/configuration_yaml_by_klaasnicolaas.markdown rename to source/_examples/configuration_yaml_by_klaasnicolaas.markdown diff --git a/source/_cookbook/configuration_yaml_by_mcaminiti.markdown b/source/_examples/configuration_yaml_by_mcaminiti.markdown similarity index 100% rename from source/_cookbook/configuration_yaml_by_mcaminiti.markdown rename to source/_examples/configuration_yaml_by_mcaminiti.markdown diff --git a/source/_cookbook/configuration_yaml_by_shortbloke.markdown b/source/_examples/configuration_yaml_by_shortbloke.markdown similarity index 100% rename from source/_cookbook/configuration_yaml_by_shortbloke.markdown rename to source/_examples/configuration_yaml_by_shortbloke.markdown diff --git a/source/_cookbook/configuration_yaml_by_silvrrgit.markdown b/source/_examples/configuration_yaml_by_silvrrgit.markdown similarity index 100% rename from source/_cookbook/configuration_yaml_by_silvrrgit.markdown rename to source/_examples/configuration_yaml_by_silvrrgit.markdown diff --git a/source/_cookbook/configuration_yaml_by_skalavala.markdown b/source/_examples/configuration_yaml_by_skalavala.markdown similarity index 100% rename from source/_cookbook/configuration_yaml_by_skalavala.markdown rename to source/_examples/configuration_yaml_by_skalavala.markdown diff --git a/source/_cookbook/configuration_yaml_by_tinkerer.markdown b/source/_examples/configuration_yaml_by_tinkerer.markdown similarity index 100% rename from source/_cookbook/configuration_yaml_by_tinkerer.markdown rename to source/_examples/configuration_yaml_by_tinkerer.markdown diff --git a/source/_cookbook/configuration_yaml_by_ubhits.markdown b/source/_examples/configuration_yaml_by_ubhits.markdown similarity index 100% rename from source/_cookbook/configuration_yaml_by_ubhits.markdown rename to source/_examples/configuration_yaml_by_ubhits.markdown diff --git a/source/_cookbook/google_maps_card.markdown b/source/_examples/google_maps_card.markdown similarity index 100% rename from source/_cookbook/google_maps_card.markdown rename to source/_examples/google_maps_card.markdown diff --git a/source/_cookbook/notify.mqtt.markdown b/source/_examples/notify.mqtt.markdown similarity index 100% rename from source/_cookbook/notify.mqtt.markdown rename to source/_examples/notify.mqtt.markdown diff --git a/source/_cookbook/owntracks_two_mqtt_broker.markdown b/source/_examples/owntracks_two_mqtt_broker.markdown similarity index 100% rename from source/_cookbook/owntracks_two_mqtt_broker.markdown rename to source/_examples/owntracks_two_mqtt_broker.markdown diff --git a/source/_includes/asides/cookbook_navigation.html b/source/_includes/asides/cookbook_navigation.html deleted file mode 100644 index 8713bb4bf16..00000000000 --- a/source/_includes/asides/cookbook_navigation.html +++ /dev/null @@ -1,26 +0,0 @@ -
- {% assign cookbook = site.cookbook | sort_natural: 'title' %} - - - -
-

{{page.ha_category}}

-
    - {% for recipe in cookbook %} {% if recipe.ha_category == page.ha_category - %} -
  • - {% if recipe.url == page.url %} {{recipe.title}} {% elsif - recipe.ha_external_link %} - {{recipe.title}} - {% else %} - {{recipe.title}} - {% endif %} -
  • - {% endif %} {% endfor %} -
-
-
diff --git a/source/_includes/custom/grid_item_right.html b/source/_includes/custom/grid_item_right.html index a1b637ad6b1..4e0c13cf2b0 100644 --- a/source/_includes/custom/grid_item_right.html +++ b/source/_includes/custom/grid_item_right.html @@ -9,4 +9,4 @@
  • receive a message when the lights turn on while you are not at home?
  • We've got you covered.

    -

    View examples by the community.

    +

    View examples by the community.

    diff --git a/source/_includes/site/header.html b/source/_includes/site/header.html index 61f66d8a414..490246171ff 100644 --- a/source/_includes/site/header.html +++ b/source/_includes/site/header.html @@ -44,7 +44,7 @@
  • Integrations
  • -
  • Examples
  • +
  • Examples
  • Blog
  • Need help?
  • diff --git a/source/_includes/site/sidebar.html b/source/_includes/site/sidebar.html index fa4afecb2eb..ad4dad554bc 100644 --- a/source/_includes/site/sidebar.html +++ b/source/_includes/site/sidebar.html @@ -7,8 +7,6 @@ {% include asides/installation_navigation.html %} {% elsif root == 'common-tasks' %} {% include asides/common_tasks_navigation.html %} - {% elsif root == 'cookbook' %} - {% include asides/cookbook_navigation.html %} {% elsif root == 'lovelace' %} {% include asides/lovelace_navigation.html %} {% elsif root == 'developers' or root == 'help' %} diff --git a/source/_integrations/foscam.markdown b/source/_integrations/foscam.markdown index ace75d06649..2a520fa755b 100644 --- a/source/_integrations/foscam.markdown +++ b/source/_integrations/foscam.markdown @@ -160,4 +160,4 @@ elements: ### Extra CGI Commands -Foscam Webcams which support CGI Commands can be controlled by Home Assistant ([Source](https://www.iltucci.com/blog/wp-content/uploads/2018/12/Foscam-IPCamera-CGI-User-Guide-V1.0.4.pdf)). For an example of how this can be done, see the [Foscam IP Camera Pan, Tilt, Zoom Control](/cookbook/foscam_away_mode_PTZ/) Cookbook entry. +Foscam Webcams which support CGI Commands can be controlled by Home Assistant ([Source](https://www.iltucci.com/blog/wp-content/uploads/2018/12/Foscam-IPCamera-CGI-User-Guide-V1.0.4.pdf)). diff --git a/source/_integrations/generic.markdown b/source/_integrations/generic.markdown index fa9e5f425d9..b316cc5abbe 100644 --- a/source/_integrations/generic.markdown +++ b/source/_integrations/generic.markdown @@ -78,7 +78,7 @@ rtsp_transport: {% endconfiguration %}

    - + Screenshot showing Google Maps integration in Home Assistant front end. Example showing the Generic camera platform pointing at a dynamic Google Map image. diff --git a/source/_posts/2016-02-20-community-highlights.markdown b/source/_posts/2016-02-20-community-highlights.markdown index 7b9a190e179..6d0b889f871 100644 --- a/source/_posts/2016-02-20-community-highlights.markdown +++ b/source/_posts/2016-02-20-community-highlights.markdown @@ -9,7 +9,7 @@ categories: Community Video og_image: /images/blog/2016-02-community-highlights/part-of-the-thing.png --- -Home Assistant land has been busy and a lot of people have been creating awesome stuff. We've added [a cookbook section](/cookbook/) to the website full of examples how you can automate different things. Make sure you take a look and share your own recipes too! +Home Assistant land has been busy and a lot of people have been creating awesome stuff. We've added [a cookbook section](/examples/) to the website full of examples how you can automate different things. Make sure you take a look and share your own recipes too! ### Home automation demo by Part of the Thing diff --git a/source/_posts/2017-10-14-templating-date-time.markdown b/source/_posts/2017-10-14-templating-date-time.markdown index 8ab8b8d7e24..5d82514f1a4 100644 --- a/source/_posts/2017-10-14-templating-date-time.markdown +++ b/source/_posts/2017-10-14-templating-date-time.markdown @@ -30,7 +30,7 @@ Hmmm, ...OK, that's a start. How to get the year? {% raw %}`{{ now() }}`{% endra For the year it would be: {% raw %}`{{ now().year }}`{% endraw %}. I guess that there are rare use cases for `now().resolution`, `now().min` and `now().max` too. -[Hacktoberfest](/blog/2017/09/29/hacktoberfest/) is still running. Working on the documentation is pretty easy. If you know a nice [trick](/cookbook/), want to help improving the page of a platform or just fix typo then please do. Our [Website/Documentation section](/developers/documentation/) contains some requirements which are defined in the [Documentation Standards](/developers/documentation/standards/) and the "[Create a page](/developers/documentation/create_page/)" documentation for other useful details. +[Hacktoberfest](/blog/2017/09/29/hacktoberfest/) is still running. Working on the documentation is pretty easy. If you know a nice [trick](/examples/), want to help improving the page of a platform or just fix typo then please do. Our [Website/Documentation section](/developers/documentation/) contains some requirements which are defined in the [Documentation Standards](/developers/documentation/standards/) and the "[Create a page](/developers/documentation/create_page/)" documentation for other useful details. Thanks to [Egor Tsinko](https://github.com/etsinko) for bringing this issue to our attention. diff --git a/source/_redirects b/source/_redirects index 3de1f0fb905..e30d97235aa 100644 --- a/source/_redirects +++ b/source/_redirects @@ -2119,6 +2119,12 @@ /hassio/installation /installation /hassio/installing_third_party_addons /common-tasks/os#installing-third-party-add-ons /integrations/faadelays /integrations/faa_delays +/cookbook/notify.mqtt /examples#notifications +/cookbook/#example-configurationyaml /examples/#example-configurationyaml +/cookbook/#user-interface /examples/#user-interface +/cookbook/#infrastructure /examples/#infrastructure +/cookbook/#automation-examples /examples +/cookbook /examples # Migrated Community Guides /cookbook/apache_configuration https://community.home-assistant.io/t/reverse-proxy-with-apache/196942 diff --git a/source/cookbook/index.markdown b/source/examples/index.markdown similarity index 59% rename from source/cookbook/index.markdown rename to source/examples/index.markdown index 1d5e4510f94..c45af3e8d26 100644 --- a/source/cookbook/index.markdown +++ b/source/examples/index.markdown @@ -1,8 +1,7 @@ --- -title: "Cookbook" +title: "Examples" description: "Community maintained list of different ways to use Home Assistant." sidebar: false -regenerate: true feedback: false --- @@ -20,20 +19,27 @@ A great place to find popular configurations is on this [automations]: /getting-started/automation/ [github-search]: https://github.com/search?q=topic%3Ahome-assistant-config&type=Repositories -{% assign cookbook = site.cookbook | sort: 'title' %} -{% assign categories = cookbook | map: 'ha_category' | uniq | sort %} +## Popular Blueprints + +This is a list of the most popular [blueprints](/integrations/blueprint) in the [Blueprint Exchange category on the forums](https://community.home-assistant.io/c/blueprints-exchange/53/l/top/all). + +{% for post in site.data.blueprint_exchange_data limit:25 %} + +- [{{post.title}}](https://community.home-assistant.io/t/{{post.id}}) + +{%- for tag in post.tags %} + [`{{tag}}`](https://community.home-assistant.io/tag/{{tag}}) + {%- endfor -%} +{% endfor %} + +{% assign examples = site.examples | sort: 'title' %} +{% assign categories = examples | map: 'ha_category' | uniq | sort %} + {% for category in categories %} + ## {{ category }} - {% if category == 'Automation Examples' %} - - {% elsif category == 'Full configuration.yaml examples' %} -Some users keep a public scrubbed copy of their `configuration.yaml` to learn from. - {% elsif category == '' %} - - {% endif %} - - {% for recipe in cookbook %} + {% for recipe in examples %} {% if recipe.ha_category == category %} {% if recipe.ha_external_link %} * [{{recipe.title}} ]({{recipe.ha_external_link}})