This commit is contained in:
Motiejus Jakštys 2023-11-14 18:29:44 +02:00
parent 5768552a93
commit ef164af0f3
1 changed files with 20 additions and 0 deletions

View File

@ -34,6 +34,7 @@ in {
];
config = {
default_config = {};
http = {
use_x_forwarded_for = true;
trusted_proxies = ["127.0.0.1"];
@ -46,6 +47,25 @@ in {
}
];
};
wake_on_lan = {};
automation = [
{
alias = "Turn On Living Room TV with WakeOnLan";
trigger = [
{
platform = "webostv.turn_on";
entity_id = "media_player.lg_webos_smart_tv";
}
];
action = [
{
service = "wake_on_lan.send_magic_packet";
data = {mac = "74:e6:b8:4c:fb:b7";};
}
];
}
];
};
};
};