Skip to content

Instantly share code, notes, and snippets.

@adrianslabu
adrianslabu / dehumidifier.yaml
Created September 16, 2025 20:41
02. Youtube - Turn ANY Device into a Smart Device with ESP8266
esphome:
name: dehumidifier
friendly_name: Dehumidifier
on_boot:
priority: -100
then:
- lambda: |-
if (id(state).state) {
id(button_power).press();
}
@adrianslabu
adrianslabu / 1. fan.yaml
Last active April 10, 2026 19:52
03. Youtube - Turn a regular FAN into a SMART fan
esphome:
name: fan-gym
friendly_name: Fan Gym
on_boot:
- if:
condition:
switch.is_off: child_lock
then:
- lambda: |-
if (id(switch_rotation).state) { id(rotation).turn_on(); }
@Resinchem
Resinchem / custom_panel.yaml
Created February 23, 2026 11:51
Add Developer Tools back to Home Assistant Side Bar
# Add DevTools back to Sidebar
panel_custom:
- name: panel_develop
sidebar_title: Developer Tools
sidebar_icon: mdi:hammer
url_path: 'config/developer-tools'
module_url: /api/hassio/app/entrypoint.js
embed_iframe: true
require_admin: true