JelleWho

joined 2 years ago
[–] JelleWho@lemmy.world 5 points 18 hours ago

Just push to production. No approval required

[–] JelleWho@lemmy.world 3 points 18 hours ago

Home Assistant is super nice. Worse case if you can't figure it out to control the power station. You can always use some power plugs to enable/disable grid charging with a switch.

[–] JelleWho@lemmy.world 6 points 1 day ago

I don't know where you life and what your rules are. But here in EU(NL) is now also possible for renters to put a solar panel on their balcony.

Or avoid all the rules, and use an camping off-grid power system

[–] JelleWho@lemmy.world 2 points 1 day ago (2 children)

Maybe fridge/freezer?

[–] JelleWho@lemmy.world 3 points 1 day ago (2 children)

Ahh, a power station. I have on of those too for camping and using it at home to let the 3D printer run off-grid on some spare camping solar panels.

For the house I've used a hybrid invertor. It can do all of the same functions but can do much more power, and it can also zero the meter (no import and export, since it automatically tries to compensate for your usage, whole house-wide)

Are there any platforms you use to try and outmate things yet? Or integrate it to track power usage?

[–] JelleWho@lemmy.world 3 points 1 day ago (4 children)

Nice! Good to see more people trying to run on there own power more.

Do you have/did you check into a hybrid invertor, or do you manual swap the power around?

[–] JelleWho@lemmy.world 10 points 1 day ago* (last edited 1 day ago) (13 children)

So try and ban 3D printing guns, because that's too dangerous. But still sell guns at wallmarkt to be bought without background checks? I have the feeling something is a little off here...

[–] JelleWho@lemmy.world 5 points 4 days ago (12 children)

50% of the people is more stupid than average

[–] JelleWho@lemmy.world 1 points 5 days ago

I seem to mis the "meme" part in the story? Can someone enlighten me?

[–] JelleWho@lemmy.world 0 points 1 week ago

I believe no company who makes there own hub allows 3rd parties? That's why I have a zigbee dongle in HA

[–] JelleWho@lemmy.world 4 points 2 weeks ago (1 children)
  1. Start investing in (green/cheap) power
  2. Dynamic contracts (off-peak charging)

Pulling oil from the ground is so much less sustainable, and it will only get more expensive

[–] JelleWho@lemmy.world 1 points 2 weeks ago

Maybe that's an IOS thing or something? WIFIman from Unifi/Ubiquity works wonders for me

 

The hood above the hob had fallen off. The plugs stripped the wall. Made the holes bigger and used better plugs. Also put in some construction glue into the holes for good measure.

1
submitted 2 months ago* (last edited 2 months ago) by JelleWho@lemmy.world to c/homeassistant@lemmy.world
 

As many of you probably know, Google does not allow you to change the buttons of their chromecast remote. We don't use Netflix at all, but we use Jellyfin. I just though of it and tested it, but Home assistant allows you to track the chromecast and functionality replace one app with another. Making the button now open the jellyfin app

alias: Replace google chromecast nexflix with whoflix
description: >-
  Google does not allow you to re-map the netflix button, but we can launch
  jellyfin when its trying to launch netflix. And thus effectivly replacing the
  button
triggers:
  - trigger: state
    entity_id:
      - remote.woonkamer_tv
    attribute: current_activity
    to:
      - com.netflix.ninja
conditions: []
actions:
  - action: media_player.play_media
    metadata: {}
    target:
      entity_id: media_player.woonkamer_tv
    data:
      media:
        media_content_id: org.jellyfin.androidtv
        media_content_type: app
mode: single
 

I keep having my home assistant freese when I try and activate HAV, been debugging it but didn't found anything yet to solve it.

Buttttt...

What I did find is an easter egg in the source code. It's "HA" in morse code. If you put that into the main button on the device it activates something :)

 

I've already added a LED strip below the kitchen to give some ambient and status lighting (ESP32 with WS2812B). And I also already had a power plug that measured the power (Athom smart plug V2). I've now also a simple door sensor (aqara zigbee). I drilled a hole in the neighbourinf cabinet and embedded some magnet, and placed the door sensor on the dishwasher door. Our dishwasher has the feature to auto open the door when it's done to air dry it.

This all I now have put into a automation to calculate when the dishwasher is; Planned, Running, Finisched, and now emthied too!

No more asking if the dishwasher is going to run tonight, or if its clean. It will tell you with the LED strip!

description: ""
triggers:
  - type: power
    device_id: c1ec0c6f63d1ecd5d3db78555bcdc1b0
    entity_id: ff1351d92d6d4c744974dfbe0a5ad055
    domain: sensor
    trigger: device
    above: 1
    id: sence
  - type: power
    device_id: c1ec0c6f63d1ecd5d3db78555bcdc1b0
    entity_id: ff1351d92d6d4c744974dfbe0a5ad055
    domain: sensor
    trigger: device
    above: 10
    for:
      hours: 0
      minutes: 1
      seconds: 0
    id: running
  - type: power
    device_id: c1ec0c6f63d1ecd5d3db78555bcdc1b0
    entity_id: ff1351d92d6d4c744974dfbe0a5ad055
    domain: sensor
    trigger: device
    below: 1
    for:
      hours: 0
      minutes: 1
      seconds: 0
    enabled: true
    id: done
  - type: not_opened
    device_id: 7e88b779bd6eb8ca35bf872479867fca
    entity_id: 4dbe83576f52026e60073aea8ea105b0
    domain: binary_sensor
    trigger: device
    for:
      hours: 0
      minutes: 0
      seconds: 10
conditions:
  - alias: from_state != unavailable
    condition: template
    value_template: "{{ trigger.from_state.state != 'unavailable' }}"
actions:
  - alias: Change state
    choose:
      - conditions:
          - condition: state
            entity_id: input_text.vaatwasser_state
            state: "off"
          - condition: numeric_state
            entity_id: sensor.smart_plug_23_power
            below: 10
            above: 1
        sequence:
          - data:
              value: sensing
            action: input_text.set_value
            target:
              entity_id: input_text.vaatwasser_state
      - conditions:
          - condition: numeric_state
            entity_id: sensor.smart_plug_23_power
            above: 10
        sequence:
          - data:
              value: running
            action: input_text.set_value
            target:
              entity_id: input_text.vaatwasser_state
      - conditions:
          - condition: state
            entity_id: input_text.vaatwasser_state
            state: running
          - condition: numeric_state
            entity_id: sensor.smart_plug_23_power
            below: 1
        sequence:
          - data:
              entity_id: input_text.vaatwasser_state
              value: done
            action: input_text.set_value
    default:
      - data:
          entity_id: input_text.vaatwasser_state
          value: "off"
        action: input_text.set_value
  - action: script.update_and_shown_led_strip_status
    metadata: {}
    data: {}
mode: queued
max: 3
 

The tip of my bed probe bltouch broke (new one underway, but the print must go) I glued on some filament. And it seems to just work fine again!

view more: next ›