This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
systembridgeconnector>=5.0.0.dev2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
blueprint: | |
name: Conversation Agent - Weather update (No LLM) | |
description: A blueprint for a conversation agent that provides weather updates (no LLM) | |
domain: automation | |
input: | |
response_text: | |
name: Response Text | |
description: The response text to use when the weather is requested | |
default: >- | |
The current weather is {{ states(weather_entity) }} with a temperature of {{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
blueprint: | |
name: Conversation Agent - Weather update | |
description: A blueprint for a conversation agent that provides weather updates | |
domain: automation | |
input: | |
agent_id: | |
name: Agent ID | |
description: The ID of the conversation agent (Using OpenAI or related LLM service) | |
selector: | |
conversation_agent: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Write-Host "Make sure you have ran clone.ps1 and have winget, Git and Python 3.12 installed before running this script!" | |
Read-Host -Prompt "Press Enter to continue" | |
Write-Output "Upgrading Python 3.12..." | |
winget upgrade Python.Python.3.12 | |
Write-Output "Update pip, setuptools and wheel..." | |
python -m pip install --upgrade pip setuptools wheel | |
Write-Output "Uninstall any existing packages..." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Write-Host "Make sure you have winget, GitHub CLI, Git and Python 3.12 installed before running this script!" | |
Read-Host -Prompt "Press Enter to continue" | |
Write-Output "Upgrading GitHub CLI..." | |
winget upgrade GitHub.CLI | |
Write-Output "Upgrading Git..." | |
winget upgrade Git.Git | |
Write-Output "Upgrading Python 3.12..." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
blueprint: | |
name: "Conversation Agent Agenda to Input Text" | |
description: |- | |
# Conversation Agent Agenda to Input Text | |
Conversation agent outputs input text based on the upcoming calendar agenda, location, and weather. Based on [@allenporter](https://github.com/allenporter)'s [Conversation Agent Agenda Notification](https://gist.github.com/allenporter/e70d9eb090c7dbdd593cf526e07b4abe) Blueprint. | |
## Setup | |
- Create an [input_text](https://www.home-assistant.io/integrations/input_text/) entity with a character limit of at least 200 characters. This will be used to store the output of the conversation agent. For example, `input_text.agenda`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
blueprint: | |
name: Camera snapshot and actions when binary sensor is triggered | |
description: >- | |
Creates a snapshot and triggers a subsequent action when a binary sensor is triggered | |
domain: automation | |
input: | |
binary_sensor: | |
name: Binary sensor | |
description: The sensor wich triggers the snapshot creation | |
selector: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- cards: | |
- entity: climate.central_heating | |
hide: | |
mode: true | |
state: true | |
sensors: | |
- entity: sensor.living_room_humidity | |
name: Humidity | |
- entity: sensor.outside_temperature | |
name: Outside Temperature |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
esphome: | |
name: central_heating | |
platform: ESP8266 | |
board: esp01_1m | |
board_flash_mode: dout | |
# Automation turning on the blue status LED once T1 is booted up | |
on_boot: | |
priority: -10 | |
then: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
esphome: | |
name: teckinsp23001 | |
platform: ESP8266 | |
board: esp8285 | |
wifi: | |
ssid: !secret wifi_ssid | |
password: !secret wifi_password |
NewerOlder