This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//https://forum.iobroker.net/post/133815 | |
//VL, outgoing temperature | |
const idTempVL = 'sonoff.0.HWR.DS18B20-2_Temperature'; | |
const iddTVL = '0_userdata.0.WWZirkulationspumpe.dTVL'; | |
const swOn = 0.7; // Grenzwert in K/min | |
var speedVL | |
var speedVLold = 0; | |
//RL, return temperature |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*************************************************** | |
This is a library for the Adafruit PT100/P1000 RTD Sensor w/MAX31865 | |
Designed specifically to work with the Adafruit RTD Sensor | |
----> https://www.adafruit.com/products/3328 | |
This sensor uses SPI to communicate, 4 pins are required to | |
interface | |
Adafruit invests time and resources providing this open source code, | |
please support Adafruit and open-source hardware by purchasing |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.3' | |
services: | |
############################################### | |
#### Traefik Proxy Setup ##### | |
############################################### | |
traefik: | |
image: traefik:latest | |
container_name: traefik | |
restart: always |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.3" | |
services: | |
################################################ | |
#### Traefik Proxy Setup ##### | |
############################################### | |
traefik: | |
image: traefik:v2.0 | |
restart: always |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
command -v docker >/dev/null 2>&1 || { echo >&2 "I require Docker but it's not installed. Aborting."; exit 1; } | |
echo "Basic auth for traefik >= v1.7" | |
read -p "User: " USER | |
read -p "Password: " PW | |
# Pull httpd:alpine image (small and includes httpasswd) | |
docker pull httpd:alpine >/dev/null 2>&1 |