-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprojekt-plan.php
More file actions
56 lines (48 loc) · 1.6 KB
/
projekt-plan.php
File metadata and controls
56 lines (48 loc) · 1.6 KB
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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=10">
<title>Projekt</title>
<style>
body {
background-color: #ADD8E6; /* Hellblau */
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
</style>
</head>
<body>
<?php include "menu.html" ?>
<h1>Kira und Rebecca</h1>
<h2>Bibliothek-/Ausleihsystem von Medien (Büchern) mit RFID-Chips</h2>
<ul>
<strong><u>Funktionen</u>:</strong>
<li>ID-Karte Lesen</li>
<li>Buch-Chip lesen</li>
<li>Feedback per LED, ob Karte gelesen und erkannt wurde</li>
<li>Datenbank: Personen und Bücher identifizieren: wer hat wann welche Bücher ausgeliehen?</li>
<li><ul>Webseite:
<li>Inventar (welche Bücher gibt es?)</li>
<li>aktuelles Inventar (welche Bücher sind gerade da? wann sollen die ausgeliehenen Bücher zurück sein?)</li>
<li>E-Mails an Personen mit Rückgabe-Erinnerung</li>
</ul>
</ul>
<ul>
<br>
<strong><u>Materialien</u>:</strong>
<li>Raspberry Pi (ist da)</li>
<li>RFID-Leser (wird benötigt)</li>
<li>“dicke” RFID Chips (als ID-Card) ca 3x (wird benötigt)</li>
<li>“dünne” RFID Chips (zum identifizieren der Bücher) ca 5x (wird benötigt)</li>
<li>LEDs als Feedback (grün/rot) (können wir besorgen)</li>
<li>ggf. Gehäuse für den RaspberryPi + RFID-Leser (3D Druck) (im Betrieb)</li>
</ul>
<br>
<ul>
<u>Weitere Ideen</u>:
<li>Statistiken über Systemaktivität: <p>RFID-Scans pro Woche, Fehlversuche</p>
<p>Live-Anzeige der aktuellen Anzeigen, Heatmap für Wochentage, Wochendiagramm mit Balken</p></li>
</ul>
</body>