Ani
Ani
HHASS.Agent
Created by Ani on 10/4/2024 in #💬・get-help
Frigate notification to HASS.Agent
as the title says, I want an automation that sends a notification to my windows pc via HASS.Agent. I've tried changing the notify.device entity in the automation but the Frigate blueprint seems to only work with mobile or any devices with the HA app installed.
18 replies
HHASS.Agent
Created by Ani on 9/28/2024 in #💬・get-help
PC On/Off status as sensor?
I have a button on my dashboard to turn the pc on/off remotely using WakeOnLan and Remote Shutdown, but if I turn the PC off or on manually it doesn't update the state of the button. Is there a sensor on HASS.Agent to just purely detect if it's on or off? I have this so far, but it won't change the state of the button when the PC is switched off because HASS.Agent's sensors just become unavailable, they don't report 0. Anyone got any ideas?
alias: PC ON/OFF
description: ""
trigger:
- platform: state
entity_id:
- sensor.pc_memoryusage
from: null
to: null
condition: []
action:
- if:
- condition: numeric_state
entity_id: sensor.pc_currentclockspeed
above: 10
then:
- service: switch.turn_on
data: {}
target:
entity_id: switch.pc
else:
- service: switch.turn_off
target:
entity_id:
- switch.pc
data: {}
mode: single
alias: PC ON/OFF
description: ""
trigger:
- platform: state
entity_id:
- sensor.pc_memoryusage
from: null
to: null
condition: []
action:
- if:
- condition: numeric_state
entity_id: sensor.pc_currentclockspeed
above: 10
then:
- service: switch.turn_on
data: {}
target:
entity_id: switch.pc
else:
- service: switch.turn_off
target:
entity_id:
- switch.pc
data: {}
mode: single
11 replies
HHASS.Agent
Created by Ani on 8/12/2024 in #💬・get-help
PC doesn't get discovered in HA but MQTT picks it up + no notify.your-pc service
Posting these as one support thread in case they're related. I'm not getting a HASS.Agent integration pop up with the device discovered, but it still appears under my list of devices for MQTT. I've added the github repo for media/notfications. I'm picking up the sensors I want and I can send the test notification from the App (except GPU Temps which says Unavailable) but there's no notify service.
35 replies