-
Notifications
You must be signed in to change notification settings - Fork 22
/
index.html
380 lines (359 loc) · 15 KB
/
index.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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
<html lang="en">
<head>
<!-- These 3 meta tags must come first. -->
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="MIT App Inventor Extensions">
<meta name="author" content="Jeffrey I. Schiller, William S. Byrne, Andrew F. McKinney, Evan W. Patton">
<link type="image/png" rel="icon" href="images/favicon.png">
<title>MIT App Inventor Extensions</title>
<!-- Bootstrap core CSS -->
<link type="text/css" rel="stylesheet" href="css/bootstrap.min.css" media="all">
<!-- Custom Stylesheet -->
<link type="text/css" rel="stylesheet" href="css/extensions.css" media="all">
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="http://appinventor.mit.edu">
<img alt="Brand" src="images/logo.png" height="38px">
</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="#">Home</a></li>
<li><a href="#dir">Directory</a></li>
<li><a href="http://ai2.appinventor.mit.edu/reference/other/extensions.html">Documentation</a></li>
</ul>
</div>
</div>
</nav>
<!-- Title and Info -->
<div class="container-fluid">
<div class="jumbotron">
<h1>MIT App Inventor Extensions</h1>
<p>
This is the official resource for the MIT App Inventor Extensions, use them within your own projects. Explore, create and share new functionality through App Inventor Extensions.
</p>
<p>
<a class="btn btn-lg btn-success" href="http://ai2.appinventor.mit.edu" role="button">Try App Inventor Extensions »</a>
</p>
</div>
</div>
<!-- Must use instance alert -->
<div class="container-fluid">
<div class="alert alert-warning alert-dismissable">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
<strong>Note:</strong> Make sure you have the latest MIT AI2 Companion application. Click on Help in the menu bar of your App Inventor screen and select Companion Information to get a QR code or link that can be used to download and install the MITAI2Companion.apk on your phone.
</div>
</div>
<!-- Extensions Directory -->
<div id="dir" class="container-fluid anchor">
<h1>Supported:</h1>
<div class="table-responsive">
<table class="table table-hover table-bordered">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th>Author</th>
<th>Version</th>
<th>Download .aix File</th>
<th>Source Code</th>
</tr>
</thead>
<tbody>
<tr>
<td>
BluetoothLE
</td>
<td>
Adds as Bluetooth Low Energy functionality to your applications. See
<a href="https://appinventor.mit.edu/explore/ai2/IoT_unit"> IoT Documentation and Resources
</a>for more information.
</td>
<td>
MIT App Inventor
</td>
<td>
20240822
</td>
<td>
<a href="data/extensions/edu.mit.appinventor.ble-20240822.aix">BluetoothLE.aix</a>
</td>
<td>
<a href="https://github.com/mit-cml/appinventor-extensions/tree/extension/bluetoothle">Via GitHub</a>
</td>
</tr>
<tr>
<td>FaceMeshExtension</td>
<td>
Estimate face landmarks with this extension.
</td>
<td>MIT App Inventor</td>
<td>20210405</td>
<td><a href="data/extensions/edu.mit.appinventor.ai.facemesh.aix">Facemesh.aix</a></td>
<td><a href="https://github.com/mit-cml/appinventor-extensions/tree/extension/facemesh">Via GitHub</a></td>
</tr>
<tr>
<td>LookExtension</td>
<td>
Adds object recognition using a neural network compiled into the extension.
</td>
<td>MIT App Inventor</td>
<td>20181124</td>
<td><a href="data/extensions/LookExtension-20181124.aix">LookExtension.aix</a></td>
<td><a href="https://github.com/mit-cml/appinventor-extensions/tree/extension/look">Via GitHub</a></td>
</tr>
<tr>
<td>Microbit</td>
<td>
Communicate with micro:bit devices using Bluetooth low energy (needs BluetoothLE extension above).
</td>
<td>MIT App Inventor</td>
<td>20200518</td>
<td><a href="https://iot.appinventor.mit.edu/assets/resources/com.bbc.microbit.profile-20200518.aix">Microbit.aix</a></td>
<td><a href="https://github.com/mit-cml/appinventor-extensions/tree/extension/microbit">Via GitHub</a></td>
</tr>
<tr>
<td>PersonalAudioClassifier</td>
<td>
Use your own neural network classifier to recognize sounds with this extension.
</td>
<td>MIT App Inventor</td>
<td>20200904</td>
<td><a href="data/extensions/PersonalAudioClassifier.aix">PersonalAudioClassifier.aix</a></td>
<td><a href="https://github.com/mit-cml/appinventor-extensions/tree/extension/personal-audio-classifier">Via GitHub</a></td>
</tr>
<tr>
<td>PersonalImageClassifier</td>
<td>
Use your own neural network classifier to recognize images with this extension.
</td>
<td>MIT App Inventor</td>
<td>20210315</td>
<td><a href="data/extensions/PersonalImageClassifier.aix">PersonalImageClassifier.aix</a></td>
<td><a href="https://github.com/mit-cml/appinventor-extensions/tree/extension/personal-image-classifier">Via GitHub</a></td>
</tr>
<tr>
<td>PosenetExtension</td>
<td>
Estimate pose with this extension.
</td>
<td>MIT App Inventor</td>
<td>20200226</td>
<td><a href="data/extensions/edu.mit.appinventor.ai.posenet.aix">Posenet.aix</a></td>
<td><a href="https://github.com/mit-cml/appinventor-extensions/tree/extension/posenet">Via GitHub</a></td>
</tr>
<tr>
<td>TeachableMachine</td>
<td>
Use vision models trained in TeachableMachine with your device's camera.
</td>
<td>MIT App Inventor</td>
<td>1</td>
<td><a href="data/extensions/edu.mit.appinventor.ai.teachablemachine.aix">TeachableMachine.aix</a></td>
<td><a href="https://github.com/mit-cml/appinventor-extensions/tree/extension/teachable-machine">Via GitHub</a></td>
</tr> </tbody>
</table>
</div>
<div class="alert alert-info">
<i><strong>Note:</strong> The BluetoothLE extension was made possible, in part, by a grant given by the University Program Office at Intel Corporation.</i></div>
<h1>Unsupported:</h1>
<div class="table-responsive">
<table class="table table-hover table-bordered">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th>Author</th>
<th>Download .aix File</th>
<th>Source Code</th>
</tr>
</thead>
<tbody>
<tr>
<td>
Arduino101
</td>
<td>
Interact with Arduino 101 devices and connected peripherals. Requires the BluetoothLE extension above.
</td>
<td>
MIT App Inventor
</td>
<td>
<a href="https://iot.appinventor.mit.edu/assets/resources/edu.mit.appinventor.iot.arduino101.aix">Arduino101.aix</a>
</td>
<td>
<a href="https://github.com/mit-cml/appinventor-extensions/tree/extension/arduino-101 ">Via GitHub</a>
</td>
</tr>
<tr>
<td>
ImageProcessor
</td>
<td>
ImageProcessor can do a weighted combine of two images, return the greyscale of an image. Download this
<a href="data/demo/ImageProcessorDemo.aia">demo</a>.
</td>
<td>
Justus Raju
</td>
<td>
<a href="data/extensions/ai.cdk.justus.ImageProcessor.aix">ImageProcessor.aix</a>
</td>
<td>
<a href="data/sources/ai.cdk.justus.ImageProcessor_src.zip">Source.zip</a>
</td>
</tr>
<tr>
<td>
ScaleDetector
</td>
<td>
Adds as multitouch scale gesture detector to a Canvas. See
<a href="https://docs.google.com/document/d/1UwpTqLqNOPJxOlBxQSIVTOH548lbQhmpdj-MrUMToA4/edit#heading=h.7rgvi9xqlkyb">
Using App Inventor extensions to implement multitouch</a>
for an explanation of how this works.
</td>
<td>
Hal Abelson
</td>
<td>
<a href="data/extensions/edu.mit.appinventor.ScaleDetector.aix">ScaleDetector.aix</a>
</td>
<td>
<a href="data/sources/edu.mit.appinventor.ScaleDetector_src.zip">Source.zip</a>
</td>
</tr>
<tr>
<td>
SoundAnalysis
</td>
<td>
Multimedia component that analyzes the pitch of a sound through the microphone and returns it. It can be used as an input to different situations, for instance to control some components with a specific sound whistle(pitch > 500Hz) or clap(pitch > 2000Hz).
</td>
<td>
Mouhamadou Oumar Sall
</td>
<td>
<a href="data/extensions/com.gmail.at.oumar.dot.mouha.SoundAnalysis.aix">SoundAnalysis.aix</a>
</td>
<td>
<a href="data/sources/com.gmail.at.oumar.dot.mouha.SoundAnalysis_src.zip">Source.zip</a>
</td>
</tr>
<tr>
<td>
SoundPressureLevel
</td>
<td>
Measures the sound pressure level using the microphone and returns the data in decibels. Further documentation for users and developers can be found <a href="https://gldias.github.io/extensions/SoundPressureLevel/SoundPressureLevel">here</a>.
</td>
<td>
RIT App Inventor
</td>
<td>
<a href="data/extensions/com.rit.appinventor.components.runtime.aix">SoundPressureLevel.aix</a>
</td>
<td>
<a href="data/sources/com.rit.appinventor.components.runtime.zip">Source.zip</a> <br> or <a href="https://github.com/gldias/appinventor-sources/tree/feature/spl">Via GitHub</a>
</td>
</tr>
<tr>
<td>
VectorArithmetic
</td>
<td>
Takes in two vectors and can add them to return a result vector.
</td>
<td>
Ethan Hon
</td>
<td>
<a href="data/extensions/com.gmail.at.ehondev.VectorArithmetic.aix">VectorArithmetic.aix</a>
</td>
<td>
<a href="data/sources/com.gmail.at.ehondev.VectorArithmetic_src.zip">Source.zip</a>
</td>
</tr>
</tbody>
</table>
</div>
<h1>Examples:</h1>
<div class="table-responsive">
<table class="table table-hover table-bordered">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th>Author</th>
<th>Version</th>
<th>Download .aia File</th>
</tr>
</thead>
<tbody>
<tr>
<td>Face mesh start project</td>
<td>
A start project that uses Face Mesh.
</td>
<td>Joy S Yu</td>
<td>20210405</td>
<td><a href="data/demos/Facemesh_StarterProject.aia">Facemesh_StarterProject.aia</a></td>
</tr>
<tr>
<td>ImageProcessorDemo</td>
<td>
A project demonstrating basic image processing using an extension.
</td>
<td>Justus Raju</td>
<td>1</td>
<td><a href="data/demos/ImageProcessorDemo.aia">ImageProcessorDemo.aia</a></td>
</tr>
<tr>
<td>LookTest</td>
<td>
A project demonstrating how to use the Look component to classify video frames from the device camera.
</td>
<td>Evan Patton</td>
<td>20181124</td>
<td><a href="data/demos/LookTest_20181124.aia">LookTest_20181124.aia</a></td>
</tr>
<tr>
<td>PosenetTest</td>
<td>
A project demonstrating Posenet using an extension.
</td>
<td>Evan Patton</td>
<td>2</td>
<td><a href="data/demos/PosenetTest.aia">PosenetTest.aia</a></td>
</tr>
<tr>
<td>TophatMe</td>
<td>
A project that uses Posenet to draw a hat on your head.
</td>
<td>Evan Patton</td>
<td>1</td>
<td><a href="data/demos/TophatMe.aia">TophatMe.aia</a></td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script type="text/JavaScript" src="js/jquery.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script type="text/JavaScript" src="js/bootstrap.min.js"></script>
</body>
</html>