forked from fischertechnik/txt40_c_cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (66 loc) · 2.56 KB
/
index.html
File metadata and controls
72 lines (66 loc) · 2.56 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<html>
<head>
<title>fischertechnik C/C++ Wiki</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/github-markdown.css">
<link rel="stylesheet" href="css/main.css">
<style>
.grid {
display: grid;
grid-template-columns: repeat(1, 1fr);
grid-auto-rows: 1fr;
column-gap: 20px;
row-gap: 20px;
margin: 15px;
}
.grid-item {
background-color: var(--color-canvas-subtle);
padding: 15px;
text-align: center;
max-height: 300px;
overflow: hidden;
}
@media only screen and (min-width: 600px) {
.grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media only screen and (min-width: 768px) {
.grid {
grid-template-columns: repeat(3, 1fr);
}
}
@media (prefers-color-scheme: light) {
.frame {
color-scheme: light;
box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
background-color: var(--color-canvas-default);
border: none;
}
}
</style>
</head>
<body class="content">
<h1 class="title">TXT 4.0</h1>
<h1 style="text-align: center; margin-bottom: 50px;">The C/C++ Interface Reference</h1>
<div class="grid">
<div class="grid-item frame link" onclick="location.href='src/getting_started.html';">
<h2>Getting Started</h2>
<p>Tips and tricks on how to develop C/C++ code for the TXT 4.0</p>
</div>
<div class="grid-item frame link" onclick="location.href='src/devices.html';">
<h2>Devices</h2>
<p>Detailed description of the abstaction of actuators and sensors connected to the TXT 4.0</p>
</div>
<div class="grid-item frame link" onclick="location.href='src/cpp_interface.html';">
<h2>C++ Interface</h2>
<p>API reference</p>
</div>
<div class="grid-item frame link" onclick="location.href='src/c_interface.html';">
<h2>C Interface</h2>
<p>API reference</p>
</div>
</div>
</body>
</html>