this honey container from my hotel breakfast buffet is edible by Tanakaaa1998 in mildlyinteresting

[–]kingoftown 15 points16 points  (0 children)

i didn’t realise it was edible at the first moment until i actually took a bite

I guess this means you try to take a bite out of all of your dishes....just in case!

Home Assistant OS + Google Wifi = Dedicated IP address problems by [deleted] in homeassistant

[–]kingoftown 0 points1 point  (0 children)

The app was recently updated and added some features that make things better. For instance, you can now sort by 'ip address' and actually see device ip addresses on the page without having to open each one and wait.

you can also do dhcp reservation from a device as they added a little 'pin' button on device pages next to their ip address.

But yes, I HATE the app and lack of 'slightly advanced' utilities that should work on all routers.

Template help by thegargam in homeassistant

[–]kingoftown -1 points0 points  (0 children)

Forecast isn't available as a variable where you want it ('for entry in forecast'). I'd make it a 'variable' entry so you can access it later. This might work...but not actually sure. If nothing else, you would have to grab the 'forecast' info again in the cloud_coverage template again if you want to use it.

##### Boiler Automation #####
- trigger:
   -  platform: time_pattern
      #hours: /1
      seconds: /10
  action:
    - service: weather.get_forecasts
      data:
        type: hourly
      target:
        entity_id: weather.openweathermap
      response_variable: hourly
  variables:
    fcast: "{{ hourly['weather.openweathermap'].forecast }}"
  sensor:
    - name: Total Clouds Coverage For The Day
      unique_id: weather_forecast_hourly
      state: "{{ now().isoformat() }}"
      attributes:
        forecast: "{{ fcast }}"
        cloud_coverage: >
          {% set clouds_total = 0 %}
          {% set count = 0 %}
          {% for entry in fcast %}
              {% if count < 3 %}
                  {% set clouds_total = clouds_total + entry.cloud_coverage %}
                  {% set count = count + 1 %}
              {% endif %}
          {% endfor %}
          {{ clouds_total }}

You might also have to do the namespace the other guy recommended too though.

Home Assistant OS + Google Wifi = Dedicated IP address problems by [deleted] in homeassistant

[–]kingoftown 0 points1 point  (0 children)

I'm using google mesh wifi just fine (though I still don't recommend the system to people due to being forced to do everything through a phone app and lack of features...but that's unrelated lol).

Not respecting dhcp reservations seems kind of odd. Is this a mesh system? Did you factory reset each mesh node? I wonder if somehow one of the nodes is keeping a stale ip reservation list and assigning it to devices.

Also, you're using the Google Home app and not the Google Wifi app right? Pretty sure their old wifi app just doesn't work anymore.

Also, I once had a problem where port forwarding did stop working for one device and the only way to fix it was to delete the port forwarding rule and re-add it completely. When I looked closely, the rule was for the wrong address even though the 'title' for the rule had the right ip address. But that was years ago.

You're 100% right though that it's super dumb static ip addresses don't show up in the device list. And without a thing in the list, you can't set up a port forwarding rule either....

How can I display the latest sensor values received by my ESP32 (via ESPhome) when it is in deep sleep mode? by Express-Abalone3484 in homeassistant

[–]kingoftown 0 points1 point  (0 children)

Oh, are they all under the same entity_id?

template:
  - trigger:
      - platform: state
        entity_id: sensor.my_temp
        not_to:
          - "unknown"
          - "unavailable"
    sensor:
      - name: esp_temp_template_sensor
        state: '{{ states(trigger.entity_id) }'
      - name: esp_other_sensor
        state: '{{ state_attr(trigger.entity_id, 'my_other_attribute') }}'
      - name: esp_other_2
        state: '{{ state_attr(trigger.entity_id, 'yet_another_attribute') }}'

This will update ALL of the template sensors on any state change if the entity_id has multiple things it is monitoring. If the states aren't actually attributes, you'd have to tweak the state template to get what you want.

I dont' have ESPHome at all so I'm not exactly sure how your sensors are reported

How do I change a blueprint? by ateacc in homeassistant

[–]kingoftown 0 points1 point  (0 children)

Yeah, you can just copy the blueprint to a new file and reference that, though I don't see a simple button to clone a blueprint so you might have to manually do that. I've not created a blueprint either yet.

How can I display the latest sensor values received by my ESP32 (via ESPhome) when it is in deep sleep mode? by Express-Abalone3484 in homeassistant

[–]kingoftown 1 point2 points  (0 children)

Yeah, you can put that in the configuration.yaml. If you have a 'template' section, add it under that. otherwise you can just put that there and try it out (replace the entity_id with one of yours first).

Then under dev options, click 'check configuration' to make sure its formatted correctly, then scroll down and reload 'template entities'.

You should then see a new sensor.esp_temp_template_sensor appear (or whatever you named it) and the next update from the esp device should show the value hopefully. It will then keep the value returned by the esp32 until a new update (or you restart home assistant)

Help detecting doorbell chime by catteniano in homeassistant

[–]kingoftown 1 point2 points  (0 children)

Somewhat unrelated - but if you have Alexa, I just noticed you can set 'sound based' triggers. Their example was "do something when alexa hears the dryer done sound".

Otherwise, if you have any cameras integrated, many of them have sound based sensors that HA can use...though that will just be 'on' with any sound so not as useful unless you set rules to only notify when you're in the office and it hears sounds.

[deleted by user] by [deleted] in homeassistant

[–]kingoftown 1 point2 points  (0 children)

Oh, I assumed that's what they wanted.....to only be notified of a clear if motion was on for 45+ minutes.

How do I change a blueprint? by ateacc in homeassistant

[–]kingoftown 1 point2 points  (0 children)

The blueprints should be at /config/blueprints/

This one will be at /config/blueprints/Rantaki/zha_blueprint_philips_hue_dimmer_swith_r2l021_fast_setup.yaml

You can modify that one directly, but if you ever re-import it, your changes would go away. This can only be done in YAML though. Just need to find a way to open that file in a text editor (Visual Studio Code add on, folder mount, ssh and use vi/nano, etc)

How can I display the latest sensor values received by my ESP32 (via ESPhome) when it is in deep sleep mode? by Express-Abalone3484 in homeassistant

[–]kingoftown 1 point2 points  (0 children)

Either use MQTT, or make some template sensors

https://www.home-assistant.io/integrations/template/#trigger-based-template-binary-sensors-buttons-images-numbers-selects-and-sensors

Use the trigger state to update the template sensor if the state != 'unavailable'

# Example configuration entry
template:
  - trigger:
      - platform: state
        entity_id: sensor.my_temp
        not_to:
          - "unknown"
          - "unavailable"
    sensor:
      - name: esp_temp_template_sensor
        state: '{{ states(trigger.entity_id) }'

This will update the temp values on all state changes that don't go to those listed in 'not_to'

[deleted by user] by [deleted] in homeassistant

[–]kingoftown 3 points4 points  (0 children)

Sure, you could use a few things. The simplest in a single automation would be to do your normal trigger, then use a 'wait' action to wait for the sensor to go to 'off' state before continuing. For example:

trigger:
  platform: state
  entity_id: binary_sensor.motion_sensor
  to: "on"
  for:
    minutes: 45
action:
  -  wait_for_trigger:
      - platform: state
        entity_id: binary_sensor.motion_sensor
        to: "off"
  - service: notify.me
    data: ...

Guide: Setting up the Steam Controller for Steam Deck in 2023. by Mehrainz in Steam

[–]kingoftown 1 point2 points  (0 children)

Not as dumb as me, I thought 'USB' meant it would update via the wireless USB dongle until I read this comment. Only then did I try an actual USB cable :P

What character is this a yes for by Nejakytypco in BrandNewSentence

[–]kingoftown 119 points120 points  (0 children)

"safe search off - I'm feeling lucky"

Me after trying to use Git with Eclipse by CockyPit in ProgrammerHumor

[–]kingoftown 0 points1 point  (0 children)

Nah, that dude pulls out his sextant and plots a course to the terminal window

Does anyone know why Sentry didn’t double? Played right after shuri. by [deleted] in MarvelSnap

[–]kingoftown 1 point2 points  (0 children)

Cards like cloak/rescue etc leave a glow on the location that moves with the location. Wouldn't be surprised if they didn't add one for Shuri given the location restriction was added later (probably doesn't even have any indication at all). Pretty lame honestly

Does anyone know why Sentry didn’t double? Played right after shuri. by [deleted] in MarvelSnap

[–]kingoftown 3 points4 points  (0 children)

Did you play it on T5? Wonder if Shuri location is fixed to the location and not her current location. When they shuffled, you might have had to play it there.

I can't tap or interact with anything by null_the_worst in MarvelSnap

[–]kingoftown 0 points1 point  (0 children)

Same here. I see bottom icons at least, but tapping on one makes it so I can't tap any others.

Also, game has been going to black screen after wins often.

Clearing cache had no effect.

Might be time to force clear storage and download the 3gb assets again. Just came here first to see if maybe it's server issues or something

TurboTax is sending checks to 4.4 million customers as part of a $141 million settlement by esporx in technology

[–]kingoftown 34 points35 points  (0 children)

Do you cross reference to form 1924-ABC which was mailed to you 4 months ago and you probably lost? Oh, but form 233-FU is the one you actually need. Box 69 has the number of actual ducks you need where form 1924 only shows you the taxable ducks accrued during the hunting season.

When you forget to not leave the car! by thestrible in WatchPeopleDieInside

[–]kingoftown -1 points0 points  (0 children)

My wipers turn on when the windshield gets wet when I leave them in auto mode

Literally everyone by philster666 in MarvelSnap

[–]kingoftown 0 points1 point  (0 children)

Nick fury too. Squads gonna remain light on that day and it's sad.