-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (88 loc) · 3.89 KB
/
index.html
File metadata and controls
94 lines (88 loc) · 3.89 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html>
<title>Forward Loop Driver Documentation</title>
<meta charset="utf-8">
<head>
<link href="//fonts.googleapis.com/css?family=Montserrat:400,100" type="text/css" rel="stylesheet">
<link rel="stylesheet" href="./assets/css/docs.css">
</head>
<body>
<div class="logo">
<a href="../index.html">
<img alt="Forward Loop Docs" src="./assets/img/logo.png">
</a>
</div>
<div class="header">Device Drivers</div>
<div class="subheader">
These drivers support the hardware in <a href="https://forward-loop.com/developer.html">Forward Loop Zero</a>.<br><br>
All drivers have an MIT license, so you can use, change, and sell them in your own applications.</div>
<table class="driver-table">
<caption>Sensor Drivers</caption>
<tr>
<th>Name</th>
<th>Description</th>
<th>Use Case</th>
</tr>
<tr>
<td><a href="mlx90614/master/index.html">MLX90614</a></td>
<td>Long-range infrared camera.<br><br> The sensor can measure temperatures of -70 to 380 ± 0.5 °C at a distance of 2m</td>
<td style="white-space:no-wrap;">High-precision non-contact temperature measurements<br><br>
Industrial temperature control<br><br>
Livestock monitoring<br><br>
Temperature sensing for residential or commercial building air conditioning<br><br>
Body temperature measurements</td>
</tr>
<tr>
<td><a href="amg8833/master/index.html">AMG8833</a></td>
<td>Grid-eye infrared camera.<br><br> The sensor can measure temperatures from 0 to 80 ± 2.5 °C at a distance of 2m for 64 points on an 8-by-8 grid </td>
<td>Proximity sensing<br><br>
Movement detection<br><br>
Residential and commercial building security<br><br>
Quality control for food and beverage<br><br>
Area heat loss monitoring and mapping</td>
</tr>
<tr>
<td><a href="mpu9250/master/index.html">MPU9250</a></td>
<td>Inertial measurement unit.<br><br> The sensor can simultaneously measure acceleration, rotation, and magnetic field in three directions, which allows for calculations of orientation and position</td>
<td>
Movement sensing<br><br>
Stability monitoring for cargo<br><br>
Virtual and augmented reality HMD tracking<br><br>
Activity recognition<br><br>
3D scanning<br><br>
Photo and video capture stabilization</td>
</tr>
</table>
<table class="driver-table">
<caption>General Hardware Drivers</caption>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
<tr>
<td><a href="i2c/master/index.html">I2C</a></td>
<td>The I2C protocol allows sensors and microcontrollers to communicate back and forth over a simple two-wire connection.</td>
</tr>
</table>
<table class="driver-table">
<caption>Networking Drivers</caption>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
<tr>
<td><a href="mqtt/master/index.html">MQTT</a></td>
<td>The MQTT protocol is an asynchronous publish-subscribe messaging protocol based on TCP/IP that works even in limited bandwidth scenarios.</td>
</tr>
</table>
<div class="footer-float">
<a href="https://github.com/ForwardLoopLLC">
<img alt="Visit Forward Loop on Github" src="./assets/img/forward-loop-github-open-source.png"><br>
</a>
<a href="https://forward-loop.com">
forward-loop.com
</a><br>
© 2018 Forward Loop LLC
</div>
</body>
</html>