-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.php
59 lines (46 loc) · 1.96 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
include("config.php");
$title = "IOT Tool Box";
$content = <<<EOT
<div class="row text-center">
<div class="large-12 columns">
<h1>tool box <i class="material-icons bigicon logoicon">settings_input_antenna</i> for developing IOT</h1>
<p class="subheader">
As a first tool one can now calculate the estimated battery life for your next diy electronics project. This can be used for Raspberry Pis, Arduinos, ESP8266 Wifi modules like Wemos, Huzzahs, Feathers and so on.
</p>
<h6>This website is open to contributions.</h6>
<p class="subheader"><a href="http://www.trojanischeresel.de" target="_blank">Contact me</a> and/or contribute to the codebase <a href="https://github.com/simonneutert/of-things.de" target="_blank">on GitHub</a>!
</div>
</div>
<div class="spacer">
</div>
<div class="row text-center">
<div class="medium-3 columns end">
<i class="material-icons bigicon">lightbulb_outline</i>
<h2><a href="protective-resistor-calculator.php">Protective Resistor Calculator</a></h2>
</div>
<div class="medium-3 columns end">
<i class="material-icons bigicon">battery_unknown</i>
<h2><a href="battery-life-calculator.php">Battery Life Calculator</a></h2>
</div>
<div class="medium-3 columns end">
<i class="material-icons bigicon">call_split</i>
<h2><a href="voltage-divider-calculator.php">Voltage Divider Calculator</a></h2>
</div>
</div>
<div class="spacer">
</div>
<div class="row">
<div class="large-9 columns">
<p>This project will be gradually improved.</p>
<p>- 18.09.2017 code is on <a href="https://github.com/simonneutert/of-things.de" target="_blank">GitHub</a></p>
<p>- 27.06.2016 added a basic version of a protective resistor calculator</p>
<p>- 03.06.2016 unit switching is now support for some fields (marked with a "*")</p>
<p>- 03.06.2016 added voltage divider calculator</p>
</div>
</div>
<div class="spacer">
</div>
EOT;
$site->display($content, $title);
?>