-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdokumentation.html
42 lines (41 loc) · 2.03 KB
/
dokumentation.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>OpenHC</title>
<link rel="stylesheet" type="text/css" href="dokumentation.css">
<link href='https://fonts.googleapis.com/css?family=Raleway:700,100,400' rel='stylesheet' type='text/css'>
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon" />
</head>
<body>
<div class="bigBox">
<nav>
<a class="menue" id="icon_box" href="index.html"><img id="icon" src="img/icon.png"></a>
<a class="menue" href="produkt.html">Produkt</a>
<a class="menue" href="dokumentation.html" id="dokumentation">Dokumentation</a>
<a class="menue" href="downloads.html">Downloads</a>
</nav>
<div class="content">
<p>
Um unsere Arbeit für jede Person nachvollziehbar zu gestalten, haben wir eine <a href="https://github.com/OpenHC/OHC-doc">Dokumentation</a> angefertigt.
</p>
<p>
Für technisch interessierte Nutzer und Entwickler findet sich <a href="./javadoc">hier</a> auch noch das Javadoc der Android App.
</p>
<p>
Der Sourcecode unseres Projekts ist in mehrere Repositories gegliedert und frei verfügbar:
</p>
<ul>
<li><a href="https://github.com/OpenHC/OHC-android">Android App</a></li>
<li><a href="https://github.com/OpenHC/OHC-node/">Basisstation/Gateway</a></li>
<li><a href="https://github.com/OpenHC/OHC-RGB">Beispielapplikation RGB LED-Steuerung mit Dimmer</a></li>
<li><a href="https://github.com/OpenHC/OHC-Switch">Beispielapplikation für einfache Schaltaufgaben</a></li>
<li><a href="https://github.com/OpenHC/OHC-core">C Library für eigene Endgeräte</a></li>
</ul>
<p>
Zur Verwendung der C Library wird zusätzlich die <a href="https://github.com/TobleMiner/NRF24L01">NRF24L01 Library</a> benötigt.
</p>
</div>
</div>
</body>
</html>