diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml new file mode 100644 index 0000000..36e490a --- /dev/null +++ b/.github/workflows/blank.yml @@ -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. diff --git a/Licence.md b/Licence.md new file mode 100644 index 0000000..1cdffcc --- /dev/null +++ b/Licence.md @@ -0,0 +1 @@ +Creative Commons Lizenzvertrag
Dieses Werk ist lizenziert unter einer Creative Commons Namensnennung - Nicht-kommerziell - Weitergabe unter gleichen Bedingungen 4.0 International Lizenz. diff --git a/README.md b/README.md index 4f908cd..4066587 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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. diff --git a/package.json b/package.json new file mode 100644 index 0000000..15cd146 --- /dev/null +++ b/package.json @@ -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" + ] +}