This repository has been archived by the owner on Sep 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 321
/
_samples.json
574 lines (572 loc) · 16.6 KB
/
_samples.json
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
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
{
"en-US-tags": [
"Beginner",
"Intermediate",
"Advanced",
"C#",
"C++",
"Wiring",
"Foreground",
"Background",
"Console",
"GPIO",
"I2C",
"SPI",
"Lightning",
"Driver",
"WiFi",
"Azure",
"Bluetooth"
],
"en-US-cat-tags": [
{
"name": "Difficulty",
"tags": [
"Beginner",
"Intermediate",
"Advanced"
]
},
{
"name": "Language",
"tags": [
"C#",
"C++",
"Wiring"
]
},
{
"name": "App type",
"tags": [
"Foreground",
"Background",
"Console"
]
},
{
"name": "I/O",
"tags": [
"GPIO",
"I2C",
"SPI",
"Lightning"
]
},
{
"name": "Other",
"tags": [
"WiFi",
"Driver",
"Azure",
"Bluetooth"
]
}
],
"en-US": [
{
"title": "'Hello, world!'",
"description": "Create and deploy your first Windows 10 IoT Core app",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/HelloWorld",
"link-text": "Hello World",
"lang": "C#",
"ranking": 0,
"tags": [
"C#",
"Beginner",
"Foreground"
]
},
{
"title": "'Hello, blinky!'",
"description": "A 'Hello, world' sample to control an LED from a breadboard",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/HelloBlinky",
"link-text": "UI Blinky",
"lang": [
"C#",
"C++"
],
"ranking": 0,
"tags": [
"C#",
"C++",
"Beginner",
"Foreground",
"GPIO"
]
},
{
"title": "'Hello, blinky!' background service",
"description": "Create an app with no UI that toggles an LED on devices running Windows 10 IoT Core",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/HelloBlinkyBackground",
"link-text": "Blinky",
"lang": [
"C#",
"Wiring"
],
"ranking": 0,
"tags": [
"Wiring",
"Introductory",
"Background",
"GPIO"
]
},
{
"title": "'Hello, Cloud!'",
"description": "Create an app to talk to the Azure cloud using Azure IoT Hub",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/Azure/HelloCloud",
"link-text": "HelloCloud",
"lang": "C#",
"ranking": 0,
"tags": [
"C#",
"Beginner",
"Azure",
"Foreground",
"Background"
]
},
{
"title": "Accelerometer",
"description": "Connect an accelerometer to your device and read data from it",
"link":"https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/Accelerometer",
"link-text": "Accelerometer",
"lang":"C#",
"ranking": 3,
"tags": [
"Beginner",
"SPI",
"I2C",
"C#"
]
},
{
"title": "App Service Blinky",
"description": "Sample app service that allows one background application to control an LED as an app service, and the other background application to blink the LED.",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/AppServiceBlinky",
"link-text": "App Service Blinky",
"lang": "C#",
"ranking": 0,
"tags": [
"C#",
"Background",
"Beginner",
"GPIO"
]
},
{
"title": "App Service Shared Notepad",
"description": "Sample app service with 2 clients. One client writes notepad messages. The other client reads notepad messages and displays them.",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/AppServiceSharedNotepad",
"link-text": "App Service Shared Notepad",
"lang": "C#",
"ranking": 0,
"tags": [
"C#",
"Background",
"Beginner"
]
},
{
"title": "Cognitive Services",
"description": "Access and use the Cognitive Services API inside a C# UWP App",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/RPiCognitiveService",
"link-text": "Cognitive Services",
"lang": "C#",
"ranking": 0,
"tags": [
"C#",
"Beginner"
]
},
{
"title": "Companion App",
"description": "Create a simple app (for Windows Phone 10 or Android) that can configure your device's Wifi.",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/CompanionApp",
"link-text": "Companion App",
"lang": "C#",
"ranking": 0,
"tags": [
"C#",
"WiFi",
"Beginner"
]
},
{
"title": "Custom Device Accessor",
"description": "Use CreateFile() and DeviceIoControl() to access custom devices from UWP.",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/CustomDeviceAccessor",
"link-text": "Custom Device Accessor",
"lang": "C++",
"ranking": 0,
"tags": [
"C++",
"Intermediate"
]
},
{
"title": "Digital sign",
"description": "Create a basic digital sign and learn how to work with multimedia",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/DigitalSign",
"link-text": "Digital sign",
"lang": "C#",
"ranking": 10,
"tags": [
"Intermediate",
"Foreground",
"C#"
]
},
{
"title": "External process launcher",
"description": "Use <code>Windows.System.ProcessLauncher</code> API to launch external executable programs from your UWP app.",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/ExternalProcessLauncher",
"link-text": "External process launcher",
"lang": "C#",
"ranking": 10,
"tags": [
"C#",
"Intermediate"
]
},
{
"title": "Foreground with Background App",
"description": "An example of building a foreground app and background app within the same APPX file.",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/ForegroundAppWithBackgroundApp",
"link-text": "Foreground with Background",
"lang": [
"C#",
"C++"
],
"ranking": 10,
"tags": [
"C#",
"C++",
"Intermediate",
"Foreground",
"Background",
"GPIO"
]
},
{
"title": "GPIO OneWire",
"description": "Learn how to read from the DHT11 from a Universal Windows Application.",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/GpioOneWire",
"link-text": "GPIO OneWire",
"lang": "C++",
"ranking": 10,
"tags": [
"C++",
"Intermediate",
"GPIO"
]
},
{
"title": "I2C Port Expander",
"description": "A sample that shows how to use a port expander to read the status of a tactile switch and control an LED.",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/I2cPortExpander",
"link-text": "I2C Port Expander",
"lang": "C#",
"ranking": 10,
"tags": [
"C#",
"Beginner",
"I2C"
]
},
{
"title": "IoT Blockly",
"description": "A sample that shows how to leverage various pieces of open source software to create a 'block' development experience on Raspberry Pi.",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/IoTBlockly",
"link-text": "IoT Blockly",
"lang": "C#",
"ranking": 10,
"tags": [
"C#",
"Beginner"
]
},
{
"title": "IoT Core Default App",
"description": "Create a UWP app that provides a device-management experience for Windows 10 IoT Core.",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/IoTCoreDefaultApp",
"link-text": "Iot Core Default App",
"lang": [
"C#",
"C++"
],
"ranking": 1,
"tags": [
"C#",
"Intermediate",
"Foreground"
]
},
{
"title": "IoT Core Media Player",
"description": "A demonstration of how to play music from an IoT device.",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/IoTCoreMediaPlayer",
"link-text": "IoT Core Media Player",
"lang": "C#",
"ranking": 1,
"tags": [
"C#",
"Beginner",
"Foreground"
]
},
{
"title": "IoT Core Service",
"description": "A simple shared host service for Windows 10 IoT Core.",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/IoTCoreService",
"link-text": "IoT Core Service",
"lang": "C++",
"ranking": 1,
"tags": [
"C++",
"Beginner",
"Foreground"
]
},
{
"title": "IoT Onboarding (Wi-Fi Onboarding with AllJoyn)",
"description": "Connect an IoT Device to a Wi-Fi network from a remote PC using AllJoyn",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/IoTOnboarding",
"link-text": "WiFi Onboarding Sample",
"lang": "C#",
"ranking": 0,
"tags": [
"C#",
"Intermediate",
"WiFi"
]
},
{
"title": "IoT Startup App",
"description": "Create a UWP Startup app to list and launch apps installed on the IoT Core System",
"link": "samples/IoTStartApp.htm",
"link-text": "Iot Startup App",
"lang": "C++",
"ranking": 1,
"tags": [
"C++",
"Intermediate",
"Foreground"
]
},
{
"title": "IoT Browser",
"description": "Create a simple web browser",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/IoTBrowser",
"link-text": "IoT Browser",
"lang": "C#",
"ranking": 2,
"tags": [
"C#",
"Beginner",
"Foreground"
]
},
{
"title": "Memory status monitor",
"description": "Create a console app that monitors memory usage on devices running Windows 10 IoT Core",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/MemoryStatus",
"link-text": "Console App",
"lang": "C++",
"ranking": 10,
"tags": [
"C++",
"Intermediate",
"Console"
]
},
{
"title": "OpenCV",
"description": "Use OpenCV to run facial and body recognition on a photo",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/OpenCVExample",
"link-text": "OpenCV",
"lang": "C++",
"ranking": 0,
"tags": [
"C++",
"Beginner",
"Foreground"
]
},
{
"title": "Push button",
"description": "Make an LED blink with the push of a button",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/PushButton",
"link-text": "Push Button",
"lang": "C#",
"ranking": 1,
"tags": [
"Beginner",
"GPIO",
"C#"
]
},
{
"title": "Potentiometer sensor",
"description": "Read values from a rotary potentiometer and output data to an LED",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/PotentiometerSensor",
"link-text": "Potentiometer Sensor Sample",
"lang": [
"C#",
"Wiring"
],
"ranking": 3,
"tags": [
"Beginner",
"C#",
"GPIO",
"Wiring",
"Foreground"
]
},
{
"title": "RGB LED",
"description": "Create an app that uses the Raspberry Pi 2 to toggle an RGB LED.",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/RGBLED",
"link-text": "RGB LED",
"lang": "C#",
"ranking": 3,
"tags": [
"Beginner",
"GPIO",
"C#"
]
},
{
"title": "SPI display",
"description": "Write lines of text to an LED display",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/SPIDisplay",
"link-text": "SPI Display",
"lang": "C#",
"ranking": 3,
"tags": [
"Beginner",
"SPI",
"C#"
]
},
{
"title": "Shift register",
"description": "Connect an 8-bit serial-in, parallel-out shift register to your device to toggle eight LED's",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/ShiftRegister",
"link-text": "Shift Register",
"lang": "C#",
"ranking": 20,
"tags": [
"Advanced",
"C#"
]
},
{
"title": "WebSocket Docker Interop",
"description": "Learn how to work with Windows containers on Windows 10 IoT Core and Windows IoT Enterprise.",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/ContainerWebSocket",
"link-text": "WebSocket Docker Interop",
"lang": "C#",
"ranking": 0,
"tags": [
"Advanced",
"Background",
"Console",
"C#"
]
},
{
"title": "Video Capture",
"description": "Create an app that records video to file, plays video from file.",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/VideoCaptureSample",
"link-text": "Video Capture",
"lang": "C#",
"ranking": 0,
"tags": [
"Intermediate",
"Foreground",
"C#"
]
},
{
"title": "Webcam app",
"description": "Create an app that initializes a web cam, takes pictures, and records video and audio.",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/WebcamApp",
"link-text": "Webcam App",
"lang": "C#",
"ranking": 0,
"tags": [
"Intermediate",
"Foreground",
"C#"
]
},
{
"title": "Wi-Fi connector",
"description": "Discover and connect to a WiFi network from a UWP app using <code>Windows.Devices.WiFi.WiFiAdapter</code> API",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/WiFiConnector",
"link-text": "WiFi Connect Sample",
"lang": "C#",
"ranking": 0,
"tags": [
"C#",
"Beginner",
"WiFi"
]
},
{
"title": "Windows NT Service for RPC",
"description": "Access privileged features for a UWP application using this sample.",
"link":"https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/NTServiceRpc",
"link-text": "Windows NT",
"lang":"C++",
"ranking": 3,
"tags": [
"Foreground",
"Console",
"Driver",
"C++"
]
},
{
"title": "NFC for IoT",
"description": "How to use the NFC APIs on IoT Core.",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/NFCForIoT",
"link-text": "Learn More",
"lang": "C#",
"ranking": 10,
"tags": [
"Driver",
"C#",
"Advanced"
]
},
{
"title": "Speech translator",
"description": "Translate your speech to different languages.",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/SpeechTranslator",
"link-text": "Learn More",
"lang": "C#",
"ranking": 10,
"tags": [
"C#",
"Intermediate",
"Azure"
]
},
{
"title": "Temperature and force sensor",
"description": "Control a basic temperature and force sensor.",
"link": "https://github.com/Microsoft/Windows-iotcore-samples/tree/master/Samples/TempForceSensor",
"link-text": "Learn More",
"lang": "C#",
"ranking": 10,
"tags": [
"C#",
"Intermediate",
"SPI"
]
}
]
}