This file contains hidden or 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
Frame label="Wetterstation WiFi"{ | |
Default item=wetterstation_temperatur_gefuehlt | |
Default item=wetterstation_temperatur_aussen | |
Default item=wetterstation_temperatur_innen | |
Default item=wetterstation_taupunkt | |
Default item=wetterstation_feuchtigkeit_innen | |
Default item=wetterstation_feuchtigkeit_aussen | |
Default item=wetterstation_wind_geschwindigkeit | |
Default item=wetterstation_wind_boee_geschwindigkeit | |
Default item=wetterstation_wind_staerke_zahl |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>T-Shirt Size to Storypoints Calculator</title> | |
<script type="text/javascript"> | |
function calculate(){ | |
xs = Number(document.calculator.xs.value); | |
s = Number(document.calculator.s.value); | |
m = Number(document.calculator.m.value); | |
l = Number(document.calculator.l.value); |
This file contains hidden or 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
SUBSYSTEMS=="usb", ATTRS{idProduct}=="ea60", ATTRS{idVendor}=="10c4", ATTRS{serial}=="015AE1E8", SYMLINK+="ttyUSBlesekopf0", GROUP="dialout", MODE="0660", RUN+="/etc/openhab2/others/setupLesekopf0.sh" | |
SUBSYSTEMS=="usb", ATTRS{idProduct}=="ea60", ATTRS{idVendor}=="10c4", ATTRS{serial}=="015ADDC3", SYMLINK+="ttyUSBlesekopf1", GROUP="dialout", MODE="0660", RUN+="/etc/openhab2/others/setupLesekopf1.sh" |
This file contains hidden or 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
#!//usr/bin/python3 | |
from icalendar import Calendar, Event | |
from datetime import datetime, timedelta | |
from uuid import uuid4 | |
""" | |
Please install dependencies with pip: | |
- icalendar 4.0.3 | |
- uuid 1.30 |