Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit aed45a6

Browse files
committed
Wetterstation hinzugefügt
1 parent ae60abd commit aed45a6

File tree

320 files changed

+5994
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

320 files changed

+5994
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.pio
2+
.vscode/.browse.c_cpp.db*
3+
.vscode/c_cpp_properties.json
4+
.vscode/launch.json
5+
.vscode/ipch
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
// See http://go.microsoft.com/fwlink/?LinkId=827846
3+
// for the documentation about the extensions.json format
4+
"recommendations": [
5+
"platformio.platformio-ide"
6+
],
7+
"unwantedRecommendations": [
8+
"ms-vscode.cpptools-extension-pack"
9+
]
10+
}
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"cSpell.words": [
3+
"DAYIMAGE",
4+
"DAYNAME",
5+
"DAYNAMEIMAGE",
6+
"DAYTIMEIMAGE",
7+
"Dezember",
8+
"Dienstag",
9+
"Donnerstag",
10+
"Februar",
11+
"Freitag",
12+
"Frühling",
13+
"Fujita",
14+
"Herbst",
15+
"Januar",
16+
"Juli",
17+
"Juni",
18+
"Kategorie",
19+
"März",
20+
"Mittag",
21+
"Mittwoch",
22+
"Montag",
23+
"Nachmittag",
24+
"Nacht",
25+
"Oktober",
26+
"Saffir",
27+
"Samstag",
28+
"SEASONIMAGE",
29+
"Sommer",
30+
"Sonntag",
31+
"Vormittag"
32+
]
33+
}
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Wind</title>
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<link rel="stylesheet" href="style.css">
7+
</head>
8+
<body>
9+
<div class="fr-header">
10+
<h1>Wind</h1>
11+
</div>
12+
<div %H_AIRPRESSURE%class="fr-row">
13+
<div class="fr-col">
14+
<img src="http://daheim.jonaswismar.de/wetter/other/druck.png">
15+
</div>
16+
<div class="fr-col">
17+
<p>Luftdruck</p>
18+
<h2>%AIRPRESSURE% hPa</h2>
19+
</div>
20+
</div>
21+
<div %H_AIRSPEED%class="fr-row">
22+
<div class="fr-col">
23+
<img src="http://daheim.jonaswismar.de/wetter/other/windmesser.png">
24+
</div>
25+
<div class="fr-col">
26+
<p>Windgeschwindigkeit</p>
27+
<h2>%AIRSPEED% km/h</h2>
28+
</div>
29+
</div>
30+
<div %H_AIRPOWER%class="fr-row">
31+
<div class="fr-col">
32+
<img src="http://daheim.jonaswismar.de/wetter/other/windsack.png">
33+
</div>
34+
<div class="fr-col">
35+
<p>Windst&auml;rke</p>
36+
<h2>%AIRPOWER% Bft</h2>
37+
</div>
38+
</div>
39+
<div %H_AIRDIRECTION%class="fr-row">
40+
<div class="fr-col">
41+
<img src="http://daheim.jonaswismar.de/wetter/direction/%AIRDIRECTIONIMAGE%.png">
42+
</div>
43+
<div class="fr-col">
44+
<p>Windrichtung</p>
45+
<h2>%AIRDIRECTION%</h2>
46+
</div>
47+
</div>
48+
<div %H_AIRDIRECTIONDEGREE%class="fr-row">
49+
<div class="fr-col">
50+
<img src="http://daheim.jonaswismar.de/wetter/other/windrose.png">
51+
</div>
52+
<div class="fr-col">
53+
<p>Windrichtung&deg;</p>
54+
<h2>%AIRDIRECTIONDEGREE%&deg;</h2>
55+
</div>
56+
</div>
57+
</body>
58+
</html>
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Feuchtigkeit</title>
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<link rel="stylesheet" href="style.css">
7+
</head>
8+
<body>
9+
<div class="fr-header">
10+
<h1>Feuchtigkeit</h1>
11+
</div>
12+
<div %H_HUMISOIL%class="fr-row">
13+
<div class="fr-col">
14+
<img src="http://daheim.jonaswismar.de/wetter/other/feucht_boden.png">
15+
</div>
16+
<div class="fr-col">
17+
<p>Feuchtigkeit (Boden)</p>
18+
<h2>%HUMISOIL%%%</h2>
19+
</div>
20+
</div>
21+
<div %H_HUMIAIR%class="fr-row">
22+
<div class="fr-col">
23+
<img src="http://daheim.jonaswismar.de/wetter/other/feucht_luft.png">
24+
</div>
25+
<div class="fr-col">
26+
<p>Feuchtigkeit (Luft)</p>
27+
<h2>%HUMIAIR%%%</h2>
28+
</div>
29+
</div>
30+
<div %H_HUMIABSOL%class="fr-row">
31+
<div class="fr-col">
32+
<img src="http://daheim.jonaswismar.de/wetter/other/feucht_luft.png">
33+
</div>
34+
<div class="fr-col">
35+
<p>Feuchtigkeit (Absolut)</p>
36+
<h2>%HUMIABSOL%g/m3</h2>
37+
</div>
38+
</div>
39+
</body>
40+
</html>
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Wetterstation</title>
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<link rel="icon" type="image/x-icon" href="http://daheim.jonaswismar.de/wetter/fav/sonne.ico">
7+
<link rel="stylesheet" href="style.css">
8+
</head>
9+
<body>
10+
<div class="header">
11+
<h1>Wetterstation</h1>
12+
</div>
13+
<div class="row" style="max-width:1500px;">
14+
<div class="col-2 col-s-2 menu">
15+
<ul>
16+
<li>
17+
<a href="start.htm" target="content">
18+
<img src="http://daheim.jonaswismar.de/wetter/other/haus.png"></img>Startseite
19+
</a>
20+
</li>
21+
<li>
22+
<a href="temp.htm" target="content">
23+
<img src="http://daheim.jonaswismar.de/wetter/other/therm.png"></img>Temperatur
24+
</a>
25+
</li>
26+
<li>
27+
<a href="humi.htm" target="content">
28+
<img src="http://daheim.jonaswismar.de/wetter/other/feucht_luft.png"></img>Feuchtigkeit
29+
</a>
30+
</li>
31+
<li>
32+
<a href="air.htm" target="content">
33+
<img src="http://daheim.jonaswismar.de/wetter/other/windsack.png"></img>Wind
34+
</a>
35+
</li>
36+
<li>
37+
<a href="rain.htm" target="content">
38+
<img src="http://daheim.jonaswismar.de/wetter/weather/sturm_s.png"></img>Gewitter
39+
</a>
40+
</li>
41+
<li>
42+
<a href="loc.htm" target="content">
43+
<img src="http://daheim.jonaswismar.de/wetter/other/marker.png"></img>Standort
44+
</a>
45+
</li>
46+
<li>
47+
<a href="sun.htm" target="content">
48+
<img src="http://daheim.jonaswismar.de/wetter/weather/sonne.png"></img>Sonne
49+
</a>
50+
</li>
51+
<li>
52+
<a href="moon.htm" target="content">
53+
<img src="http://daheim.jonaswismar.de/wetter/moon/neumond.png"></img>Mond
54+
</a>
55+
</li>
56+
<li>
57+
<a href="time.htm" target="content">
58+
<img src="http://daheim.jonaswismar.de/wetter/season/3.png"></img>Zeit
59+
</a>
60+
</li>
61+
<li>
62+
<a href="prog.htm" target="content">
63+
<img src="http://daheim.jonaswismar.de/wetter/other/forecast.png"></img>Prognose
64+
</a>
65+
</li>
66+
</ul>
67+
</div>
68+
<div class="col-10 col-s-10">
69+
<iframe name="content" src="start.htm" width="100%%" height="700px" style="border:none;"></iframe>
70+
</div>
71+
</div>
72+
<div class="footer">
73+
<p><strong>Version: </strong>%SYSVERSION%<strong>, Vom: </strong>%SYSBUILDON%<strong>, ESP Core: </strong>%SYSESPCORE%</p>
74+
</div>
75+
</body>
76+
</html>
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Standort</title>
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<link rel="stylesheet" href="style.css">
7+
</head>
8+
<body>
9+
<div class="fr-header">
10+
<h1>Standort</h1>
11+
</div>
12+
<div class="fr-row">
13+
<iframe width="100%%" height="600px" style="border-radius: 20px;" src="https://www.openstreetmap.org/export/embed.html?bbox=8.74380022287369,50.59738543222306,8.74827951192856,50.59890069912132&amp;layer=mapnik&amp;marker=50.598143071770046,8.746039867401123" style="border: 1px solid black"></iframe>
14+
</div>
15+
</body>
16+
</html>
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Mond</title>
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<link rel="stylesheet" href="style.css">
7+
</head>
8+
<body>
9+
<div class="fr-header">
10+
<h1>Mond</h1>
11+
</div>
12+
<div %H_MOONSET%class="fr-row">
13+
<div class="fr-col">
14+
<img src="http://daheim.jonaswismar.de/wetter/moon/moonset.png">
15+
</div>
16+
<div class="fr-col">
17+
<p>Monduntergang</p>
18+
<h2>%MOONSET%</h2>
19+
</div>
20+
</div>
21+
<div %H_MOONRISE%class="fr-row">
22+
<div class="fr-col">
23+
<img src="http://daheim.jonaswismar.de/wetter/moon/moonrise.png">
24+
</div>
25+
<div class="fr-col">
26+
<p>Mondaufgang</p>
27+
<h2>%MOONRISE%</h2>
28+
</div>
29+
</div>
30+
<div %H_MOONPHASE%class="fr-row">
31+
<div class="fr-col">
32+
<img src="http://daheim.jonaswismar.de/wetter/moon/%MOONPHASEIMAGE%.png">
33+
</div>
34+
<div class="fr-col">
35+
<p>Mondphase</p>
36+
<h2>%MOONPHASE%</h2>
37+
</div>
38+
</div>
39+
</body>
40+
</html>
Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Prognose</title>
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<link rel="stylesheet" href="style.css">
7+
</head>
8+
<body>
9+
10+
<div class="fr-header">
11+
<h1>Prognose</h1>
12+
</div>
13+
<div class="header">
14+
<h1>Prognose</h1>
15+
</div>
16+
<div class="header">
17+
<h1>Prognose</h1>
18+
</div>
19+
<div class="header">
20+
<h1>Prognose</h1>
21+
</div>
22+
<div class="header">
23+
<h1>Prognose</h1>
24+
</div>
25+
<div class="header">
26+
<h1>Prognose</h1>
27+
</div>
28+
<div class="header">
29+
<h1>Prognose</h1>
30+
</div>
31+
<div class="header">
32+
<h1>Prognose</h1>
33+
</div>
34+
<div class="header">
35+
<h1>Prognose</h1>
36+
</div>
37+
<div class="header">
38+
<h1>Prognose</h1>
39+
</div>
40+
<div class="header">
41+
<h1>Prognose</h1>
42+
</div>
43+
<div class="header">
44+
<h1>Prognose</h1>
45+
</div>
46+
<div class="header">
47+
<h1>Prognose</h1>
48+
</div>
49+
<div class="header">
50+
<h1>Prognose</h1>
51+
</div>
52+
<div class="header">
53+
<h1>Prognose</h1>
54+
</div>
55+
<div class="header">
56+
<h1>Prognose</h1>
57+
</div>
58+
<div class="header">
59+
<h1>Prognose</h1>
60+
</div>
61+
<div class="header">
62+
<h1>Prognose</h1>
63+
</div>
64+
<div class="header">
65+
<h1>Prognose</h1>
66+
</div>
67+
<div class="header">
68+
<h1>Prognose</h1>
69+
</div>
70+
<div class="header">
71+
<h1>Prognose</h1>
72+
</div>
73+
<div class="header">
74+
<h1>Prognose</h1>
75+
</div>
76+
<div class="header">
77+
<h1>Prognose</h1>
78+
</div>
79+
<div class="header">
80+
<h1>Prognose</h1>
81+
</div>
82+
<div class="header">
83+
<h1>Prognose</h1>
84+
</div>
85+
<div class="header">
86+
<h1>Prognose</h1>
87+
</div>
88+
<div class="header">
89+
<h1>Prognose</h1>
90+
</div>
91+
<div class="header">
92+
<h1>Prognose</h1>
93+
</div>
94+
<div class="header">
95+
<h1>Prognose</h1>
96+
</div>
97+
<div class="header">
98+
<h1>Prognose</h1>
99+
</div>
100+
101+
<div class="fr-row">
102+
</div>
103+
</body>
104+
</html>

0 commit comments

Comments
 (0)