Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# This is a basic workflow to help you get started with Actions

name: CI

# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [master]
pull_request:
branches: [master]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

# bundling a npm package and publish it
- name: Run a one-line script
run: |
echo bundling a npm package and publish it
echo call npm install
npm install
echo call npm publish
npm publish --registry

# Runs a set of commands using the runners shell
- name: Run a multi-line script
run: |
echo Add other actions to build,
echo test, and deploy your project.
1 change: 1 addition & 0 deletions Licence.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons Lizenzvertrag" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" /></a><br />Dieses Werk ist lizenziert unter einer <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">Creative Commons Namensnennung - Nicht-kommerziell - Weitergabe unter gleichen Bedingungen 4.0 International Lizenz</a>.
36 changes: 31 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,36 @@
# BatteryBox
# Hanni - T5 Multivan

BatteryBox
## Inhalt

# Situation
1. Allgemein
2. Startup-Phase

While I was camping with my T5 Multivan - used at the one hand as an usual car and at the other hand as a camper van, I had the problem with the 12V power supply for my bus. Since I had just the starter battery, I had two times the situation, that the cooling box and other equipment has consumed too much energy from the starter battery so that I couldn't start the motor. I was forced to find a solution. The main guideline was: it should be as cheap as possible.
-

## Allgemeines

Seit 2019 bin ich Besitzer eines VW T5 Multivan. Sein Name ist Hannibal - kurz Hanni. Es wurde ein Multivan, da ich einerseits ein Fahrzeug wollte, das ich mehr oder weniger als Alltagsauto fahre. Und andererseits ich die Möglichkeit nutzen wollte, damit in den Camping-Urlaub zu fahren. Damit schied ein voll ausgebautes Wohnmobil aus.
Da ich gerne selbst handwerke, hatte ich anfangs noch die Idee einen VW Transporter selbst auszubauen. Doch ich entschied mich aus praktischen Gründen für einen Multivan. Die praktischen Gründe waren für mich:

- mindestens 3 Sitzplätze (bei bedarf bis zu 7)
- Integrierte Bodenschienen zur einfachen Befestigung von Sitzen und Campingausrüstung (z.B. Bett)
- Vorhandene Isolierung und Innenverkleidung

Neben den Anschaffnungskosten, zugegeben auch nicht ganz günstig gegenüber einem Transporter, wollte ich die Kosten für den Umbau als Camper so gering wie möglich halten. Und immer unter der Prämisse, das Auto nicht exclusiv als Camper zu nutzen.

## Startup-Phase

Nachdem ich den Bus hatte, wollten ich so schnell wie möglich die Camping-Tauglichkeit testen. Das Wichtigste war eine Schlafmöglichkeit zu haben.

### Der Schlafplatz

Das Multiflex-Board ist ja wirklich eine coole Sache. Aber viel zu teuer. So habe ich mir im Baumarkt etwas 54x54mm Hobelware besorgt. Damit habe ich mir ein Bettgestell gebaut, das ich mit passenden Schrauben für die Multivan-Schienen befestigt habe.

Einen Lattenrost (200x140cm) gabs kostenlos bei Kleinanzeigen. Und idealerweise gibt es auch noch vorgefertigte Matratzen für den Multivan.

### Erster Ausflug

Der erste Ausflug fand Statt

# Idea

Expand Down Expand Up @@ -35,4 +61,4 @@ And I want to use ist for a "quite" independent "Power-Supply". My expectations

# Disclaimer

The schematic here on GitHub is just an proof of concept. It doesn't fulfill all the electrical requirements regarding safety and established standards. This battery is a self made project and must not be created if you aren't a electrical specialist. Building the battery box is on your own risk.
The schematic here on GitHub is just an proof of concept. It doesn't fulfill all the electrical requirements regarding safety and established standards. This battery is a self made project and must not be created if you aren't a electrical specialist. Building the battery box is on your own risk.
23 changes: 23 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "@sjuergen/batterybox",
"version": "0.0.0",
"description": "independent battery box",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sjuergen/BatteryBox.git"
},
"author": "Juergen Seidel",
"license": "SEE LICENCE IN Licence.md",
"bugs": {
"url": "https://github.com/sjuergen/BatteryBox/issues"
},
"homepage": "https://github.com/sjuergen/BatteryBox#readme",
"files": [
"README.md",
"LICENSE.md"
]
}