-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathtemplates.xml
1145 lines (1145 loc) · 124 KB
/
templates.xml
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
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="ASCII"?><model:MDescriptors xmlns:model="http://www.silabs.com/ss/Studio.ecore">
<descriptors name="bt_ai_ml_hand_signal_recognition" label="Bluetooth - AI/ML Hand Signal Recognition (MLX90640)"
description="This application uses TensorFlow Lite for Microcontrollers to run image classification machine learning models to detect the hand gestures from image data recorded from a Far Infrared Sensor. The detection is visualized using the OLED and the classification results are written to the VCOM serial port. Additionally, the classification results are transmitted to a connected Bluetooth Low Energy (BLE) Client.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="solutionReferenceId" value="bluetooth_ai_ml_hand_signal_recognition.SimplicityStudio.bt_hand_signal_recognition.slcp"/>
<properties key="projectFilePaths" value="bluetooth_ai_ml_hand_signal_recognition/SimplicityStudio/bt_hand_signal_recognition.slcp"/>
<properties key="readmeFiles" value="bluetooth_ai_ml_hand_signal_recognition/README.md"/>
<properties key="boardCompatibility" value="brd2601b brd2703a brd2704a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*mgm24.* .*efr32[bm]g24.* .*efr32[x]g24.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Capability|Machine\ Learning Device\ Type|SoC MCU|32-bit\ MCU Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_people_counting_ak9753" label="Bluetooth - People Counting (AK9753)"
description="This project aims to implement a people counting application using Silabs development kits and external sensors integrated with the BLE wireless stack.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="solutionReferenceId" value="bluetooth_people_counting_ak9753.SimplicityStudio.bluetooth_people_counting_ak9753.slcp"/>
<properties key="projectFilePaths" value="bluetooth_people_counting_ak9753/SimplicityStudio/bluetooth_people_counting_ak9753.slcp"/>
<properties key="readmeFiles" value="bluetooth_people_counting_ak9753/README.md"/>
<properties key="boardCompatibility" value="brd2704a brd2601b brd2703a brd4108a brd4314a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*bgm22.* .*bg22.* .*mgm24.* .*efr32[bm]g24.* .*efr32[x]g24.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bt_door_lock_rfid" label="Bluetooth - Door Lock RFID (ID-12LA)"
description="This project aims to implement a door lock application using Silabs development kits and external sensors integrated with the BLE wireless stack.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_door_lock_rfid/SimplicityStudio/bluetooth_door_lock_rfid.slcp"/>
<properties key="readmeFiles" value="bluetooth_door_lock_rfid/README.md"/>
<properties key="boardCompatibility" value="brd2704a brd2601b brd2703a brd4108a brd4314a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*bgm22.* .*bg22.* .*mgm24.* .*efr32[bm]g24.* .*efr32[x]g24.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bt_soc_blinky_sparkfun_thingplus" label="Bluetooth - SoC Blinky - SparkFun Thing Plus Matter - MGM240P"
description="This example application is the Hello World of Bluetooth Low Energy (BLE). It allows a BLE central device to control the LED on the mainboard and receive button press notifications.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_soc_blinky_sparkfun_thingplus/SimplicityStudio/bt_soc_blinky_brd2704a.slcp"/>
<properties key="readmeFiles" value="bluetooth_soc_blinky_sparkfun_thingplus/README.md"/>
<properties key="boardCompatibility" value="brd2704a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*mgm24.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Third Party Hardware Drivers"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC MCU|32-bit\ MCU Project\ Difficulty|Beginner Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bt_dosimeter_sensor" label="Bluetooth - Dosimeter (Sparkfun Type 5) - Sensor"
description="This application uses the dosimeter (Sparkfun Type 5) to measure the radiation level of the ambient space and the report this information to another device that place outside of the radioactive zone.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="solutionReferenceId" value="bluetooth_dosimeter.bluetooth_dosimeter_sensor.SimplicityStudio.bluetooth_dosimeter_sensor.slcp"/>
<properties key="projectFilePaths" value="bluetooth_dosimeter/bluetooth_dosimeter_sensor/SimplicityStudio/bluetooth_dosimeter_sensor.slcp"/>
<properties key="readmeFiles" value="bluetooth_dosimeter/README.md"/>
<properties key="boardCompatibility" value="brd2601b brd2703a brd2704a brd4108a brd4314a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*bgm22.* .*bg22.* .*mgm24.* .*efr32[bm]g24.* .*efr32[x]g24.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bt_dosimeter_client" label="Bluetooth - Dosimeter (Sparkfun Type 5) - Client"
description="This application gets the information about the radiation level from the sender via BLE (Bluetooth Low Energy) and then display it on the OLED for visualization. A buzzer is also used to notify users when the radiation level crosses the threshold.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="solutionReferenceId" value="bluetooth_dosimeter.bluetooth_dosimeter_client.SimplicityStudio.bluetooth_dosimeter_client.slcp"/>
<properties key="projectFilePaths" value="bluetooth_dosimeter/bluetooth_dosimeter_client/SimplicityStudio/bluetooth_dosimeter_client.slcp"/>
<properties key="readmeFiles" value="bluetooth_dosimeter/README.md"/>
<properties key="boardCompatibility" value="brd2703a brd4108a brd4314a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*bgm22.* .*bg22.* .*efr32[bm]g24.* .*efr32[x]g24.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bt_ancs" label="Bluetooth - Apple Notification Center Service"
description="This example demonstrates how to receive Apple Notification Center Service (ANCS) Notifications, such as phone calls, calendar events, and so on and print them out to the VCOM.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="solutionReferenceId" value="bluetooth_apple_notification_center_service.SimplicityStudio.bt_ancs.slcp"/>
<properties key="projectFilePaths" value="bluetooth_apple_notification_center_service/SimplicityStudio/bt_ancs.slcp"/>
<properties key="readmeFiles" value="bluetooth_apple_notification_center_service/README.md"/>
<properties key="boardCompatibility" value="brd2601a brd2601b brd2703a brd2704a brd4100a brd4101a brd4101b brd4103a brd4104a brd4108a brd4109a brd4110a brd4111a brd4113a brd4150a brd4150b brd4150c brd4151a brd4152a brd4153a brd4154a brd4155a brd4158a brd4159a brd4161a brd4162a brd4163a brd4164a brd4165b brd4166a brd4167a brd4168a brd4169a brd4169b brd4170a brd4172a brd4172b brd4173a brd4174a brd4174b brd4175a brd4176a brd4179b brd4180a brd4180b brd4181a brd4181b brd4181c brd4182a brd4183a brd4183b brd4183c brd4184a brd4184b brd4185a brd4186a brd4186b brd4186c brd4187a brd4187b brd4187c brd4188a brd4188b brd4190a brd4191a brd4194a brd4195a brd4196a brd4198a brd4300a brd4300b brd4301a brd4302a brd4303a brd4304a brd4305a brd4305c brd4305d brd4305e brd4306a brd4306b brd4306c brd4306d brd4308a brd4308b brd4308c brd4308d brd4309a brd4309b brd4310a brd4311a brd4311b brd4312a brd4314a brd4316a brd4317a brd4318a brd4319a brd4330a brd4331a brd4335a brd4400a brd4400b brd4401a brd4401b com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32[bm]g12p.* .*efr32[bm]g13p.* .*efr32[bm]g1p.* .*efr32[bm]g21.* .*efr32[bm]g22.* .*efr32[bm]g24.* .*efr32[bm]g27.* .*[bm]gm1.* .*[bm]gm13.* .*[bm]gm21.* .*[bm]gm22.* .*[bm]gm24.* .*[bm]gm27.* .*efr32[fz]g28.* .*efr32bg1b.* .*efr32mg14p.* .*mgm12.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bt_co_client" label="Bluetooth - CO Monitor (MQ7) - Client"
description="This project aims to implement a CO application using Silabs development kits and external sensors integrated with the BLE wireless stack. The wireless CO system composed of a sensor and a (at least one) client device. The sensor periodically measures the CO level and advertises the processed CO level value to the Client Devices.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_co_monitor/bt_co_client/SimplicityStudio/bt_co_client.slcp"/>
<properties key="readmeFiles" value="bluetooth_co_monitor/README.md"/>
<properties key="boardCompatibility" value="brd2703a brd4108a brd4314a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*bgm22.* .*bg22.* .*efr32mg24.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bt_co_sensor" label="Bluetooth - CO Monitor (MQ7) - Sensor"
description="This project aims to implement a CO application using Silabs development kits and external sensors integrated with the BLE wireless stack. The wireless CO system composed of a sensor and a (at least one) client device. The sensor periodically measures the CO level and advertises the processed CO level value to the Client Devices.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_co_monitor/bt_co_sensor/SimplicityStudio/bt_co_sensor.slcp"/>
<properties key="readmeFiles" value="bluetooth_co_monitor/README.md"/>
<properties key="boardCompatibility" value="brd2703a brd4108a brd4314a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*bgm22.* .*bg22.* .*efr32mg24.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_operation_time_measurement_client" label="Bluetooth - Operation Time Measurement (BMA400) - Client"
description="This project proposes the development of an application that uses the Silabs BG22 Bluetooth SoC Explorer Kits and Mikroe ACCEL 5 CLICK board and Adafruit IS31FL3741 components to monitor the operation time of machineries and display the information graphically. The application will use BLE for wireless communication between the devices.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_operation_time_measurement/bluetooth_operation_time_measurement_client/SimplicityStudio/bluetooth_operation_time_measurement_client.slcp"/>
<properties key="readmeFiles" value="bluetooth_operation_time_measurement/README.md"/>
<properties key="boardCompatibility" value="brd2703a brd4108a brd4314a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*bgm22.* .*bg22.* .*efr32mg24.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_controlling_led_from_smartphone" label="Bluetooth - Controlling LED from Smartphone"
description="This example shows how to develop a simple software to control the Wireless Development Kit's LEDs with a mobile phone application.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="solutionReferenceId" value="bluetooth_controlling_led_from_smartphone.SimplicityStudio.bluetooth_controlling_led_from_smartphone.slcp"/>
<properties key="projectFilePaths" value="bluetooth_controlling_led_from_smartphone/SimplicityStudio/bluetooth_controlling_led_from_smartphone.slcp"/>
<properties key="readmeFiles" value="bluetooth_controlling_led_from_smartphone/README.md"/>
<properties key="boardCompatibility" value="brd2601a brd2601b brd2703a brd2704a brd4100a brd4103a brd4104a brd4108a brd4109a brd4110a brd4111a brd4113a brd4150a brd4150b brd4150c brd4151a brd4152a brd4153a brd4155a brd4158a brd4159a brd4161a brd4162a brd4163a brd4164a brd4165b brd4166a brd4167a brd4168a brd4169a brd4169b brd4170a brd4172a brd4172b brd4173a brd4174a brd4174b brd4175a brd4176a brd4179b brd4180a brd4180b brd4181a brd4181b brd4181c brd4182a brd4183a brd4183b brd4183c brd4184a brd4184b brd4185a brd4186a brd4186b brd4186c brd4187a brd4187b brd4187c brd4188a brd4188b brd4190a brd4194a brd4195a brd4196a brd4198a brd4300a brd4300b brd4301a brd4302a brd4303a brd4304a brd4305a brd4305c brd4305d brd4305e brd4306a brd4306b brd4306c brd4306d brd4308a brd4308b brd4308c brd4308d brd4309a brd4309b brd4310a brd4311a brd4311b brd4312a brd4314a brd4316a brd4317a brd4318a brd4319a brd4330a brd4331a brd4335a brd4400a brd4400b brd4401a brd4401b com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32[bm]g12p.* .*efr32[bm]g13p.* .*efr32[bm]g1p.* .*efr32[bm]g21.* .*efr32[bm]g22.* .*efr32[bm]g24.* .*efr32[bm]g27.* .*[bm]gm1.* .*[bm]gm13.* .*[bm]gm21.* .*[bm]gm22.* .*[bm]gm24.* .*[bm]gm27.* .*efr32[fz]g28.* .*efr32bg1b.* .*efr32mg14p.* .*mgm12.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_serial_port_profile_server" label="Bluetooth - Serial Port Profile (SPP) - Server"
description="This example provides a simple template for SPP-like communication (also know as wire replacement), where Bluetooth serves as a transport channel for serial communication between server and client.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="solutionReferenceId" value="bluetooth_serial_port_profile.bt_spp_server.SimplicityStudio.bt_serial_port_profile_server.slcp"/>
<properties key="projectFilePaths" value="bluetooth_serial_port_profile/bt_spp_server/SimplicityStudio/bt_serial_port_profile_server.slcp"/>
<properties key="readmeFiles" value="bluetooth_serial_port_profile/README.md"/>
<properties key="boardCompatibility" value="brd2601a brd2601b brd2703a brd2704a brd4100a brd4101a brd4101b brd4103a brd4104a brd4108a brd4109a brd4110a brd4111a brd4113a brd4150a brd4150b brd4150c brd4151a brd4152a brd4153a brd4154a brd4155a brd4158a brd4159a brd4161a brd4162a brd4163a brd4164a brd4165b brd4166a brd4167a brd4168a brd4169a brd4169b brd4170a brd4172a brd4172b brd4173a brd4174a brd4174b brd4175a brd4176a brd4179b brd4180a brd4180b brd4181a brd4181b brd4181c brd4182a brd4183a brd4183b brd4183c brd4184a brd4184b brd4185a brd4186a brd4186b brd4186c brd4187a brd4187b brd4187c brd4188a brd4188b brd4190a brd4191a brd4194a brd4195a brd4196a brd4198a brd4300a brd4300b brd4301a brd4302a brd4303a brd4304a brd4305a brd4305c brd4305d brd4305e brd4306a brd4306b brd4306c brd4306d brd4308a brd4308b brd4308c brd4308d brd4309a brd4309b brd4310a brd4311a brd4311b brd4312a brd4314a brd4316a brd4317a brd4318a brd4319a brd4330a brd4331a brd4335a brd4400a brd4400b brd4401a brd4401b com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32[bm]g12p.* .*efr32[bm]g13p.* .*efr32[bm]g1p.* .*efr32[bm]g21.* .*efr32[bm]g22.* .*efr32[bm]g24.* .*efr32[bm]g27.* .*[bm]gm1.* .*[bm]gm13.* .*[bm]gm21.* .*[bm]gm22.* .*[bm]gm24.* .*[bm]gm27.* .*efr32[fz]g28.* .*efr32bg1b.* .*efr32mg14p.* .*mgm12.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_operation_time_measurement_sensor" label="Bluetooth - Operation Time Measurement (BMA400) - Sensor"
description="This project proposes the development of an application that uses the Silabs BG22 Bluetooth SoC Explorer Kits and Mikroe ACCEL 5 CLICK board and Adafruit IS31FL3741 components to monitor the operation time of machineries and display the information graphically. The application will use BLE for wireless communication between the devices.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_operation_time_measurement/bluetooth_operation_time_measurement_sensor/SimplicityStudio/bluetooth_operation_time_measurement_sensor.slcp"/>
<properties key="readmeFiles" value="bluetooth_operation_time_measurement/README.md"/>
<properties key="boardCompatibility" value="brd2703a brd4108a brd4314a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*bgm22.* .*bg22.* .*efr32mg24.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_serial_port_profile_client" label="Bluetooth - Serial Port Profile (SPP) - Client"
description="This example provides a simple template for SPP-like communication (also know as wire replacement), where Bluetooth serves as a transport channel for serial communication between server and client.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="solutionReferenceId" value="bluetooth_serial_port_profile.bt_spp_client.SimplicityStudio.bt_serial_port_profile_client.slcp"/>
<properties key="projectFilePaths" value="bluetooth_serial_port_profile/bt_spp_client/SimplicityStudio/bt_serial_port_profile_client.slcp"/>
<properties key="readmeFiles" value="bluetooth_serial_port_profile/README.md"/>
<properties key="boardCompatibility" value="brd2601a brd2601b brd2703a brd2704a brd4100a brd4101a brd4101b brd4103a brd4104a brd4108a brd4109a brd4110a brd4111a brd4113a brd4150a brd4150b brd4150c brd4151a brd4152a brd4153a brd4154a brd4155a brd4158a brd4159a brd4161a brd4162a brd4163a brd4164a brd4165b brd4166a brd4167a brd4168a brd4169a brd4169b brd4170a brd4172a brd4172b brd4173a brd4174a brd4174b brd4175a brd4176a brd4179b brd4180a brd4180b brd4181a brd4181b brd4181c brd4182a brd4183a brd4183b brd4183c brd4184a brd4184b brd4185a brd4186a brd4186b brd4186c brd4187a brd4187b brd4187c brd4188a brd4188b brd4190a brd4191a brd4194a brd4195a brd4196a brd4198a brd4300a brd4300b brd4301a brd4302a brd4303a brd4304a brd4305a brd4305c brd4305d brd4305e brd4306a brd4306b brd4306c brd4306d brd4308a brd4308b brd4308c brd4308d brd4309a brd4309b brd4310a brd4311a brd4311b brd4312a brd4314a brd4316a brd4317a brd4318a brd4319a brd4330a brd4331a brd4335a brd4400a brd4400b brd4401a brd4401b com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32[bm]g12p.* .*efr32[bm]g13p.* .*efr32[bm]g1p.* .*efr32[bm]g21.* .*efr32[bm]g22.* .*efr32[bm]g24.* .*efr32[bm]g27.* .*[bm]gm1.* .*[bm]gm13.* .*[bm]gm21.* .*[bm]gm22.* .*[bm]gm24.* .*[bm]gm27.* .*efr32[fz]g28.* .*efr32bg1b.* .*efr32mg14p.* .*mgm12.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bt_reporting_battery_voltage" label="Bluetooth - Reporting Battery Voltage"
description="This example shows how to create an application to monitor the battery voltage and report it as a percentage of full charge. The Bluetooth SIG defines a battery service exactly for this purpose. The definition can be found in Bluetooth SIG Specifications List. The example will use this adopted service to report battery level.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="solutionReferenceId" value="bluetooth_reporting_battery_voltage.SimplicityStudio.bluetooth_reporting_battery_voltage.slcp"/>
<properties key="projectFilePaths" value="bluetooth_reporting_battery_voltage/SimplicityStudio/bluetooth_reporting_battery_voltage.slcp"/>
<properties key="readmeFiles" value="bluetooth_reporting_battery_voltage/README.md"/>
<properties key="boardCompatibility" value="brd4100a brd4103a brd4104a brd4161a brd4151a brd4159a brd4169a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32bg1p.* .*efr32bg12.* .*efr32bg13.* .*efr32mg12.* .*efr32mg1p.* .*efr32mg13.* .*efr32mg14.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC MCU|32-bit\ MCU Project\ Difficulty|Beginner Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bt_doorlock_fingerprint" label="Bluetooth - Door Lock Fingerprint (A-172-MRQ)"
description="This example is used for a BLE-based device lock system using one Silabs EFR32xG24 Explorer kit and various hardware components such as MikroE Fingerprint Click 2 (A-172-MRQ) and SparkFun Micro OLED Breakout (Qwiic). The system is using BLE for wireless communication. This example also is the foundation to develop a secure and convenient device system using biometric authentication (fingerprint) and LED display indication. The system will use BLE for wireless communication between the Silabs board and the EFR connect mobile application.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="solutionReferenceId" value="bluetooth_door_lock_fingerprint.SimplicityStudio.bt_doorlock_fingerprint.slcp"/>
<properties key="projectFilePaths" value="bluetooth_door_lock_fingerprint/SimplicityStudio/bt_doorlock_fingerprint.slcp"/>
<properties key="readmeFiles" value="bluetooth_door_lock_fingerprint/README.md"/>
<properties key="boardCompatibility" value="brd2703a brd4314a brd4108a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32mg24.* .*bgm22.* .*efr32bg22.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC MCU|32-bit\ MCU Project\ Difficulty|Beginner Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_hid_keyboard" label="Bluetooth - HID Keyboard"
description="This is an example for Bluetooth LE HID device development, which can connect wirelessly to HID hosts including Windows, Mac, Android and iOS systems.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="solutionReferenceId" value="bluetooth_hid_keyboard.SimplicityStudio.bluetooth_hid_keyboard.slcp"/>
<properties key="projectFilePaths" value="bluetooth_hid_keyboard/SimplicityStudio/bluetooth_hid_keyboard.slcp"/>
<properties key="readmeFiles" value="bluetooth_hid_keyboard/README.md"/>
<properties key="boardCompatibility" value="brd2601a brd2601b brd2703a brd4100a brd4103a brd4104a brd4108a brd4150a brd4150b brd4150c brd4151a brd4152a brd4153a brd4155a brd4158a brd4159a brd4161a brd4162a brd4163a brd4164a brd4165b brd4166a brd4167a brd4168a brd4169a brd4169b brd4170a brd4172a brd4172b brd4173a brd4174a brd4174b brd4175a brd4176a brd4179b brd4180a brd4180b brd4181a brd4181b brd4181c brd4182a brd4183a brd4183b brd4183c brd4184a brd4184b brd4185a brd4186a brd4186b brd4186c brd4187a brd4187b brd4187c brd4190a brd4195a brd4196a brd4198a brd4302a brd4303a brd4305a brd4305c brd4305d brd4305e brd4314a brd4318a brd4330a brd4331a brd4335a brd4400a brd4400b brd4401a brd4401b com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32[bm]g12p.* .*efr32[bm]g13p.* .*efr32[bm]g1p.* .*efr32[bm]g21.* .*efr32[bm]g22.* .*efr32[bm]g24.* .*efr32[bm]g27.* .*[bm]gm1.* .*[bm]gm13.* .*[bm]gm21.* .*[bm]gm22.* .*[bm]gm24.* .*[bm]gm27.* .*efr32[fz]g28.* .*efr32bg1b.* .*efr32mg14p.* .*mgm12.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bt_log_system_vcom" label="Bluetooth - Log System via VCOM (UART)"
description="This example introduces a simple implementation of logging on EFR32 based devices.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="solutionReferenceId" value="bluetooth_log_system.SimplicityStudio.bt_log_system_vcom.slcp"/>
<properties key="projectFilePaths" value="bluetooth_log_system/SimplicityStudio/bt_log_system_vcom.slcp"/>
<properties key="readmeFiles" value="bluetooth_log_system/README.md"/>
<properties key="boardCompatibility" value="brd2601a brd2601b brd2703a brd2704a brd4100a brd4101a brd4101b brd4103a brd4104a brd4108a brd4109a brd4110a brd4111a brd4113a brd4150a brd4150b brd4150c brd4151a brd4152a brd4153a brd4154a brd4155a brd4158a brd4159a brd4161a brd4162a brd4163a brd4164a brd4165b brd4166a brd4167a brd4168a brd4169a brd4169b brd4170a brd4172a brd4172b brd4173a brd4174a brd4174b brd4175a brd4176a brd4179b brd4180a brd4180b brd4181a brd4181b brd4181c brd4182a brd4183a brd4183b brd4183c brd4184a brd4184b brd4185a brd4186a brd4186b brd4186c brd4187a brd4187b brd4187c brd4188a brd4188b brd4190a brd4191a brd4194a brd4195a brd4196a brd4198a brd4300a brd4300b brd4301a brd4302a brd4303a brd4304a brd4305a brd4305c brd4305d brd4305e brd4306a brd4306b brd4306c brd4306d brd4308a brd4308b brd4308c brd4308d brd4309a brd4309b brd4310a brd4311a brd4311b brd4312a brd4314a brd4316a brd4317a brd4318a brd4319a brd4330a brd4331a brd4335a brd4400a brd4400b brd4401a brd4401b com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32[bm]g12p.* .*efr32[bm]g13p.* .*efr32[bm]g1p.* .*efr32[bm]g21.* .*efr32[bm]g22.* .*efr32[bm]g24.* .*efr32[bm]g27.* .*[bm]gm1.* .*[bm]gm13.* .*[bm]gm21.* .*[bm]gm22.* .*[bm]gm24.* .*[bm]gm27.* .*efr32[fz]g28.* .*efr32bg1b.* .*efr32mg14p.* .*mgm12.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bt_log_system_rtt" label="Bluetooth - Log System via RTT"
description="This example introduces a simple implementation of logging on EFR32 based devices.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="solutionReferenceId" value="bluetooth_log_system.SimplicityStudio.bt_log_system_rtt.slcp"/>
<properties key="projectFilePaths" value="bluetooth_log_system/SimplicityStudio/bt_log_system_rtt.slcp"/>
<properties key="readmeFiles" value="bluetooth_log_system/README.md"/>
<properties key="boardCompatibility" value="brd2601a brd2601b brd2703a brd2704a brd4100a brd4101a brd4101b brd4103a brd4104a brd4108a brd4109a brd4110a brd4111a brd4113a brd4150a brd4150b brd4150c brd4151a brd4152a brd4153a brd4154a brd4155a brd4158a brd4159a brd4161a brd4162a brd4163a brd4164a brd4165b brd4166a brd4167a brd4168a brd4169a brd4169b brd4170a brd4172a brd4172b brd4173a brd4174a brd4174b brd4175a brd4176a brd4179b brd4180a brd4180b brd4181a brd4181b brd4181c brd4182a brd4183a brd4183b brd4183c brd4184a brd4184b brd4185a brd4186a brd4186b brd4186c brd4187a brd4187b brd4187c brd4188a brd4188b brd4190a brd4191a brd4194a brd4195a brd4196a brd4198a brd4300a brd4300b brd4301a brd4302a brd4303a brd4304a brd4305a brd4305c brd4305d brd4305e brd4306a brd4306b brd4306c brd4306d brd4308a brd4308b brd4308c brd4308d brd4309a brd4309b brd4310a brd4311a brd4311b brd4312a brd4314a brd4316a brd4317a brd4318a brd4319a brd4330a brd4331a brd4335a brd4400a brd4400b brd4401a brd4401b com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32[bm]g12p.* .*efr32[bm]g13p.* .*efr32[bm]g1p.* .*efr32[bm]g21.* .*efr32[bm]g22.* .*efr32[bm]g24.* .*efr32[bm]g27.* .*[bm]gm1.* .*[bm]gm13.* .*[bm]gm21.* .*[bm]gm22.* .*[bm]gm24.* .*[bm]gm27.* .*efr32[fz]g28.* .*efr32bg1b.* .*efr32mg14p.* .*mgm12.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bt_multicentral_multiperipheral_dual_topology" label="Bluetooth - Multi-Central Multi-Peripheral Dual Topology"
description="This code example demonstrates how to handle multiple (simultaneous) connections, when the device has to act as central on some of the connections, and peripheral on the rest of the connections.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="solutionReferenceId" value="bluetooth_multicentral_multiperipheral_dual_topology.SimplicityStudio.bluetooth_multicentral_multiperipheral_dual_topology.slcp"/>
<properties key="projectFilePaths" value="bluetooth_multicentral_multiperipheral_dual_topology/SimplicityStudio/bluetooth_multicentral_multiperipheral_dual_topology.slcp"/>
<properties key="readmeFiles" value="bluetooth_multicentral_multiperipheral_dual_topology/README.md"/>
<properties key="boardCompatibility" value="brd2601a brd2601b brd2703a brd2704a brd4100a brd4101a brd4101b brd4103a brd4104a brd4108a brd4109a brd4110a brd4111a brd4113a brd4150a brd4150b brd4150c brd4151a brd4152a brd4153a brd4154a brd4155a brd4158a brd4159a brd4161a brd4162a brd4163a brd4164a brd4165b brd4166a brd4167a brd4168a brd4169a brd4169b brd4170a brd4172a brd4172b brd4173a brd4174a brd4174b brd4175a brd4176a brd4179b brd4180a brd4180b brd4181a brd4181b brd4181c brd4182a brd4183a brd4183b brd4183c brd4184a brd4184b brd4185a brd4186a brd4186b brd4186c brd4187a brd4187b brd4187c brd4188a brd4188b brd4190a brd4191a brd4194a brd4195a brd4196a brd4198a brd4300a brd4300b brd4301a brd4302a brd4303a brd4304a brd4305a brd4305c brd4305d brd4305e brd4306a brd4306b brd4306c brd4306d brd4308a brd4308b brd4308c brd4308d brd4309a brd4309b brd4310a brd4311a brd4311b brd4312a brd4314a brd4316a brd4317a brd4318a brd4319a brd4330a brd4331a brd4335a brd4400a brd4400b brd4401a brd4401b com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32[bm]g12p.* .*efr32[bm]g13p.* .*efr32[bm]g1p.* .*efr32[bm]g21.* .*efr32[bm]g22.* .*efr32[bm]g24.* .*efr32[bm]g27.* .*[bm]gm1.* .*[bm]gm13.* .*[bm]gm21.* .*[bm]gm22.* .*[bm]gm24.* .*[bm]gm27.* .*efr32[fz]g28.* .*efr32bg1b.* .*efr32mg14p.* .*mgm12.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bt_man_in_the_middle" label="Bluetooth - Man-In-The-Middle"
description="This project shows the implementation of Man In The Middle (MITM) with BLE.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_man_in_the_middle/SimplicityStudio/bt_man_in_the_middle.slcp"/>
<properties key="readmeFiles" value="bluetooth_man_in_the_middle/README.md"/>
<properties key="boardCompatibility" value="brd2601a brd2601b brd2703a brd2704a brd4100a brd4101a brd4101b brd4103a brd4104a brd4108a brd4109a brd4110a brd4111a brd4113a brd4150a brd4150b brd4150c brd4151a brd4152a brd4153a brd4154a brd4155a brd4158a brd4159a brd4161a brd4162a brd4163a brd4164a brd4165b brd4166a brd4167a brd4168a brd4169a brd4169b brd4170a brd4172a brd4172b brd4173a brd4174a brd4174b brd4175a brd4176a brd4179b brd4180a brd4180b brd4181a brd4181b brd4181c brd4182a brd4183a brd4183b brd4183c brd4184a brd4184b brd4185a brd4186a brd4186b brd4186c brd4187a brd4187b brd4187c brd4188a brd4188b brd4190a brd4191a brd4194a brd4195a brd4196a brd4198a brd4300a brd4300b brd4301a brd4302a brd4303a brd4304a brd4305a brd4305c brd4305d brd4305e brd4306a brd4306b brd4306c brd4306d brd4308a brd4308b brd4308c brd4308d brd4309a brd4309b brd4310a brd4311a brd4311b brd4312a brd4314a brd4316a brd4317a brd4318a brd4319a brd4330a brd4331a brd4335a brd4400a brd4400b brd4401a brd4401b com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32[bm]g12p.* .*efr32[bm]g13p.* .*efr32[bm]g1p.* .*efr32[bm]g21.* .*efr32[bm]g22.* .*efr32[bm]g24.* .*efr32[bm]g27.* .*[bm]gm1.* .*[bm]gm13.* .*[bm]gm21.* .*[bm]gm22.* .*[bm]gm24.* .*[bm]gm27.* .*efr32[fz]g28.* .*efr32bg1b.* .*efr32mg14p.* .*mgm12.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bt_thermometer_auth" label="Bluetooth - SoC Thermometer Authenticated Server"
description="This example project shows an example for thermometer server authenticator's role in MITM scenario.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_man_in_the_middle/SimplicityStudio/bt_thermometer_auth.slcp"/>
<properties key="readmeFiles" value="bluetooth_man_in_the_middle/README.md"/>
<properties key="boardCompatibility" value="brd2601a brd2601b brd4100a brd4103a brd4104a brd4109a brd4150a brd4150b brd4150c brd4151a brd4152a brd4153a brd4155a brd4158a brd4159a brd4161a brd4162a brd4163a brd4164a brd4165b brd4166a brd4167a brd4168a brd4169a brd4169b brd4170a brd4172a brd4172b brd4173a brd4174a brd4174b brd4175a brd4182a brd4184a brd4184b brd4186a brd4186b brd4186c brd4187a brd4187b brd4187c brd4188a brd4188b brd4190a brd4194a brd4198a brd4300a brd4300b brd4301a brd4302a brd4303a brd4304a brd4305a brd4305c brd4305d brd4305e brd4306a brd4306b brd4306c brd4306d brd4310a brd4311a brd4311b brd4312a brd4316a brd4317a brd4318a brd4335a brd4400a brd4400b brd4401a brd4401b com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32[bm]g12p.* .*efr32[bm]g13p.* .*efr32[bm]g1p.* .*efr32[bm]g21.* .*efr32[bm]g22.* .*efr32[bm]g24.* .*efr32[bm]g27.* .*[bm]gm1.* .*[bm]gm13.* .*[bm]gm21.* .*[bm]gm22.* .*[bm]gm24.* .*[bm]gm27.* .*efr32[fz]g28.* .*efr32bg1b.* .*efr32mg14p.* .*mgm12.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_uploading_images_to_multislots" label="Bluetooth - Uploading images to multi-slots"
description=" This project shows how to implement image uploading to the bootloader storage slots using the standard OTA process. It is also extended by allowing the users to select a slot to upload to and a slot to boot from.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_uploading_images_to_multislots/SimplicityStudio/bt_uploading_images_to_multislots.slcp"/>
<properties key="readmeFiles" value="bluetooth_uploading_images_to_multislots/README.md"/>
<properties key="boardCompatibility" value="brd4161a brd4162a brd4163a brd4164a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32mg12p.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bt_ota_firmware_update_in_user_application" label="Bluetooth - OTA Firmware Update in User Application"
description="This project aims to implement firmware upgrade method used in SoC-mode Bluetooth applications. A Gecko Bootloader (GBL) image containing the new firmware is sent to target device via a Bluetooth connection.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="solutionReferenceId" value="bluetooth_ota_firmware_update_in_user_application.SimplicityStudio.bt_ota_firmware_update_in_user_application.slcp"/>
<properties key="projectFilePaths" value="bluetooth_ota_firmware_update_in_user_application/SimplicityStudio/bt_ota_firmware_update_in_user_application.slcp"/>
<properties key="readmeFiles" value="bluetooth_ota_firmware_update_in_user_application/README.md"/>
<properties key="boardCompatibility" value="brd4314a brd2601b brd2703a brd4108a brd2704a brd4109a brd4110a brd4111a brd4113a brd4176a brd4179b brd4180a brd4180b brd4181a brd4181b brd4181c brd4182a brd4183a brd4183b brd4183c brd4184a brd4184b brd4185a brd4186a brd4186b brd4186c brd4187a brd4187b brd4187c brd4188a brd4188b brd4194a brd4195a brd4196a brd4198a brd4308a brd4308b brd4308c brd4308d brd4309a brd4309b brd4310a brd4311a brd4311b brd4312a brd4316a brd4317a brd4318a brd4319a brd4330a brd4331a brd4335a brd4400a brd4400b brd4401a brd4401b com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32[bm]g12p.* .*efr32[bm]g13p.* .*efr32[bm]g1p.* .*efr32[bm]g21.* .*efr32[bm]g22.* .*efr32[bm]g24.* .*efr32[bm]g27.* .*[bm]gm1.* .*[bm]gm13.* .*[bm]gm21.* .*[bm]gm22.* .*[bm]gm24.* .*[bm]gm27.* .*efr32[fz]g28.* .*efr32bg1b.* .*efr32mg14p.* .*mgm12.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_container_level_detection_sensor" label="Bluetooth - Container Level Detection (VL53L1X) - Sensor"
description=" The sensor device measures the distance between the distance sensor and the content of the container. The sensor device calculates the average distance and advertises it via BLE.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="solutionReferenceId" value="bluetooth_container_level_detection_sensor.bluetooth_container_level_detection_sensor.SimplicityStudio.bluetooth_container_level_detection_sensor.slcp"/>
<properties key="projectFilePaths" value="bluetooth_container_level_detection/SimplicityStudio/bluetooth_container_level_detection_sensor.slcp"/>
<properties key="readmeFiles" value="bluetooth_container_level_detection/README.md"/>
<properties key="boardCompatibility" value="brd2703a brd4108a brd4314a brd2601b com.silabs.board.none"/>
<properties key="partCompatibility" value=".*bgm22.* .*bg22.* .*efr32[bm]g24.* .*efr32[x]g24.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_container_level_detection_client" label="Bluetooth - Container Level Detection (VL53L1X) - Client"
description=" The sensor device measures the distance between the distance sensor and the content of the container. The sensor device calculates the average distance and advertises it via BLE.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="solutionReferenceId" value="bluetooth_container_level_detection_client.bluetooth_container_level_detection_client.SimplicityStudio.bluetooth_container_level_detection_client.slcp"/>
<properties key="projectFilePaths" value="bluetooth_container_level_detection/SimplicityStudio/bluetooth_container_level_detection_client.slcp"/>
<properties key="readmeFiles" value="bluetooth_container_level_detection/README.md"/>
<properties key="boardCompatibility" value="brd2703a brd4108a brd4314a brd2601b brd2704a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*bgm22.* .*bg22.* .*efr32[bm]g24.* .*efr32[x]g24.* .*mgm24.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bt_em4_energy_mode_ibeacon" label="Bluetooth - EM4 Energy Mode in iBeacon Application"
description="This code example shows the use of sleep mode EM4 in a Bluetooth iBeacon Application. The device will operate in deep sleep mode EM4 after advertising iBeacon packet in 5s. It will stay in EM4 for 15s but users can force the device to wake up from EM4 immediately by pushing Button.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="solutionReferenceId" value="bluetooth_em4_energy_mode_ibeacon.SimplicityStudio.bluetooth_em4_energy_mode_ibeacon.slcp"/>
<properties key="projectFilePaths" value="bluetooth_em4_energy_mode_ibeacon/SimplicityStudio/bluetooth_em4_energy_mode_ibeacon.slcp"/>
<properties key="readmeFiles" value="bluetooth_em4_energy_mode_ibeacon/README.md"/>
<properties key="boardCompatibility" value="brd4108a brd4314a brd2601b brd2703a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32[bm]g24.* .*bgm22.* .*bg22.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bt_thermometer_with_efr32_internal_temp_sensor" label="Bluetooth - Thermometer with EFR32 Internal Temperature Sensor"
description="This example uses the EFR32's own internal temperature sensor. This sensor is measured during the production test. The temperature readout from the ADC at production temperature as well as the Celsius value are given in the device information page.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="solutionReferenceId" value="bluetooth_thermometer_with_efr32_internal_temperature_sensor.SimplicityStudio.bt_thermometer_with_efr32_internal_temp_sensor.slcp"/>
<properties key="projectFilePaths" value="bluetooth_thermometer_with_efr32_internal_temperature_sensor/SimplicityStudio/bt_thermometer_with_efr32_internal_temp_sensor.slcp"/>
<properties key="readmeFiles" value="bluetooth_thermometer_with_efr32_internal_temperature_sensor/README.md"/>
<properties key="boardCompatibility" value="brd4161a brd4162a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32mg12.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_accelerometer_bma400_i2c" label="Bluetooth - Accelerometer (BMA400) - I2C"
description="This project aims to implement an accelerometer application using Silicon Labs development kits and external sensors integrated with the BLE wireless stack.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_accelerometer_bma400/SimplicityStudio/bluetooth_accelerometer_bma400_i2c.slcp"/>
<properties key="readmeFiles" value="bluetooth_accelerometer_bma400/README.md"/>
<properties key="boardCompatibility" value="brd4314a brd4108a brd2703a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*bgm220.* .*efr32mg24.* .*bg22.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_accelerometer_bma400_spi" label="Bluetooth - Accelerometer (BMA400) - SPI"
description="This project aims to implement an accelerometer application using Silicon Labs development kits and external sensors integrated with the BLE wireless stack.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_accelerometer_bma400/SimplicityStudio/bluetooth_accelerometer_bma400_spi.slcp"/>
<properties key="readmeFiles" value="bluetooth_accelerometer_bma400/README.md"/>
<properties key="boardCompatibility" value="brd4314a brd4108a brd2703a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*bgm220.* .*efr32mg24.* .*bg22.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_smart_band" label="Bluetooth - Smart Band Application"
description=" This project shows a demonstration of Bluetooth smart band application using Silabs development kits.It enables an Android smartphone to connect, send and receive text notifications and sensor data via BLE.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="solutionReferenceId" value="bluetooth_smart_band.SimplicityStudio.bluetooth_smart_band.slcp"/>
<properties key="projectFilePaths" value="bluetooth_smart_band/SimplicityStudio/bluetooth_smart_band.slcp"/>
<properties key="readmeFiles" value="bluetooth_smart_band/README.md"/>
<properties key="boardCompatibility" value="brd4180a brd4180b com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32[bm]g21.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bt_secure_attestation_server" label="Bluetooth - Secure Attestation - Server"
description="This project aims to implement a secure attestation over Bluetooth Low Energy for server device. The server acts in the BLE peripheral role and allows a central/client to connect to it.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="solutionReferenceId" value="bluetooth_secure_attestation.bt_secure_attestation_server.SimplicityStudio.bt_secure_attestation_server.slcp"/>
<properties key="projectFilePaths" value="bluetooth_secure_attestation/bt_secure_attestation_server/SimplicityStudio/bt_secure_attestation_server.slcp"/>
<properties key="readmeFiles" value="bluetooth_secure_attestation/README.md"/>
<properties key="boardCompatibility" value="brd4108a brd4109a brd4110a brd4111a brd4113a brd4176a brd4179b brd4180a brd4180b brd4181a brd4181b brd4182a brd4183a brd4183b brd4183c brd4184a brd4184b brd4185a brd4186a brd4187a brd4191a brd4194a brd4308a brd4308b brd4309a brd4309b brd4310a brd4311a brd4311b brd4312a brd4314a brd4330a brd4331a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32[bm]g12p.* .*efr32[bm]g13p.* .*efr32[bm]g1p.* .*efr32[bm]g21.* .*efr32[bm]g22.* .*efr32[bm]g24.* .*efr32[bm]g27.* .*[bm]gm1.* .*[bm]gm13.* .*[bm]gm21.* .*[bm]gm22.* .*[bm]gm24.* .*[bm]gm27.* .*efr32[fz]g28.* .*efr32bg1b.* .*efr32mg14p.* .*mgm12.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bt_secure_attestation_client" label="Bluetooth - Secure Attestation - Client"
description="This project aims to implement a secure attestation over Bluetooth Low Energy for client device. The client acts as a central device for the accompanying server.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="solutionReferenceId" value="bluetooth_secure_attestation.bt_secure_attestation_client.SimplicityStudio.bt_secure_attestation_client.slcp"/>
<properties key="projectFilePaths" value="bluetooth_secure_attestation/bt_secure_attestation_client/SimplicityStudio/bt_secure_attestation_client.slcp"/>
<properties key="readmeFiles" value="bluetooth_secure_attestation/README.md"/>
<properties key="boardCompatibility" value="brd2601a brd2601b brd2703a brd2704a brd4181c brd4186b brd4186c brd4187b brd4187c brd4188a brd4188b brd4195a brd4196a brd4198a brd4308c brd4308d brd4316a brd4317a brd4318a brd4319a brd4335a brd4400a brd4400b brd4401a brd4401b com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32[bm]g12p.* .*efr32[bm]g13p.* .*efr32[bm]g21.* .*efr32[bm]g22.* .*efr32[bm]g24.* .*efr32[bm]g27.* .*[bm]gm1.* .*[bm]gm13.* .*[bm]gm21.* .*[bm]gm22.* .*[bm]gm24.* .*[bm]gm27.* .*efr32[fz]g28.* .*efr32bg1b.* .*efr32mg14p.* .*mgm12.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_indoor_positioning_gateway" label="Bluetooth - RSSI Positioning - Gateway"
description="A gateway device application intended to showcase a room finder or asset locator service using the BLE stack on Silicon Laboratories development kits.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_rssi_positioning/Gateway/SimplicityStudio/bluetooth_indoor_positioning_gateway.slcp"/>
<properties key="readmeFiles" value="bluetooth_rssi_positioning/README.md"/>
<properties key="boardCompatibility" value="brd4314a brd2601b brd2703a brd4108a brd2704a brd4109a brd4110a brd4111a brd4113a brd4176a brd4179b brd4180a brd4180b brd4181a brd4181b brd4181c brd4182a brd4183a brd4183b brd4183c brd4184a brd4184b brd4185a brd4186a brd4186b brd4186c brd4187a brd4187b brd4187c brd4188a brd4188b brd4194a brd4195a brd4196a brd4198a brd4308a brd4308b brd4308c brd4308d brd4309a brd4309b brd4310a brd4311a brd4311b brd4312a brd4316a brd4317a brd4318a brd4319a brd4330a brd4331a brd4335a brd4400a brd4400b brd4401a brd4401b com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32[bm]g12p.* .*efr32[bm]g13p.* .*efr32[bm]g1p.* .*efr32[bm]g21.* .*efr32[bm]g22.* .*efr32[bm]g24.* .*efr32[bm]g27.* .*[bm]gm1.* .*[bm]gm13.* .*[bm]gm21.* .*[bm]gm22.* .*[bm]gm24.* .*[bm]gm27.* .*efr32[fz]g28.* .*efr32bg1b.* .*efr32mg14p.* .*mgm12.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_indoor_positioning_asset" label="Bluetooth - RSSI Positioning - Asset"
description="An asset device application intended to showcase a room finder or asset locator service using the BLE stack on Silicon Laboratories development kits.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_rssi_positioning/Asset/SimplicityStudio/bluetooth_indoor_positioning_asset.slcp"/>
<properties key="readmeFiles" value="bluetooth_rssi_positioning/README.md"/>
<properties key="boardCompatibility" value="brd4314a brd2601b brd2703a brd4108a brd2704a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*bgm22.* .*bg22.* .*mgm24.* .*efr32[bm]g24.* .*efr32[x]g24.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_rfid_notify" label="Bluetooth - RFID Notify"
description="This example is intended to demonstrate the capability to scan an RFID card and send a notification to a client device using the BLE stack on Silicon Laboratories development kits.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_rfid_notify/SimplicityStudio/bluetooth_rfid_notify.slcp"/>
<properties key="readmeFiles" value="bluetooth_rfid_notify/README.md"/>
<properties key="boardCompatibility" value="brd4314a brd2601b brd2703a brd4108a brd2704a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32mg24.* .*efr32bg22.* .*bgm22.* .*mgm24.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_optimized_energy_consuming_sensor" label="Bluetooth - Optimized Energy Consuming Sensor"
description="This project aims to implement an optimized energy consuming temperature sensor.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_optimized_energy_consuming_sensor/bluetooth_optimized_energy_consuming_sensor/SimplicityStudio/bluetooth_optimized_energy_consuming_sensor.slcp"/>
<properties key="readmeFiles" value="bluetooth_optimized_energy_consuming_sensor/README.md"/>
<properties key="boardCompatibility" value="brd4182a brd4180a brd4181a brd4180b com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32[bm]g21.* .*efr32[bm]g22.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_optimized_energy_consuming_client" label="Bluetooth - Optimized Energy Consuming Sensor - Status Display"
description="This project aims to implement a status display application for the optimized energy consuming sensor.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_optimized_energy_consuming_sensor/bluetooth_optimized_energy_consuming_client/SimplicityStudio/bluetooth_optimized_energy_consuming_client.slcp"/>
<properties key="readmeFiles" value="bluetooth_optimized_energy_consuming_sensor/README.md"/>
<properties key="boardCompatibility" value="brd4314a brd4108a brd2703a brd2601b brd2704a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*bgm220.* .*efr32mg24.* .*bg22.* .*mgm24.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_optimized_energy_switch_status_display" label="Bluetooth - Optimized Energy Consuming Switch - Status Display"
description="This project aims to implement a status display application for the optimized energy consuming switch.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_optimized_energy_consuming_switch/SimplicityStudio/bluetooth_optimized_energy_switch_status_display.slcp"/>
<properties key="readmeFiles" value="bluetooth_optimized_energy_consuming_switch/README.md"/>
<properties key="boardCompatibility" value="brd2703a brd4108a brd4314a brd2601b brd2704a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*bgm22.* .*bg22.* .*efr32[bm]g24.* .*efr32[x]g24.* .*mgm24.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_optimized_energy_switch" label="Bluetooth - Optimized Energy Consuming Switch"
description="This project aims to implement an optimized energy consuming switch.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_optimized_energy_consuming_switch/SimplicityStudio/bluetooth_optimized_energy_switch.slcp"/>
<properties key="readmeFiles" value="bluetooth_optimized_energy_consuming_switch/README.md"/>
<properties key="boardCompatibility" value="brd4108a brd4314a brd4161a brd4162a brd4180a brd4180b brd4181a brd4181b brd4182a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32[bm]g12p.* .*efr32[bm]g1p.* .*efr32[bm]g21.* .*efr32[bm]g22.* *bgm22.* .*bg22.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bt_joystick_7seg" label="Bluetooth - Joystick 7seg"
description="This project shows a demonstration of Bluetooth - Joystick 7seg using Silabs development kits.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="solutionReferenceId" value="bluetooth_joystick_7seg.SimplicityStudio.bt_joystick_7seg.slcp"/>
<properties key="projectFilePaths" value="bluetooth_joystick_7seg/SimplicityStudio/bt_joystick_7seg.slcp"/>
<properties key="readmeFiles" value="bluetooth_joystick_7seg/README.md"/>
<properties key="boardCompatibility" value="brd2703a brd4108a brd4314a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*bgm22.* .*bg22.* .*efr32mg24.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_pawr_thermometer_broadcaster" label="Bluetooth - PAwR Thermometer - Broadcaster"
description=" This project aims to implement a PAwR based Thermometer example. Broadcaster device get temperature data and LED status without establish any connection then displays the temperature values in onboard LCD.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_pawr_thermometer/bluetooth_pawr_thermometer_broadcaster/SimplicityStudio/bluetooth_pawr_thermometer_broadcaster.slcp"/>
<properties key="readmeFiles" value="bluetooth_pawr_thermometer/README.md"/>
<properties key="boardCompatibility" value="brd4162a brd4180a brd4180b brd4186c com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32mg12.* .*efr32mg21.* .*efr32mg24.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_pawr_thermometer_observer" label="Bluetooth - PAwR Thermometer - Observer"
description="This project aims to implement a PAwR based Thermometer example. Temperature is read from internal temperature sensor then broadcast organized data in small packets in subevents.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_pawr_thermometer/bluetooth_pawr_thermometer_observer/SimplicityStudio/bluetooth_pawr_thermometer_observer.slcp"/>
<properties key="readmeFiles" value="bluetooth_pawr_thermometer/README.md"/>
<properties key="boardCompatibility" value="brd2703a brd4108a brd4314a brd4182a brd4162a brd4180a brd4180b brd4183a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*bgm22.* .*bg22.* .*efr32mg24.* .*efr32mg22.* .*efr32mg12.* .*efr32mg21.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_explorer_kit_barometer_i2c" label="Bluetooth - Barometer I2C"
description="This example is intended to make a pressure and temperature measurement every second using the Mikore Pressure 3 Click board when the Bluetooth connection is open. The measurement can be seen via Bluetooth Pressure and Temperature characteristics under the Environmental Sensing service by reading it manually, or it can also be automatically updated using notifications.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_explorer_kit_i2c_barometer/SimplicityStudio/bluetooth_explorer_kit_i2c_barometer.slcp"/>
<properties key="readmeFiles" value="bluetooth_explorer_kit_i2c_barometer/README.md"/>
<properties key="boardCompatibility" value="brd4314a brd2703a brd4108a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32mg24.* .*efr32bg22.* .*bgm22.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Beginner\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_distance_monitor" label="Bluetooth - Distance Monitor (VL53L1X)"
description="This project shows the demonstration of a Bluetooth distance monitor application using Silabs BGM220 Explorer Kit Board - BRD4314A.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_distance_monitor/SimplicityStudio/bluetooth_distance_monitor.slcp"/>
<properties key="readmeFiles" value="bluetooth_distance_monitor/README.md"/>
<properties key="boardCompatibility" value="brd4314a brd2703a brd4108a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*bgm22.* .*bg22.* .*efr32[bm]g24.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_explorer_kit_bio_sensor_oled" label="Bluetooth - HRM/Sp02 Measurement (MAXM86161)"
description="This example implements the Heart Rate service and Pulse Oximeter service service. It enables a peer device to connect and receive Heart Rate and Pulse Oximeter values via Bluetooth. The HRM/SpO2 values are measured by using a bio-sensor located on the Heart Rate 2 Click board and displayed on the OLED screen located on the SparkFun Micro OLED Breakout (Qwiic) board.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_explorer_kit_bio_sensor_oled/SimplicityStudio/bluetooth_explorer_kit_bio_sensor_oled.slcp"/>
<properties key="readmeFiles" value="bluetooth_explorer_kit_bio_sensor_oled/README.md"/>
<properties key="boardCompatibility" value="brd4314a brd2703a brd4108a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32mg24.* .*efr32bg22.* .*bgm22.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bt_nfc_pairing" label="Bluetooth - NFC Pairing"
description="This example aims to implement a Secure Bluetooth Pairing Using NFC.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="solutionReferenceId" value="bluetooth_nfc_pairing.SimplicityStudio.bt_nfc_pairing.slcp"/>
<properties key="projectFilePaths" value="bluetooth_nfc_pairing/SimplicityStudio/bt_nfc_pairing.slcp"/>
<properties key="readmeFiles" value="bluetooth_nfc_pairing/README.md"/>
<properties key="boardCompatibility" value="brd2703a brd4314a brd4108a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32mg24.* .*bgm22.* .*efr32bg22.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bt_door_lock" label="Bluetooth - Door Lock"
description="This project aims to implement a door lock application using Silabs development kits and external sensors integrated with the BLE wireless stack.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_door_lock/SimplicityStudio/bluetooth_door_lock.slcp"/>
<properties key="readmeFiles" value="bluetooth_door_lock/README.md"/>
<properties key="boardCompatibility" value="brd4108a brd4314a brd2703a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32mg24.* .*bgm22.* .*efr32bg22.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_bthome_v2_humidity_and_temperature_monitor" label="Bluetooth - BTHome v2 - Humidity and Temperature Monitor (SHTC3)"
description="This project illustrates how BTHome can be effectively utilized with Silabs devkits to communicate the measured humidity and temperature sensor values using SparkFun Humidity Sensor Breakout (SHTC3) to a HomeAssistant system.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_bthome_v2_humidity_and_temperature_monitor/SimplicityStudio/bluetooth_bthome_v2_humidity_and_temperature_monitor.slcp"/>
<properties key="readmeFiles" value="bluetooth_bthome_v2_humidity_and_temperature_monitor/README.md"/>
<properties key="boardCompatibility" value="brd4108a brd4314a brd2703a brd2601b brd2704a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32mg24.* .*bgm22.* .*efr32bg22.* .*mgm24.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_bthome_v2_internal_temperature_monitor" label="Bluetooth - BTHome v2 - Internal Temperature Monitor"
description="This project illustrates how BTHome can be effectively utilized with Silabs devkits to communicate internal temperature sensor values to a HomeAssistant system.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_bthome_v2_internal_temperature_monitor/SimplicityStudio/bluetooth_bthome_v2_internal_temperature_monitor.slcp"/>
<properties key="readmeFiles" value="bluetooth_bthome_v2_internal_temperature_monitor/README.md"/>
<properties key="boardCompatibility" value="brd4108a brd4314a brd2703a brd2704a brd2601b com.silabs.board.none"/>
<properties key="partCompatibility" value=".*bgm22.* .*efr32bg22.* .*mgm24.* .*efr32[bm]g24.* .*efr32[x]g24.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_air_quality_monitor" label="Bluetooth - Air Quality Monitor"
description="This project shows a demonstration of Bluetooth Air Quality Monitor application using Silabs Thunderboard Sense 2, SparkFun Micro OLED Breakout (Qwiic) board, BUZZ 2 click Mikroe board and Silabs Click Shield.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_air_quality_monitor/SimplicityStudio/bluetooth_air_quality_monitor.slcp"/>
<properties key="readmeFiles" value="bluetooth_air_quality_monitor/README.md"/>
<properties key="boardCompatibility" value="brd4166a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32mg12p.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_movement_detection" label="Bluetooth - Movement Detection (BMA400)"
description="This project aims to implement a motion detection example application, the motion detection algorithm and its software module will be used as a building block for the Asset Tracking application.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_movement_detection/SimplicityStudio/bluetooth_movement_detection.slcp"/>
<properties key="readmeFiles" value="bluetooth_movement_detection/README.md"/>
<properties key="boardCompatibility" value="brd4314a brd2703a brd4108a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*bgm22.* .*bg22.* .*efr32[bm]g24.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_people_counting" label="Bluetooth - People Counting (VL53L1X)"
description="This project aims to implement a people counting application using Silicon Laboratories development kits integrated with the BLE wireless stack and a VL53L1X distance sensors.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_people_counting/SimplicityStudio/bluetooth_people_counting.slcp"/>
<properties key="readmeFiles" value="bluetooth_people_counting/README.md"/>
<properties key="boardCompatibility" value="brd4314a brd2601b brd2703a brd4108a brd2704a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32mg24.* .*efr32bg22.* .*bgm22.* .*mgm24.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_wireless_dtm" label="Bluetooth - Wireless Direct Test Mode (DTM)"
description="This project aims to implement the Wireless Direct Test Mode (DTM) to test transmission/reception capabilites of the Bluetooth-based design.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_wireless_dtm/SimplicityStudio/bluetooth_wireless_dtm.slcp"/>
<properties key="readmeFiles" value="bluetooth_wireless_dtm/README.md"/>
<properties key="boardCompatibility" value="brd2601a brd2601b brd2703a brd2704a brd4100a brd4101a brd4101b brd4103a brd4104a brd4108a brd4109a brd4110a brd4111a brd4113a brd4150a brd4150b brd4150c brd4151a brd4152a brd4153a brd4154a brd4155a brd4158a brd4159a brd4161a brd4162a brd4163a brd4164a brd4165b brd4166a brd4167a brd4168a brd4169a brd4169b brd4170a brd4172a brd4172b brd4173a brd4174a brd4174b brd4175a brd4176a brd4179b brd4180a brd4180b brd4181a brd4181b brd4181c brd4182a brd4183a brd4183b brd4183c brd4184a brd4184b brd4185a brd4186a brd4186b brd4186c brd4187a brd4187b brd4187c brd4188a brd4188b brd4190a brd4191a brd4194a brd4195a brd4196a brd4198a brd4300a brd4300b brd4301a brd4302a brd4303a brd4304a brd4305a brd4305c brd4305d brd4305e brd4306a brd4306b brd4306c brd4306d brd4308a brd4308b brd4308c brd4308d brd4309a brd4309b brd4310a brd4311a brd4311b brd4312a brd4314a brd4316a brd4317a brd4318a brd4319a brd4330a brd4331a brd4335a brd4400a brd4400b brd4401a brd4401b com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32[bm]g12p.* .*efr32[bm]g13p.* .*efr32[bm]g1p.* .*efr32[bm]g21.* .*efr32[bm]g22.* .*efr32[bm]g24.* .*efr32[bm]g27.* .*[bm]gm1.* .*[bm]gm13.* .*[bm]gm21.* .*[bm]gm22.* .*[bm]gm24.* .*[bm]gm27.* .*efr32[fz]g28.* .*efr32bg1b.* .*efr32mg14p.* .*mgm12.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_fir_sensor_mlx90632" label="Bluetooth - Ir Thermometer 3 Click (MLX90632)"
description="This example implements the Ambient temperature and the Object temperature service. It enables a device to connect and receive in every second the Object temperature values via Bluetooth.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_fir_sensor_mlx90632/SimplicityStudio/bluetooth_ir_thermometer_3_click.slcp"/>
<properties key="readmeFiles" value="bluetooth_fir_sensor_mlx90632/README.md"/>
<properties key="boardCompatibility" value="brd4314a brd4108a brd2703a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*bgm220.* .*efr32mg24.* .*bg22.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Beginer Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_bthome_v2_switch" label="Bluetooth - BTHome v2 - Switch"
description="This project aims to implement a BTHome v2 compatible switch. The device is in sleep mode, and it wakes up once the button 0 on the board is pressed. The application supports press, double press, triple press, and long press events.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_bthome_v2_switch/SimplicityStudio/bluetooth_bthome_v2_switch.slcp"/>
<properties key="readmeFiles" value="bluetooth_bthome_v2_switch/README.md"/>
<properties key="boardCompatibility" value="brd2601a brd2601b brd2703a brd2704a brd4100a brd4101a brd4101b brd4103a brd4104a brd4108a brd4109a brd4110a brd4111a brd4113a brd4150a brd4150b brd4150c brd4151a brd4152a brd4153a brd4154a brd4155a brd4158a brd4159a brd4161a brd4162a brd4163a brd4164a brd4165b brd4166a brd4167a brd4168a brd4169a brd4169b brd4170a brd4172a brd4172b brd4173a brd4174a brd4174b brd4175a brd4176a brd4179b brd4180a brd4180b brd4181a brd4181b brd4181c brd4182a brd4183a brd4183b brd4183c brd4184a brd4184b brd4185a brd4186a brd4186b brd4186c brd4187a brd4187b brd4187c brd4188a brd4188b brd4190a brd4191a brd4194a brd4195a brd4196a brd4198a brd4300a brd4300b brd4301a brd4302a brd4303a brd4304a brd4305a brd4305c brd4305d brd4305e brd4306a brd4306b brd4306c brd4306d brd4308a brd4308b brd4308c brd4308d brd4309a brd4309b brd4310a brd4311a brd4311b brd4312a brd4314a brd4316a brd4317a brd4318a brd4319a brd4330a brd4331a brd4335a brd4400a brd4400b brd4401a brd4401b com.silabs.board.none"/>
<properties key="partCompatibility" value="..*efr32[bm]g12p.* .*efr32[bm]g13p.* .*efr32[bm]g1p.* .*efr32[bm]g21.* .*efr32[bm]g22.* .*efr32[bm]g24.* .*efr32[bm]g27.* .*[bm]gm1.* .*[bm]gm13.* .*[bm]gm21.* .*[bm]gm22.* .*[bm]gm24.* .*[bm]gm27.* .*efr32[fz]g28.* .*efr32bg1b.* .*efr32mg14p.* .*mgm12.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Beginer Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_ethernet_gateway" label="Bluetooth - Ethernet Gateway"
description="This project aims to implement a simple Bluetooth-Ethernet Thin Gateway, the sensor measures and collects data from the device's environment and the gateway request the results via BLE.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_ethernet_gateway/SimplicityStudio/bluetooth_ethernet_gateway.slcp"/>
<properties key="readmeFiles" value="bluetooth_ethernet_gateway/README.md"/>
<properties key="boardCompatibility" value="brd2703a brd4108a brd4314a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*bgm22.* .*bg22.* .*efr32mg24.* .*efr32mg22.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_continuous_glucose_monitoring" label="Bluetooth - Continuous Glucose Monitoring"
description="This project aims to implement an example of Continuous Glucose Monitoring using the Thunderboard EFR32BG22.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_continuous_glucose_monitoring/SimplicityStudio/bluetooth_continuous_glucose_monitoring.slcp"/>
<properties key="readmeFiles" value="bluetooth_continuous_glucose_monitoring/README.md"/>
<properties key="boardCompatibility" value="brd4166a, brd2601a brd2601b brd2703a brd2704a brd4100a brd4101a brd4101b brd4103a brd4104a brd4108a brd4109a brd4110a brd4111a brd4113a brd4150a brd4150b brd4150c brd4151a brd4152a brd4153a brd4154a brd4155a brd4158a brd4159a brd4161a brd4162a brd4163a brd4164a brd4165b brd4166a brd4167a brd4168a brd4169a brd4169b brd4170a brd4172a brd4172b brd4173a brd4174a brd4174b brd4175a brd4176a brd4179b brd4180a brd4180b brd4181a brd4181b brd4181c brd4182a brd4183a brd4183b brd4183c brd4184a brd4184b brd4185a brd4186a brd4186b brd4186c brd4187a brd4187b brd4187c brd4188a brd4188b brd4190a brd4191a brd4194a brd4195a brd4196a brd4198a brd4300a brd4300b brd4301a brd4302a brd4303a brd4304a brd4305a brd4305c brd4305d brd4305e brd4306a brd4306b brd4306c brd4306d brd4308a brd4308b brd4308c brd4308d brd4309a brd4309b brd4310a brd4311a brd4311b brd4312a brd4314a brd4316a brd4317a brd4318a brd4319a brd4330a brd4331a brd4335a brd4400a brd4400b brd4401a brd4401b com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32[bm]g12p.* .*efr32[bm]g13p.* .*efr32[bm]g1p.* .*efr32[bm]g21.* .*efr32[bm]g22.* .*efr32[bm]g24.* .*efr32[bm]g27.* .*[bm]gm1.* .*[bm]gm13.* .*[bm]gm21.* .*[bm]gm22.* .*[bm]gm24.* .*[bm]gm27.* .*efr32[fz]g28.* .*efr32bg1b.* .*efr32mg14p.* .*mgm12.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_bthome_v2_light" label="Bluetooth - BTHome v2 - Light"
description="This project aims to implement a BTHome v2 compatible light. The application provides a CLI to configure switches to control the onboard LED0, it supports the press event only.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_bthome_v2_light/SimplicityStudio/bluetooth_bthome_v2_light.slcp"/>
<properties key="readmeFiles" value="bluetooth_bthome_v2_light/README.md"/>
<properties key="boardCompatibility" value="brd2703a brd4108a brd4314a brd4182a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*bgm22.* .*bg22.* .*efr32mg24.* .*efr32mg22.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_data_logger_sd_card" label="Bluetooth - Data Logger SD Card"
description="This project shows a demonstration of Bluetooth Data Logger SD Card application using Silabs Thunderboard Sense 2, SparkFun Micro OLED Breakout (Qwiic) board, MICROSD CLICK board and Silabs Click Shield.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_data_logger_sd_card/SimplicityStudio/bluetooth_data_logger_sd_card.slcp"/>
<properties key="readmeFiles" value="bluetooth_data_logger_sd_card/README.md"/>
<properties key="boardCompatibility" value="brd4166a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32mg12p.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_thermostat" label="Bluetooth - Thermostat (SHTC3)"
description="This example is intended to demonstrate the capability to scan a Thermostat and send a notification to a client device using the BLE stack on Silicon Laboratories development kits.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_thermostat/SimplicityStudio/bluetooth_thermostat.slcp"/>
<properties key="readmeFiles" value="bluetooth_thermostat/README.md"/>
<properties key="boardCompatibility" value="brd2703a brd4314a brd4108a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32mg24.* .*bgm22.* .*efr32bg22.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_secure_spp_over_ble" label="Bluetooth - Secure SPP over BLE"
description="This project aims to implement a secure Bluetooth connection between two EFR32 devices and how to implement secure serial communication between them.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="solutionReferenceId" value="bluetooth_secure_spp_over_ble.SimplicityStudio.bluetooth_secure_spp_over_ble.slcp"/>
<properties key="projectFilePaths" value="bluetooth_secure_spp_over_ble/SimplicityStudio/bluetooth_secure_spp_over_ble.slcp"/>
<properties key="readmeFiles" value="bluetooth_secure_spp_over_ble/README.md"/>
<properties key="boardCompatibility" value="brd2601a brd2601b brd2703a brd4100a brd4101a brd4101b brd4103a brd4104a brd4108a brd4109a brd4110a brd4111a brd4113a brd4150a brd4150b brd4150c brd4151a brd4152a brd4153a brd4154a brd4155a brd4158a brd4159a brd4161a brd4162a brd4163a brd4164a brd4165b brd4166a brd4167a brd4168a brd4169a brd4169b brd4170a brd4172a brd4172b brd4173a brd4174a brd4174b brd4175a brd4176a brd4179b brd4180a brd4180b brd4181a brd4181b brd4181c brd4182a brd4183a brd4183b brd4183c brd4184a brd4184b brd4185a brd4186a brd4186b brd4186c brd4187a brd4187b brd4187c brd4188a brd4188b brd4190a brd4194a brd4195a brd4196a brd4198a brd4300a brd4300b brd4301a brd4302a brd4303a brd4304a brd4305a brd4305c brd4305d brd4305e brd4306a brd4306b brd4306c brd4306d brd4308a brd4308b brd4308c brd4308d brd4309a brd4309b brd4310a brd4311a brd4311b brd4312a brd4314a brd4316a brd4317a brd4318a brd4319a brd4330a brd4331a brd4335a brd4400a brd4400b brd4401a brd4401b com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32[bm]g12p.* .*efr32[bm]g13p.* .*efr32[bm]g1p.* .*efr32[bm]g21.* .*efr32[bm]g22.* .*efr32[bm]g24.* .*efr32[bm]g27.* .*[bm]gm1.* .*[bm]gm13.* .*[bm]gm21.* .*[bm]gm22.* .*[bm]gm24.* .*[bm]gm27.* .*efr32[fz]g28.* .*efr32bg1b.* .*efr32mg14p.* .*mgm12.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_explorer_kit_i2c_bio_sensor" label="Bluetooth - Explorer Kit I2C Bio Sensor"
description="This example implements the Heart Rate service and Pulse Oximeter service. It enables a peer device to connect and receive heart rate and pulse Oximeter values via Bluetooth. The reported values are measured by a bio-sensor located on the Heart Rate 2 Click.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_explorer_kit_i2c_bio_sensor/SimplicityStudio/bluetooth_explorer_kit_i2c_bio_sensor.slcp"/>
<properties key="readmeFiles" value="bluetooth_explorer_kit_i2c_bio_sensor/README.md"/>
<properties key="boardCompatibility" value="brd4314a brd2703a brd4108a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*bgm220.* .*efr32mg24.* .*bg22.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>
<descriptors name="bluetooth_blood_glucose_meters" label="Bluetooth - Blood Glucose Meters"
description="This project aims to implement the Bluetooth Glucose Profile. This shows an example of Blood Glucose Meters using the Thunderboard EFR32BG22.">
<properties key="namespace" value="template.uc"/>
<properties key="keywords" value="universal\ configurator"/>
<properties key="projectFilePaths" value="bluetooth_blood_glucose_meters/SimplicityStudio/bluetooth_blood_glucose_meters.slcp"/>
<properties key="readmeFiles" value="bluetooth_blood_glucose_meters/README.md"/>
<properties key="boardCompatibility" value="brd4184a brd4166a brd4314a com.silabs.board.none"/>
<properties key="partCompatibility" value=".*efr32[bm]g22.* .*[bm]gm22.* .*efr32mg12.*"/>
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide simplicity-ide visual-studio-code"/>
<properties key="toolchainCompatibility" value="gcc iar segger"/>
<properties key="category" value="Bluetooth Examples"/>
<properties key="quality" value="EXPERIMENTAL"/>
<properties key="filters" value="Device\ Type|SoC Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
</descriptors>