Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)NO
Posts
1
Comments
130
Joined
2 yr. ago
  • It is definetly the superior plug for everything outdoor and or higher power.

    Its way too bulky for smaller devices.

    Here in Germany we have type F and C, where C is used for low power devices and also fits into the F socket, but not the other way around.

    So even the type F plug would be too big for smaller devices.

  • As a German, afaik if you want to permanently move to germany you need to prove that you can support yourself financially (or someone else will?), so you will need a job offer and or some savings.

    There is no requirement to not be disabled, but being disabled could make fulfilling those requirements more difficult.

  • They also allow you to plug in a grounded Schuko Plug (Its the german one) without connecting the earth, cant get much more dangerous than that. I think the french plug also can be plugged in but it doesnt connect the earth either.

  • Wenn du mit schnelleren mithalten musst, ist es natürlich doof. Wenn man den ganzen Tag dafür Zeit hat, sollte das eigentlich möglich sein (solange die 18% nicht die ganze Zeit sind).

    Wenn man deutlich mehr als seine "Wohlfühlleistung" treten muss, ist man natürlich schnell schlapp.

    Trotzdem muss ich Hut ab sagen, bin dieses Jahr auch nur einmal bisher 100km gefahren (allerdings größtenteils flach).

  • Ich persönlich wäre für eine Obergrenze von großen Klamottenladenketten in der Innenstadt, dann könnten sich andere Läden vielleicht auch die Miete leisten.

    Ganz ernst meine ich das nicht, allerdings hätte es schon paar Vorteile.

  • Here in Germany some McDonalds and Burger King do have self serve drink machines with unlimited drinks, but they are not that many (I would guess 10-20%). Some other fast food chains are more likely to have them, like Subway.

  • That is mostly there for another reason, to distinguish between different voltages.

    When a connector is meant for a different voltage the Earth connector (which is thicker than the rest) gets moved along the circle so it would be impossible to plug it into one with a different voltage. The nub stops you from just turning the plug to make it fit.

    Greetings from Germany from someone who has used these quite a few times, mostly 16A and 32A variants and has never seen a locking one.

  • I think those markings are not because you need to know in which country you are, but because they want to show their borders for a few reasons:

    It is cool.

    It shows their heritage and identity as a border town.

    It helps tourism.

  • I have 10kwh of storage, which helps a lot, and it wasnt that expensive, especially compared to a few years ago.

    Now that sodium ion batteries are actually starting to become available we will see them taking over stationary storage, but for now LiFePo4 works pretty good.

  • homeassistant @lemmy.world
    noobnarski @feddit.de

    Hoymiles HM-600 zero export automation (Nulleinspeisung)

    This is the automation that I use to control a Hoymiles HM-600 Solar Microinverter to achieve a zero export on a battery with some other features. I use an ESP32 with OpenDTU for the communication and a shelly 3em to monitor my usage. I found the core template section somewhere else on the internet and changed it a bit, but its definetly not perfect.

     undefined
        
    alias: zero_energy_export
    trigger:
      - platform: time_pattern
        seconds: /30
        enabled: false
      - platform: mqtt
        topic: solar/114190918869/0/power
        enabled: true
    condition:
      - condition: state
        entity_id: binary_sensor.hm_600_producing
        state: "on"
      - condition: state
        entity_id: binary_sensor.hm_600_reachable
        state: "on"
    action:
      - service: number.set_value
        data_template:
          value: |
            { set newSolarLimit = 250 }    
            {{ newSolarLimit }}
        target:
          entity_id: number.hm_600_limit_nonpersistent_absolute
        enabled: false
      - if:
          - condition: and
            conditions: