Home » Diverse Projekte
Category Archives: Diverse Projekte
Victron Akku laden
- unabhängigkeitsrechner
- PV forecast
- günstig laden mit aWattar & NodeRed
- https://www.youtube.com/watch?v=yo6W1ZxcPY8
- https://www.google.at/search?q=Dynamic+ess
- https://www.victronenergy.com/live/drafts:dynamic_ess
- https://github.com/victronenergy/dynamic-ess
- https://www.youtube.com/@SchattenPV/videos
- https://www.youtube.com/watch?v=WMfveQONOkc
- https://www.youtube.com/watch?v=qZesRt9Jos8
- https://sun.langheiter.at/
amazon
- https://amzn.to/3N75GpN
- https://amzn.to/401j72x == Victron
- https://amzn.to/3U08QzC == LedLampe Küche
Homeassistant Docker
- homeassistant via docker-compose.yml installieren :: https://www.home-assistant.io/installation/linux#docker-compose
- hacs installieren :: https://www.youtube.com/watch?v=DbXRtTpwHrA
wget -O – https://get.hacs.xyz | bash –
3d & co
- gcode marlin
- octoprint via docker
-
sudo ls /dev | grep ttyUSB|ttyACM == drucker
-
sudo v4l2-ctl --list-devices == cameras
- multiple octoprint instances with portainer
version: '2' volumes: octoprint-1: octoprint-2: services: ghost5: image: octoprint/octoprint ports: #Port to reach octoprint that will control PRINTER #1 - 5001:80 devices: #Printer that belongs to ghost5 container (PRINTER #1) - /dev/ttyUSB0:/dev/ttyUSB0 #WebCam that belongs to ghost5 container (WEBCAM #1) - /dev/video0:/dev/video0 volumes: - octoprint-1:/home/octoprint/.octoprint environment: #Define the quality of the stream from the WEBCAM #1 - MJPG_STREAMER_INPUT=-n -r 1280x720 -f 30 #Enable the stream of the WEBCAM #1 - ENABLE_MJPG_STREAMER=true restart: always prusa: image: octoprint/octoprint ports: #Port to reach octoprint that will control PRINTER #2 - 5002:80 devices: #Printer that belongs to prusa container (PRINTER #2) - /dev/ttyACM0:/dev/ttyACM0 #WebCam that belongs to prusa container (WEBCAM #2) - /dev/video2:/dev/video0 volumes: - octoprint-2:/home/octoprint/.octoprint environment: #Define the quality of the stream from the WEBCAM #2 - MJPG_STREAMER_INPUT=-n -r 1280x720 -f 30 #Enable the stream of the WEBCAM #2 - ENABLE_MJPG_STREAMER=true restart: always
-
- prusa slicer
- ultimake-cura slicer
docker
- docker container ls
- docker start <container name>
- docker exec –it <container name> /bin/bash
- docker run -it -p 18800:1880 -v node_red_data:/data –name node-red-test nodered/node-red