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: Z2M - IKEA styrbar (4 button) remote for lights | |
description: | | |
Control lights with an IKEA styrbar (4 button) remote. | |
There are 3 different features: | |
- Turn the light group on or off | |
- Increase or decrease the brightness | |
- Immediately switch to the min or max brightness |
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
--- | |
# Shelly 1 - ESPHome yaml config | |
substitutions: | |
device_name: shelly-1 | |
friendly_name: Shelly 1 | |
project_version: "1.0.0" | |
# Define GPIO pins | |
relay_pin: GPIO4 | |
switch_pin: GPIO5 |
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
aresponses = "3.0.0" | |
codespell = "2.3.0" | |
covdefaults = "2.3.0" | |
coverage = {version = "7.6.1", extras = ["toml"]} | |
mypy = "1.11.2" | |
pre-commit = "4.0.0" | |
pre-commit-hooks = "5.0.0" | |
pylint = "3.3.1" | |
pytest = "8.3.3" | |
pytest-asyncio = "0.24.0" |
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
- type: custom:apexcharts-card | |
graph_span: 1d | |
header: | |
show: true | |
title: Electriciteitsprijzen Vandaag (€/kwh) | |
span: | |
start: day | |
now: | |
show: true | |
label: Now |
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
# Step 1 | |
# create main branch locally, taking the history from master | |
git branch -m master main | |
# Step 2 | |
# push the new local main branch to the remote repo (GitHub) | |
git push -u origin main | |
# Step 3 | |
# switch the current HEAD to the main branch |