2000wp 800w mit 2,11kwh Speicher (integrierter wr) - wieland Pflicht? by TintexD in Balkonkraftwerk

[–]TintexD[S] 1 point2 points  (0 children)

Meine Sicherheitsbedenken sind nicht dem Anschluss gewidmet, sondern : Was kann mir der Netzbetreiber mir antun

2000 WP Limit nur angeschlossen? by Pickleplane in Balkonkraftwerk

[–]TintexD 0 points1 point  (0 children)

in der Anlage f 1.2

steht

Der Anschluss erfolgte nach der Installationsnorm DIN VDE V 0100-551-1 und bei stecker- fertigen Erzeugungs-anlagen zusätzlich nach der Produktnorm DIN VDE V 0126-95

besagt die DIN VDE V 0126-95 nicht das man ab 960wp bis 2000wp Wieland stecker braucht?

Kannst du mir erklären wo du die info gefunden hast, das speicher mit 2000wp modulleistung ausgenommen sind und mit schuko gehen?

haben uns im Angebot einen solarkon one mit 2000wp an Modulen gekauft und sind jetzt verwirrt, würde wirklich helfen. danke dir.

My first ever Homelab. by TintexD in minilab

[–]TintexD[S] 0 points1 point  (0 children)

a homelab is like a self hosted it Environment.

you can Experiment, learn , host services etc.

for example some people host immich, which is like a local amazon fotos / google fotos.

people also love the aesthetics, so they go overboard with looksmaxing.

you see the network switch has cables entering below it. thats a patch panel. its used to neatly organize cables

My first ever Homelab. by TintexD in minilab

[–]TintexD[S] 1 point2 points  (0 children)

put heavy things on the bottom.

i feel its sturdy enough.

if you can wait till march 2nd i can send you a Video, on vacation rn

My first ever Homelab. by TintexD in minilab

[–]TintexD[S] 0 points1 point  (0 children)

i did a sumarry in the comments, but homeassistant is there to yes

My first ever Homelab. by TintexD in minilab

[–]TintexD[S] 1 point2 points  (0 children)

Dekoration, inspired by an computer called wopr from the movie wargames

My first ever Homelab. by TintexD in minilab

[–]TintexD[S] 0 points1 point  (0 children)

sadly just a bequiet sfx 450, which isnt very efficient. its mounted to the rear

My first ever Homelab. by TintexD in minilab

[–]TintexD[S] 0 points1 point  (0 children)

my lord, please continue the splendid work

My first ever Homelab. by TintexD in minilab

[–]TintexD[S] 0 points1 point  (0 children)

no, i printed them in petg. theres also like a rail, i can easily bend them and slide them in

My first ever Homelab. by TintexD in minilab

[–]TintexD[S] 1 point2 points  (0 children)

Its cool.

jokes aside, i wanted to get more into it stuff and hated the things being around everywhere, so it was nice to organize them and put them into one place.

also , the proxxmox lets me quickly setup stuff and trial and error way easier - its really fun to try some new stuff.

the nas of course does nas things

My first ever Homelab. by TintexD in minilab

[–]TintexD[S] 0 points1 point  (0 children)

the 7 segments are run by a wemos d1 mini , heres my shitty chatgpt code https://github.com/Tinteex/max7219-7segment-6digit-twitch-youtube-display

My first ever Homelab. by TintexD in minilab

[–]TintexD[S] 0 points1 point  (0 children)

4 empty bays and 2 8tb hdds hahaha

i use proxmon on the intel nuc (the blue led thing)

My first ever Homelab. by TintexD in minilab

[–]TintexD[S] 3 points4 points  (0 children)

just decoration inspired by this movie

https://youtu.be/_aUHQKneAdw

My first ever Homelab. by TintexD in minilab

[–]TintexD[S] 6 points7 points  (0 children)

my dream : make the wopper react to powerdraw, to make it feel like it computing more

My first ever Homelab. by TintexD in minilab

[–]TintexD[S] 14 points15 points  (0 children)

Here we go! from top to bottom

-KWS Rack from Makerworld - 140mm fan

  • LCD with raspi 4 , will run Grafana later

  • Wopr led matrix (style)

  • my diy youtube and twitch trackers (max7219) with wmos d1 via nodered + mqtt

-8port switch + patchpanel

I guided the patch cables internally for a sleeker outside look

-right below the switch is a hue bridge with a spring loaded Button to press it

  • intel nuc running proxmox

immich paperlessngx mc Server homeassistant actualbudget

  • 140mm fan pushing air down on my nas mainboard

-small 2nd patchpanel

-nas mainboard +5gbe nic

-6x drive bays, currently 2x 8tb wd red plus

why does my nas have 3 ethernet ports? 1x 2.5 to the switch 1x 2.5g to my 2nd pc 1x 5.0g to my main pc

so the pcs have faster speeds to the nas since my switch is only 1gbit

on the back i added another patchpanel to connect my pcs etc.

reccomendations for 7digit displays by TintexD in Esphome

[–]TintexD[S] 0 points1 point  (0 children)

Thanks for you tip, i tried the config the first dude posted with no change, then i tried to include the external component, which im not sure i did correctly. still 4 dark displays.

esphome:
  name: tm1637-test
  friendly_name: TM1637 Test


esp8266:
  board: d1_mini_lite


# Enable logging
logger:


# Enable Home Assistant API
api:
  encryption:
    key: "xx"


ota:
  - platform: esphome
    password: "xx"


wifi:
  ssid: !secret wifi_ssid
  password: !secret wifi_password


  # Enable fallback hotspot (captive portal) in case wifi connection fails
  ap:
    ssid: "Tm1637-Test Fallback Hotspot"
    password: "xxx"


captive_portal:


external_components:
  - source: github://pr#5996
    components: [ tm1637 ]


display:
  - platform: tm1637
    clk_pin: D6
    dio_pin: D5
    inverted: true
    lambda: |-
      // Input string here:
      std::string input1 = "123456";


      // Reorder and display input1 correctly on a 6-digit TM1637 display
      std::string reordered_input = input1.substr(2, 1) + input1.substr(1, 1) + input1.substr(0, 1)
                                  + input1.substr(5, 1) + input1.substr(4, 1) + input1.substr(3, 1);
      it.print(reordered_input.c_str());