5 May 2025
DIY-Wasserenthärtungsanlage für Gartenbewässerung
by M2vH
Diese Anleitung beschreibt den Bau einer regenerierbaren Wasserenthärtungsanlage mit Ionenaustauscherharz zur Versorgung kalkempfindlicher Pflanzen mit weichem Wasser.
Komponentenliste
Komponente | Beschreibung |
---|---|
Filtergehäuse (10”) | Standard-Wasserfiltergehäuse mit ¾”-Anschlüssen |
Nachfüllbare Filterkartusche | Leere Kartusche für Harzfüllung |
Kationenaustauscherharz (Na⁺-Form) | z. B. Lewatit S1567, regenerierbar mit Kochsalz |
Gardena-Schlauchadapter (2×) | Für Ein- und Ausgang zum Gartenschlauch |
Rückschlagventil (optional) | Verhindert Rückfluss bei Regeneration |
Eimer mit Deckel | Für Salzlösung zur Harz-Regeneration |
Trichter | Zum Befüllen der Kartusche |
Teststreifen zur Wasserhärte | Zur Kontrolle vor und nach der Filterung |
Aufbau
- Kartusche mit Harz befüllen, leicht schütteln, nicht zu fest stopfen.
- Kartusche in Filtergehäuse einsetzen.
- Filtergehäuse mit Schlauchadaptern verbinden (Eingang = Leitung, Ausgang = Brause).
- System gründlich durchspülen (2–3 Min.) – danach ist es einsatzbereit.
Regeneration des Harzes
- Solelösung herstellen: 200–300 g Salz pro Liter Wasser (ca. 5–10 L insgesamt).
- Sole rückwärts durch das Filtergehäuse laufen lassen (Ausgang → Eingang).
- Mit klarem Wasser nachspülen, bis keine Salze mehr messbar sind.
Hinweise
- Filter regelmäßig regenerieren (nach 100–300 L, je nach Wasserhärte).
- Harz nie austrocknen lassen.
- Rückspülen langsam durchführen für bestmögliche Regeneration.
Letzte Aktualisierung: Mai 2025
tags: garden - water - m2vh18 December 2019
My layout post!
by M2vH
Hello World!
A new <h3>
title
The quick brown Fox jumps over the Lorem Ipsum warum auch immer.
tags: test - helloWorld - m2vh17 December 2019
Passed Azure Fundamentals Certification
by M2vH
How to do it
Follow the Learning Path and register for an Exam.
Additional check some of the free Trainings on PluralSight
like this one here.
16 December 2019
Serve GitHub Jekyll locally
by M2vH
Guess, we want to debug a GitHub website locally. Therefore I installed Jekyll for Windows.
About How to install Ruby on Windows
is topic of another post.
Add a Gemfile
to repository
We need some Ruby gems locally. We add a Gemfile
with the following content:
# file: ./Gemfile
source "https://rubygems.org"
gem "github-pages", group: :jekyll_plugins
Then we run bundle install
.
Now we receive a bunch of gems, including the build-in themes
for GitHub pages.
Add a branch to repository
Because I want to check everything locally before pushing to origin/master
I created a seperate branch serveLocally
.
Command to build the local GitHub page
- checkout
serveLocally
branch
bundle exec jekyll serve
I can reach the GitHub page locally at localhost:4000
.
Whats next
Next step is switching back to master
branch, merge the serveLocally
and push
to GitHub.
Check your Activity log
on Github. It should be found like so:
https://github.com/<YourAccount>/<YourAccount>.github.io/deployments
12 December 2019
My first post!
by M2vH
This is the first post to check the functionality of Jekyll blog mechanism.
I hope I will understand it ;-)
Hello World!
The title of this post is set using page.title
as shown here
## {{ page.title }}
Writing about code id pretty easy.
Highlight some code
or a complete codeblock like the following:
highlight inline code like so: `code`
Use lexer inside a codeblock to get the code coloured output
```csharp
// your code goes here
```
will look this way:
// lexer: csharp <- add comment
using System;
namespace M2vH{
class Me{
string name = "Marco M. von Hagen";
}
}
Example of lexers.html.XmlLexer and XAML
<!-- lexer: xml -->
<Page
x:Class="Prototype_UWP_CS.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Prototype_UWP_CS"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Grid>
</Grid>
</Page>