forked from arduino/library-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrepositories.txt
More file actions
8755 lines (8753 loc) · 391 KB
/
Copy pathrepositories.txt
File metadata and controls
8755 lines (8753 loc) · 391 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
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
https://github.com/jobitjoseph/WitAITTS
https://github.com/hackffm/Single_WS2812_Bitbang_Write
https://github.com/MrYsLab/Telemetrix4RpiPico2w
https://github.com/sstaub/Seesaw
https://github.com/DavidSAlexander/STM32RomWebFlasher
https://github.com/seeimadeit/AES128ESP32
https://github.com/BojanJurca/Thread-safe-ping-Arduino-library-for-ESP32
https://github.com/TUDA-MUST/Resense-HEX/
https://github.com/leftCoast/LC_SPI
https://github.com/dudmoryo-cyber/TTP229_keypad
https://github.com/jeanloickdt/InstantIoT
https://github.com/BojanJurca/Lightweight-Fully-Connected-Neural-Network
https://github.com/Alby312/AdvancedPID
https://github.com/Viderspace/Smooth-Axis-Arduino.git
https://github.com/strix190788/DCMotor_L9110
https://github.com/wedsamuel1230/Pico_OTA/
https://github.com/leftCoast/LCP_sTerm
https://github.com/tonimatutinovic/myDHT
https://github.com/leftCoast/LCP_sett
https://github.com/leftCoast/LCP_rpnCalc
https://github.com/leftCoast/LCP_iconEdit
https://github.com/leftCoast/LCP_grenade
https://github.com/leftCoast/LCP_breakout
https://github.com/Alby312/OpenLogManager
https://github.com/leftCoast/LC_piezoTunes
https://github.com/leftCoast/LC_RPNCalculator
https://github.com/leftCoast/LC_Adafruit_VS1053
https://github.com/leftCoast/LC_GUITools
https://github.com/leftCoast/LC_Adafruit_684
https://github.com/leftCoast/LC_Adafruit_1431
https://github.com/leftCoast/LC_Adafruit_1947
https://github.com/leftCoast/LC_DFRobot_0995
https://github.com/leftCoast/LC_Adafruit_2050
https://github.com/leftCoast/LC_bmpTools
https://github.com/leftCoast/LC_keyboard
https://github.com/leftCoast/LC_blockFile
https://github.com/leftCoast/LC_SDTools
https://github.com/leftCoast/LC_docTools
https://github.com/leftCoast/LC_lilOS
https://github.com/leftCoast/LC_modalAlerts
https://github.com/leftCoast/LC_navTools
https://github.com/leftCoast/LC_Adafruit_GPS
https://github.com/leftCoast/LC_numStream
https://github.com/leftCoast/LC_J1939
https://github.com/ZZ-Cat/CRSFforArduino
https://github.com/sava-74/SavaTrig.git
https://github.com/sava-74/SavaButton.git
https://github.com/sava-74/SavaTime.git
https://github.com/Herobrine-pixel/BluetoothTonePlayer
https://github.com/Herobrine-pixel/GestureAirDraw
https://github.com/sava-74/SavaLED_ESP32.git
https://github.com/tdk-invn-oss/motion.arduino.TAD2144
https://github.com/bhadreshmewada/UniversalDebugLib
https://github.com/Herobrine-pixel/GestureAirDrawPro
https://github.com/liviobellini/AmiraEncoder
https://github.com/JadeRB-RND/Spiderbot
https://github.com/mabrobotics/Candleduino
https://github.com/liviobellini/KaitMenu
https://github.com/Alash-electronics/AlashUltrasonic
https://github.com/Alash-electronics/AlashIRControl
https://github.com/m5stack/M5Unit-FINGER
https://github.com/m5stack/M5Unit-RF433
https://github.com/MTD2A/MTD2A
https://github.com/me-RK/MAX7219_CH32
https://github.com/jaderobotics-AN/JadeRobotics_Spiderbot
https://github.com/szilvasyz/DCF77FreeRTOS.git
https://github.com/vicharak-in/shrike_arduino.git
https://github.com/ienai-SPACE/ADC128S_Arduino
https://github.com/oigonzalezp2024/ESP8266NAPTExtender
https://github.com/oigonzalezp2024/ESP8266AIGemini
https://github.com/BojanJurca/Lightweight-Standard-Template-Library-STL-for-Arduino
https://github.com/BojanJurca/cin-cout-for-Arduino
https://github.com/atestb/MCP4151-Digital-Potentiometer
https://github.com/nicolito128/DHT_N128
https://github.com/steamicc/MCP23009E
https://github.com/pbudel/QuarkX
https://github.com/jobitjoseph/SoftWire_CH32
https://github.com/franfreezy/e220_400t22d-lora-library
https://github.com/rochat2/v202_protocol
https://github.com/PTSolns/PTSolns_AHTx
https://github.com/PTSolns/PTSolns_VEML7700
https://github.com/fmeng/EspMapping.git
https://github.com/juanjomartinf/JMBase
https://github.com/sachinthagayajith/AT21CS01-Arduino-Library
https://github.com/skipperwraith/LTC2625
https://github.com/ArduinoLibHub/SimpleMFP
https://github.com/davidsecacontrol/FineTune-BMX160
https://github.com/MAKE-arduino/EasyENC
https://github.com/Hamas888/ChronoLog
https://github.com/automatician/EEProm_Safe_Wear_Level
https://github.com/DIYables/DIYables-ESP32-WebApps-Library
https://github.com/nfrproducts/probot-lib
https://github.com/m5stack/M5Unit-Fingerprint2
https://github.com/Alash-electronics/AlashMotorControlLite
https://github.com/windnerd-labs/Windnerd-Core
https://github.com/TechTronicsEngineering/AutoPlex7
https://github.com/nickthelegend/AlgoSense
https://github.com/Herobrine-pixel/MultiGestureLib
https://github.com/dajakov/daedaluslink-arduino_esp32-lib
https://github.com/tdk-invn-oss/motion.arduino.ICM45689
https://github.com/tdk-invn-oss/motion.arduino.ICM45608
https://github.com/zzvllvzz/SC03_C2H5OH
https://github.com/C4rdoso/FilterDesigner
https://github.com/MrDev-5000/PhotonCore
https://github.com/DIYables/DIYables-ESP32-WebServer
https://github.com/Flamethr0wer/PS4Arduino
https://github.com/pleasedontcode/POTA
https://github.com/lucashudson-eng/PZEMPlus
https://github.com/MrDev-5000/TimerKernel
https://github.com/PWhite-Eng/SimpleNetManager
https://github.com/TEXHOUM/TEXHOUM_SERVO
https://github.com/TEXHOUM/TEXHOUM_MOTOR
https://github.com/TEXHOUM/TEXHOUM_US
https://github.com/PubInv/SFM3X00
https://github.com/m5stack/M5Module-4EncoderMotor
https://github.com/ababdelo/ESPDiscordClient
https://github.com/dougp2/Multi_Timer_V2
https://github.com/milad-nikpendar/IP5108
https://github.com/puzzle-star/EspButtons
https://github.com/mkgeiger/RadiaCode
https://github.com/gustavofisica/PulseHeartLab
https://github.com/Harmony-Maker-Club/AIP1640_LED_Matrix
https://github.com/Hyperion-Robotics/wCK_Series
https://github.com/DIYables/DIYables-WebApps-Library
https://github.com/m5stack/ATOM-PRINTER
https://github.com/Droidbane/ESPWiFiManagerByDroidbane
https://github.com/apauaie/arduino_tinkeriot
https://github.com/m5stack/M5Unit-MQ
https://github.com/milad-nikpendar/initAuthorization
https://github.com/KB-Sensor-Mart/iSYS4001
https://github.com/SolderedElectronics/Soldered-Microphone-SPK0641HT-Library
https://github.com/SolderedElectronics/Soldered-DS3234-RTC-Arduino-Library
https://github.com/YoungEngineerMixertiX/MegaTPA
https://github.com/jobitjoseph/CH32X035_USBSerial
https://github.com/AndyNewlands/DualEncoderMenuSystem
https://github.com/bitcode-tech/bc7215ac
https://github.com/m5stack/M5Module-PPS
https://github.com/deepanshu-deshwal/SL002_DHT11
https://github.com/deepanshu-deshwal/SL001_Deepanshu
https://github.com/cocoisarobo/skytraq-navic
https://github.com/LordofRobots/LoR_v3
https://github.com/tailspb/Tec02XX
https://github.com/derdoktor667/DShotRMT
https://github.com/derdoktor667/FlyskyIBUS
https://github.com/kenchow96/faster-trig-2040
https://github.com/milad-nikpendar/initBuzzer
https://github.com/milad-nikpendar/initGT911
https://github.com/gavinlyonsrepo/ILI9341_LTSM
https://github.com/m5stack/M5Unit-Miniscale
https://github.com/orji123/Irisoled
https://github.com/PhoenixSmaug/AFMotor-Shield-R4-Compatible
https://github.com/DigitalCodesign/MentorBit-VEML
https://github.com/DigitalCodesign/MentorBit-SensorHall
https://github.com/gavinlyonsrepo/SSD1331_LTSM
https://github.com/gavinlyonsrepo/GC9A01_LTSM
https://github.com/Andreas1313/SequenceTiming
https://github.com/esicoe/BME280_LITE
https://github.com/gavinlyonsrepo/ST7789_LTSM
https://github.com/PTSolns/BMx280
https://github.com/Pallob-Gain/packet_device
https://github.com/gavinlyonsrepo/display16_LTSM
https://github.com/littlemanbuilds/RCLink
https://github.com/littlemanbuilds/SnapshotBus
https://github.com/littlemanbuilds/ESP32_MCPWM
https://github.com/littlemanbuilds/Universal_Button
https://github.com/gavinlyonsrepo/ST7735_LTSM
https://github.com/anaveo/ParkingSensor
https://github.com/m5stack/M5SwitchC6-ESP-NOW
https://github.com/DIYables/arduino-uno-r4-web-server-library
https://github.com/yosob/SL_simpletask
https://github.com/DigitalCodesign/MentorBit-RS232
https://github.com/DigitalCodesign/MentorBit-CANBus
https://github.com/RileyCornelius/FormatLog
https://github.com/jaikulk14/MQGasKit
https://github.com/DigitalCodesign/MentorBit-LIS3DH
https://github.com/junan8733/RamjiButton
https://github.com/RileyCornelius/FmtLib-Arduino
https://github.com/ntirushwajeanmarc/CircuitNotion
https://github.com/SibEnergy/RTC_DS1302
https://github.com/SibEnergy/TelegramMess
https://github.com/German-source/MicroOS
https://github.com/twin-science-robotics/hw_twin_aiot_module_arduino_library
https://github.com/abdullahtemel97/testfirmware
https://github.com/flashstacks06/SimpleMenu.git
https://github.com/anaveo/KL1508CW
https://github.com/gavinlyonsrepo/ERM19264_UC1609_TEXT
https://github.com/salernosimone/arduino-espx
https://github.com/Stutchbury/SerialMessageEvents
https://github.com/Nezaemmy/NezaIR
https://github.com/chrissank/JKBMSInterface
https://github.com/Nezaemmy/Neza74HC165
https://github.com/gavinlyonsrepo/BMP280_LTSM
https://github.com/Nezaemmy/Neza74HC595
https://github.com/Nezaemmy/NezaButton
https://github.com/sstaub/ST7565DOG
https://github.com/Jodeenio/74HC595Plus
https://github.com/positronic57/MCP9808SensorLib
https://github.com/me-RK/WiFiCreds
https://github.com/leftCoast/LC_extSerial
https://github.com/muchaste/Ardoxy/
https://github.com/aneesharnavch/microdsp
https://github.com/senex-code/CarBase
https://github.com/dayatkun01/ClearDS1302/
https://github.com/OlivierPcheux/MTobjects
https://github.com/Valdemir-DSW/val_flash_spi
https://github.com/Valdemir-DSW/valmux16
https://github.com/alecxcode/LX16A-bus
https://github.com/akarimiz1/E62Module
https://github.com/NartemAI/NaiPot
https://github.com/exosite/arduino_exosite_http
https://github.com/tingerlingerr/DigiPotX9C
https://github.com/MouseZver/AsyncTempSensor
https://github.com/DigitalCodesign/MentorBit-SGP30
https://github.com/Matthew-a-smith/OpenEdgeStack
https://github.com/jmwanderer/RYLR_LoRaAT
https://github.com/LFranklinApps/Custom_Robot_Control
https://github.com/m5stack/M5Chain
https://github.com/X-croot/XCR-LDR
https://github.com/scalpelspace/scalpelspace_momentum
https://github.com/X-croot/TB6612FNG_XCR
https://github.com/Spb2005/TFAReceiver
https://github.com/X-croot/BuzzerXCR
https://github.com/X-croot/MQ135-XCR
https://github.com/X-croot/LM35_XCR
https://github.com/AbdulKus/72x40oled_lib
https://github.com/X-croot/UltraSonicXCR
https://github.com/X-croot/RelayXCR
https://github.com/Pius171/LTC2959-library
https://github.com/boby15000/SensorCurrent
https://github.com/fadhil-1911/SmartTM1637
https://github.com/brianvarren/DACless
https://github.com/ArthZ01/JWT-Lib
https://github.com/ArthZ01/AES-Lib
https://github.com/esharp17/INA219_Plus
https://github.com/brianvarren/EEncoder
https://github.com/esharp17/Mecanum_Base
https://github.com/phuongnamzz/HLK-LD2410S
https://github.com/k-off/A4988
https://github.com/PowerBroker2/Optimization
https://github.com/GalaidaMaxim/Delayer
https://github.com/danel32/Arduino-Library-for-MAX7300
https://github.com/TheBlackSwitch/PS2Keyboard
https://github.com/aiplayuser/esp8266easylib.git
https://github.com/m5stack/M5Unit-TUBE/
https://github.com/aiplayuser/esp32easylib.git
https://github.com/boby15000/Tempo.git
https://github.com/Circuit-Digest/GeoLinkerLite
https://github.com/RacoonX65/LightweightIoT-Arduino-Lib
https://github.com/RacoonX65/CalibrationLib.git
https://github.com/RacoonX65/WiFiEnterprise
https://github.com/RCmags/CN0391
https://github.com/Init-io/InitMQTT.git
https://github.com/Init-io/InitJson.git
https://github.com/phuongnamzz/HLK-LD6002
https://github.com/milad-nikpendar/initMemory
https://github.com/jobitjoseph/SimpleOLED
https://github.com/cvrelectronica/EasyRobot
https://github.com/fmeng/FastRotaryEncoder
https://github.com/CurtoLab/miniMachine.git
https://github.com/MAKE-arduino/M_RGB.git
https://github.com/saveme1507/EasyMQTT
https://github.com/ronibandini/ESP32N8NButton
https://github.com/aikopras/AP_DCC_Decoder_Core
https://github.com/fadhil-1911/MyDHT22
https://github.com/sbarabe/SBK_HT16K33
https://github.com/sbarabe/SBK_BarDrive
https://github.com/sbarabe/SBK_MAX72xx
https://github.com/RomanZ1243/LEDIndication
https://github.com/Herobrine-pixel/LaserToMap360
https://github.com/Herobrine-pixel/LEDPatternLib
https://github.com/arduino-libraries/Arduino_CapacitiveTouch
https://github.com/magnus-cpu/NexNTC
https://github.com/diy-electron1cs/DE_tacho
https://github.com/NightHawk-Technology/gnome-avr
https://github.com/Herobrine-pixel/TouchSensorLib
https://github.com/Herobrine-pixel/AudioCompass
https://github.com/anonymousaga/TzDbLookup
https://github.com/aircey/lig-i2c-gateway
https://github.com/Circuit-Digest/GeoLinker
https://github.com/arnabdebnath208/TimeoutScheduler
https://github.com/aikopras/Servo-TCA
https://github.com/robotieee/compkit
https://github.com/sebastianregelmann/CypressCY8CMBR3116
https://github.com/m5stack/M5Unit-CRYPTO
https://github.com/m5stack/M5Unit-INFRARED
https://github.com/devilhyt/lump-device-builder-library
https://github.com/santerilindfors/BL0942
https://github.com/Ewan-Dev/mpu6050
https://github.com/owochel/MistMaker
https://github.com/Ynvisible-Electronics/YNV-Driver-v5-Arduino-Library
https://github.com/neondatabase-labs/NeonPostgresOverHTTP
https://github.com/thomasfredericks/MicroSlip
https://github.com/SkaFUU/AsyncWebOTA
https://github.com/DIYables/DIYables_TFT_Round
https://github.com/DIYables/DIYables_TFT_Shield
https://github.com/DIYables/DIYables_TFT_Touch_Shield
https://github.com/BareMetal6502/BuzzKill-Arduino-Library
https://github.com/Kostovite/TWAI_ISO-TP
https://github.com/RobotZwrrl/RobotButterfly_Library
https://github.com/crystalfontz/Arduino_CFA039A0-N-V_Library
https://github.com/IvoryRubble/ArduinoSegaGamepadLibrary
https://github.com/IvoryRubble/ArduinoNesGamepadLibrary
https://github.com/leofig-rj/Arduino-LF_LoRa
https://github.com/acornelissen/DTS6012M_UART
https://github.com/m5stack/M5Unit-EXTIO
https://github.com/m5stack/M5Unit-DISTANCE
https://github.com/beastbroak30/Mecmotor
https://github.com/jmksn/ArduEasy
https://github.com/beeneotr/ooreneo
https://github.com/austin207/ArduinoCalculus.git
https://github.com/salim-mrw/USB-Rubber
https://github.com/drmpf/RTC_NTP_replacement
https://github.com/salernosimone/espkit-arduino
https://github.com/salernosimone/tensorflow-runtime-universal-arduino
https://github.com/hanzeelvilla/MyLedIO
https://github.com/Eason-SYC/WS2812_SYC_Air001
https://github.com/beniseman/HX71708
https://github.com/beniseman/lineScale
https://github.com/dezibot/dezibot
https://github.com/hanzeelvilla/MyButton
https://github.com/mcenkcavusoglu/MLX90392_library
https://github.com/Bendeguz-Cs/DC_driver
https://github.com/ChandanETE/CK_MAX
https://github.com/renesas/nfc-ptx105r-spi-arduino
https://github.com/renesas/nfc-ptx105r-i2c-arduino
https://github.com/renesas/nfc-ptx105r-uart-arduino
https://github.com/vdwulp/iButtonTag
https://github.com/PeterBakarac/BayesianOptimization
https://github.com/MuhammadMakhfud/PZEM003_Fud
https://github.com/manzarehassin/tinyRTCds1307
https://github.com/manzarehassin/softRTC
https://github.com/gunakkoc/MultiStepperLite
https://github.com/Dzmitry-visual-studio-2022/Winduino
https://github.com/dvelaren/Halisense_SoilSensor
https://github.com/Kenneract/SPL07-003-Arduino-Library
https://github.com/JakubSdf/LedDisplayFonts
https://github.com/Amanecer-Digital-SL/am_ambot_library
https://github.com/Infineon/arduino-xensiv-angle-sensor-tlx5012
https://github.com/csobirka/SevenSegment
https://github.com/Zeppelin500/MBusCom
https://github.com/MYCAMEL222/AbleTP
https://github.com/snowhalationmkii/TTP229_BS81X_Serial
https://github.com/DigitalCodesign/MentorBit-VL53
https://github.com/DigitalCodesign/MentorBit-BH1750
https://github.com/Khuuxuanngoc/Makerlabvn_I2C_Line_Follower_Sensor
https://github.com/robinz-labs/digishow-rioc
https://github.com/Neurotech-Hub/KepecsWheel
https://github.com/Mourty/PLCTimers
https://github.com/Mourty/ExtendedTime
https://github.com/ayushsharma82/RPAsyncTCP
https://github.com/CIRCUITSTATE/CSE_CST328
https://github.com/hmueller01/pubsubclient3
https://github.com/mvader2/AD5252
https://github.com/Stutchbury/TouchScreenAdapter
https://github.com/m5stack/M5Unit-AudioPlayer
https://github.com/Bendeguz-Cs/Rotary_encoder
https://github.com/srinjaycode/VoltLora
https://github.com/VanSilver/ShiftRegisterPWM595
https://github.com/AryanBhirud/BitFlash_Client
https://github.com/a-saab/PrayerTimes
https://github.com/nextgentech-512/Single-Wire-Data-Bus
https://github.com/roncoa/StringEEPROM
https://github.com/snowhalationmkii/BS811X_I2C
https://github.com/sstaub/IDToolsPico
https://github.com/QuantumLeaps/qp-arduino
https://github.com/sstaub/LCD-HD44780
https://github.com/sstaub/LCD-I2C-HD44780
https://github.com/Neurotech-Hub/Hublink-Node
https://github.com/adityasharma-tech/grafik-serial
https://github.com/Neurotech-Hub/Hublink-BEAM
https://github.com/JagritThukral/ubidots-mqtt-esp32/
https://github.com/wallysalami/BarcodeGFX
https://github.com/wallysalami/QRCodeGFX
https://github.com/wallysalami/SQLiteManager
https://github.com/roncoa/SimRacingController
https://github.com/KiselevIvan/kidLibrary
https://github.com/dmachinewhisperer/micro-prompts-ino
https://github.com/rjsachse/ESP32-RTSPServer.git
https://github.com/schreibfaul1/ESP32-audioI2S
https://github.com/hasenradball/MCP23008-I2C
https://github.com/roncoa/KeySequence
https://github.com/juanmercadin/ReceptorRF
https://github.com/valerii-fr/menux
https://github.com/Moarbue/incremental-rotary-encoder
https://github.com/Moarbue/arduino-button
https://github.com/Moarbue/FIR-Filter
https://github.com/Morgritech/MT-arduino-rotary-encoder
https://github.com/CIRCUITSTATE/CSE_ZH06
https://github.com/ropg/spi_lcd_read
https://github.com/trs-fvs/fvs-esp32-bib
https://github.com/botnroll/BnrOneAPlus
https://github.com/toaha63/BanglaDuino
https://github.com/Moarbue/MAX31855-library
https://github.com/ropg/LVGL_CYD
https://github.com/Enzo-Coutinho/APDS-9151
https://github.com/DigitalCodesign/MentorBit-1Rele
https://github.com/DigitalCodesign/MentorBit-2Rele
https://github.com/DigitalCodesign/MentorBit-3LED
https://github.com/DigitalCodesign/MentorBit-BMP280
https://github.com/DigitalCodesign/MentorBit-DetectorIR
https://github.com/DigitalCodesign/MentorBit-DetectorLluvia
https://github.com/DigitalCodesign/MentorBit-DHT11
https://github.com/DigitalCodesign/MentorBit-DHT22
https://github.com/DigitalCodesign/MentorBit-Encoder
https://github.com/DigitalCodesign/MentorBit-Expander
https://github.com/DigitalCodesign/MentorBit-LDR
https://github.com/DigitalCodesign/MentorBit-MatrizPulsadores
https://github.com/DigitalCodesign/MentorBit-MQ
https://github.com/DigitalCodesign/MentorBit-PIR
https://github.com/DigitalCodesign/MentorBit-PoteLineal
https://github.com/DigitalCodesign/MentorBit-Potenciometro
https://github.com/DigitalCodesign/MentorBit-PoteRueda
https://github.com/DigitalCodesign/MentorBit-Pulsadores
https://github.com/DigitalCodesign/MentorBit-RGB
https://github.com/DigitalCodesign/MentorBit-Ultrasonidos
https://github.com/DigitalCodesign/MentorBit-Zumbador
https://github.com/ddchung/Async-HC-SR04-Lib
https://github.com/DigitalCodesign/Puertas-Logicas-Plugin
https://github.com/median-dispersion/Non-Blocking-Melody
https://github.com/median-dispersion/XPT2046-Driver
https://github.com/jobitjoseph/ESPWebFileManager
https://github.com/playfultechnology/PN5180
https://github.com/baaaaan1/BuzzerManager
https://github.com/baaaaan1/EEPROMHandler
https://github.com/fotherja/BQ76952
https://github.com/RASPIAUDIO/Muse_library
https://github.com/ZanPekosak/AnalogFilter
https://github.com/misa3L994/digitalIO
https://github.com/dac1e/RcSwitchReceiver
https://github.com/ftservo/FTServo_Arduino
https://gitlab.com/pony_jd/mis_librerias/dualwheelcontrol_jd
https://github.com/leftCoast/LC_cardIndex
https://github.com/Init-io/PinScribe
https://github.com/Init-io/OTAEsp
https://github.com/Init-io/DoEEP
https://github.com/traquito/WsprEncoded
https://github.com/Init-io/FireEsp
https://github.com/ncmreynolds/loremipsum
https://github.com/blasilli/GBALib_DCMotor
https://github.com/blasilli/GBALib_ShiftRegister
https://github.com/blasilli/GBALib_UltrasonicSensor
https://github.com/henriberisha/EasyEspNow
https://github.com/fabricioitajuba/Internal_eeprom
https://github.com/Hyperion-Robotics/YDLiDaR_GS2
https://github.com/VanSilver/LCD595
https://github.com/biomurph/GrayCode
https://github.com/arielzw/DPS-Power-Supply
https://github.com/cheerlights/cheerlights-arduino-library
https://github.com/Hyperion-Robotics/QuickESPNow
https://github.com/jjlondonoc/AFE4950-Arduino-Library
https://github.com/jjlondonoc/MCP4132-Arduino-Library
https://github.com/MiguelLoureiro98/LM35IC
https://github.com/MiguelLoureiro98/TimeSeries
https://github.com/m5stack/M5Unit-TOF
https://github.com/m5stack/M5Unit-COLOR
https://github.com/m5stack/M5Unit-WEIGHT
https://github.com/blasilli/GBALib_Wave
https://github.com/modspi/MODSPI_Modules
https://github.com/voelkerb/bistableRelay
https://github.com/voelkerb/ADE9000
https://github.com/voelkerb/ESP.multiLogger
https://github.com/bitcode-tech/uart_7seg_display
https://github.com/EnergizeLab/ServoSDK-Arduino.git
https://github.com/felixerdy/QRCodeGenerator
https://github.com/julio22011/EasyOledUI
https://github.com/bitcode-tech/uart_keyboard
https://github.com/ncmreynolds/milesTag
https://github.com/smelpro/Smelpro_Macaron
https://github.com/rushairer/AbenoGameBoyShield
https://github.com/vindar/tgx
https://github.com/arslan437/EspFileManager.git
https://github.com/linus81/PCF8574_LH
https://github.com/Oshima-Shosen-Robotics-Research-Club/liboshima
https://github.com/DIYables/DIYables-LED-Matrix
https://github.com/dashio-connect/arduin-dashio-utils
https://github.com/dashio-connect/arduino-dashioNano33BLE
https://github.com/dashio-connect/arduino-dashioMKR1500
https://github.com/dashio-connect/arduino-dashioESP
https://github.com/dashio-connect/arduino-dashioBluno
https://github.com/dashio-connect/arduino-dashioBluefruit
https://github.com/dashio-connect/arduino-dashioSAMD_NINA
https://github.com/rszczepanski93/EduBox_ArduinoLibrary
https://github.com/MIT-Senseable-City-Lab/octopus-firmware
https://github.com/Valdemir-DSW/DSW-painel-arduino-lib
https://github.com/elecrazy/servoctr.git
https://github.com/Maaajaaa/GaussianFilter1D
https://github.com/Maaajaaa/SeeedNrf52480Battery
https://github.com/tochinet/Posit
https://github.com/Infineon/TLE9879-BLDC-Shield.git
https://github.com/Morgritech/MT-arduino-stepper-driver
https://github.com/NaveItay/XRA1405_Button
https://github.com/Softpath-Electronics/SoftPathElectronics
https://github.com/Company-of-Things/deploii-library
https://github.com/NaveItay/XRA1405
https://github.com/NaveItay/PCA6408A
https://github.com/NaveItay/NonBlockingDelay
https://github.com/sub1inear/ArduboyI2C
https://github.com/shorepine/amy
https://github.com/microbotsio/MotorCell
https://github.com/gilesp1729/FontCollection
https://github.com/gilesp1729/GestureDetector
https://github.com/gilesp1729/GU_Elements
https://github.com/MAKIST-EDU/MakistCar
https://github.com/PowerBroker2/Filters
https://github.com/semilimes/semilimes_mcu_sdk
https://github.com/deeja/BTHomeV2-Arduino
https://github.com/zwieblum/ch32_deep_sleep
https://github.com/microbotsio/CodeCell
https://github.com/EduKits/ColourKit
https://github.com/EduKits/ManagedButtons
https://github.com/EduKits/UltraPing
https://github.com/makkorjamal/PLSduino
https://github.com/csl-3/Pasos
https://github.com/devtagse/DEVTAGLibIA
https://github.com/Muhammed-jbareen/Alarm
https://github.com/PowerBroker2/Units
https://github.com/PowerBroker2/NMEA_Parser
https://github.com/davidlmorris/debuggery
https://github.com/fmeng/UserManager
https://github.com/Infineon/arduino-xensiv-3d-magnetic-sensor-tlx493d
https://github.com/Morgritech/MT-arduino-momentary-button
https://github.com/johngavel/Terminal
https://github.com/IoliteCoding/IoliteCoding_SerialCommands
https://github.com/jamesy0ung/MPXA6115A
https://github.com/peomcherry/DJIMotorAlgoESP
https://github.com/Morgritech/MT-arduino-pin-debouncer
https://github.com/jackjansen/esp32_idf5_https_server
https://github.com/jackjansen/esp32_idf5_https_server_compat
https://github.com/jamesy0ung/MPXHZ6116A
https://github.com/ClemensAtElektor/Elektor_AudioDSP
https://github.com/PowerBroker2/DataLogger
https://github.com/stemosofc/AraraLib
https://github.com/vvs551/ESP_NOW_Network
https://github.com/Hedrahexon/X9C103S
https://github.com/JFlores88/SteerBot_TB6612
https://github.com/AbdulBasitKhatri/OLED_Display_SSD1306
https://github.com/makerlabvn/MKL_RTClib
https://github.com/vvs551/IRRemoteESP32
https://github.com/aadilmallick/ez-arduino
https://github.com/makerlabvn/MKL_DS18B20
https://github.com/KMESmart/KMESerial
https://github.com/pu2clr/QN8066
https://github.com/Tympan/Tympan_Library
https://github.com/microbotsio/CoilCell
https://github.com/RBEGamer/HLK-LD2450
https://github.com/Fiooodooor/HLK-LD245X
https://github.com/giocip/ARDUINO_num7
https://github.com/makerlabvn/MKL_DHT
https://github.com/vasya-zh/TMD3725
https://github.com/drrnb/SingleSevenSegment
https://github.com/microbotsio/DriveCell
https://github.com/spaziochirale/ArduTFLite
https://github.com/MoreThanRobotsFR/MTR_STUSB4500
https://github.com/MEmbeddedTLB/Devices
https://github.com/MoreThanRobotsFR/MTR_ADS7830
https://github.com/mamunul/BanglaText
https://github.com/wilson-malone/RS485_Arduino_Wind_Direction_Speed_Sensors
https://github.com/sqmsmu/PMIC_BQ25896
https://github.com/DIYables/DIYables_Keypad
https://github.com/spaziochirale/Chirale_TensorFlowLite
https://github.com/tdk-invn-oss/motion.arduino.ICM42670S
https://github.com/eloquentarduino/arduino-WebTerminal
https://github.com/michaelnixonau/MaxLedControl
https://github.com/tdk-invn-oss/motion.arduino.ICM45686
https://github.com/tdk-invn-oss/motion.arduino.ICM45605
https://github.com/alexi-c/Primsteppermotor
https://github.com/daguerpedro/MQSensor
https://github.com/MJBeltran13/trioe
https://github.com/4ngel2769/Coloria
https://github.com/meebplayzs/GoogleCalendarClient
https://github.com/ys1374/AS5600_PsW
https://github.com/raghulrajg/OTAUpdateManager
https://github.com/makerlabvn/makerlabvnlib
https://github.com/makerlabvn/Makerlabvn_kit_CIA0_BOT
https://github.com/makerlabvn/mke-s01-ultrasonic-sensor
https://github.com/maarten-pennings/ENS210
https://github.com/ams-OSRAM/OSP_aospi
https://github.com/ams-OSRAM/OSP_aoresult
https://github.com/ams-OSRAM/OSP_aoosp
https://github.com/ams-OSRAM/OSP_aocmd
https://github.com/ams-OSRAM/OSP_aomw
https://github.com/ams-OSRAM/OSP_aoui32
https://github.com/ams-OSRAM/OSP_aoapps
https://github.com/ams-OSRAM/OSP_aotop
https://github.com/Herwig9820/Justina_interpreter
https://github.com/BrainCoTech/brain_arduino
https://github.com/cschorn01/PlugAndPlayForLoRa
https://github.com/Khuuxuanngoc/TongHopThuVienCon1
https://github.com/Tobsoft/HTL_onboard
https://github.com/thepudding/bofu
https://github.com/Khuuxuanngoc/TongHopThuVien.git
https://github.com/salernosimone/tinyml4all-arduino
https://github.com/CIRCUITSTATE/CSE_CircularBuffer
https://github.com/bmurzabaev/mcp3201
https://github.com/CIRCUITSTATE/CSE_MillisTimer
https://github.com/LordofRobots/LoR
https://github.com/jibrilsharafi/AdvancedLogger
https://github.com/ZeeDesigns7/AdvancedSerial
https://github.com/locple/LCDI2C_Multilingual
https://github.com/makerlabvn/BlynkGate
https://github.com/trongthan210/iMaker-PS2
https://github.com/makerlabvn/kxnTask
https://github.com/arduino279/AI/
https://github.com/anton-freddy/move_buffer
https://github.com/Chuque/arduino-CallbackButton
https://github.com/Subodh-roy2/Modular
https://github.com/agomezgar/rupertobotLibrary
https://github.com/ropg/LoRaWAN_ESP32
https://github.com/NightHawk-Technology/NH8CHIR-lib
https://github.com/hassanalitamam/Car_robot/
https://github.com/nayooooo/StreamDeviceAT
https://github.com/1ux/LED_RGB_Control
https://github.com/kanitawa/VersatileSwitch
https://github.com/1ux/DCF77Decode
https://github.com/tdk-invn-oss/ultrasonic.arduino.CHx01
https://github.com/stefangs/arduino-library-at24cxxx
https://github.com/huemonelab/HuemonelabKit
https://github.com/CIRCUITSTATE/CSE_GNSS
https://github.com/Zone-of-Engineering-Newcomers/MovingAverage
https://github.com/cygig/AlmostRandom
https://github.com/agomezgar/masaylolibrary
https://github.com/agomezgar/escornabotLibrary
https://github.com/VIDI-X/VIDI-X_BQ24295
https://github.com/pervu/FIFObuf
https://github.com/orkungedik/kmeans
https://github.com/JulyIghor/PinButtonEvents
https://github.com/Witty-Wizard/DriveMaster
https://github.com/HackerNowful/SD-Ducky
https://github.com/Karibura-Cyber/NHBot
https://github.com/locple/LiquidCrystal_I2C_UTF8
https://github.com/Witty-Wizard/SerialIO
https://github.com/fanfanlatulipe26/FS_MX1508
https://github.com/crozone-technology/crozone-veml6040
https://github.com/I-AM-ENGINEER/MT6701-arduino
https://github.com/Erqos/EQSP32
https://github.com/ropg/HotButton
https://github.com/FXDuke/Tools
https://github.com/pierremolinaro/acanfd-giga-r1
https://github.com/ojw5014/OpenJigWare_A
https://github.com/x-radio/EEBoom
https://github.com/ropg/ESP32_RTC_EEPROM
https://github.com/ropg/heltec_esp32_lora_v3
https://github.com/tdk-invn-oss/ultrasonic.arduino.ICUX0201
https://github.com/dennisfrett/Arduino-Direct-NEC-Transmitter
https://github.com/Destination-SPACE/DS_MCP4018_Library
https://github.com/Destination-SPACE/DS_PCA9536_Library
https://github.com/FinianLandes/SpotifyEsp32
https://github.com/hex705/Scissors
https://github.com/hex705/Glue
https://github.com/2taras/espwifiarduino_ide_lib
https://github.com/x0x0200/VARSTEP_ultrasonic
https://github.com/StefanHerald/Timing
https://github.com/tdk-invn-oss/pressure.arduino.ICP201XX
https://github.com/DigitalCodesign/MentorBit-Library
https://github.com/tabahi/StatefulGSMLib/
https://github.com/tabahi/ESP-Wifi-Config
https://github.com/karolis1115/FTPduino
https://github.com/RajasundaramM/ReadFilter
https://github.com/SylvainMontagny/LoRaE5
https://github.com/nruin7/Arduino-XBox-Controller-Handler
https://github.com/tdk-invn-oss/pressure.arduino.ICP101XX
https://github.com/ropg/OOKwiz
https://github.com/HackerNowful/BLEHID-SD
https://github.com/WilliamMS-git/ADXL372
https://github.com/CodingArray/CA_MotorShield_V1_Library
https://github.com/ProjectNeura/LEADS-Arduino
https://github.com/todbot/TouchyTouch
https://github.com/Malih002/Klinik-Encoder
https://github.com/handmade0octopus/ds2
https://github.com/tbekas/BLE-Gamepad-Client
https://bitbucket.org/amotzek/cooperative-multitasking
https://bitbucket.org/amotzek/mqtt-client
https://bitbucket.org/christandlg/as3935mi
https://bitbucket.org/christandlg/bmp180mi
https://bitbucket.org/christandlg/bmx280mi
https://github.com/PinoRinaudo/DoublyLinkedList
https://bitbucket.org/christandlg/iaq-coremi
https://bitbucket.org/christandlg/tsl2591mi
https://bitbucket.org/geekfactory/gfbutton
https://bitbucket.org/geekfactory/shell
https://bitbucket.org/harmonicbionics/ease_arduinocode
https://bitbucket.org/jezhill/Keyhole
https://bitbucket.org/jezhill/SignalAcquisition
https://bitbucket.org/pjhardy/arduinosinspace
https://bitbucket.org/teckel12/arduino-new-ping
https://bitbucket.org/xoseperez/pcf8583
https://git.antares.id/lorawan-loraid/arduino-loraid
https://github.com/anthonyshibitov/text1306
https://github.com/0015/LVGL_Joystick
https://github.com/0015/ChatGPT_Client_For_Arduino
https://github.com/0015/ESP32-OV5640-AF
https://github.com/0015/TP_Arduino_DigitalRain_Anim
https://github.com/0neblock/Arduino_SNMP
https://github.com/0x6flab/satima-arduinolibrary
https://github.com/0xCAFEDECAF/VanBus
https://github.com/107-systems/107-Arduino-24LCxx
https://github.com/107-systems/107-Arduino-APDS-9950
https://github.com/107-systems/107-Arduino-AS504x
https://github.com/107-systems/107-Arduino-BMP388
https://github.com/107-systems/107-Arduino-BoostUnits
https://github.com/107-systems/107-Arduino-CriticalSection
https://github.com/107-systems/107-Arduino-Cyphal
https://github.com/107-systems/107-Arduino-Cyphal-Support
https://github.com/107-systems/107-Arduino-Debug
https://github.com/107-systems/107-Arduino-littlefs
https://github.com/107-systems/107-Arduino-MCP2515
https://github.com/107-systems/107-Arduino-NMEA-Parser
https://github.com/107-systems/107-Arduino-Sensor
https://github.com/107-systems/107-Arduino-Servo-RP2040
https://github.com/107-systems/107-Arduino-TCS3472
https://github.com/107-systems/107-Arduino-TMF8801
https://github.com/107-systems/107-Arduino-TSL2550
https://github.com/107-systems/107-Arduino-UniqueId
https://github.com/1337encrypted/BTS7960_Motordriver
https://github.com/1452206376/CH9328-Keyboard
https://github.com/1IoT/cloud-connectivity-lib
https://github.com/1NCE-GmbH/blueprint_arduino
https://github.com/256dpi/arduino-mqtt
https://github.com/2bndy5/CirquePinnacle
https://github.com/2dom/PxMatrix
https://github.com/4-20ma/i2c_adc_ads7828
https://github.com/4-20ma/I2cDiscreteIoExpander
https://github.com/4-20ma/ModbusMaster
https://github.com/4dsystems/Diablo16-Serial-Arduino-Library
https://github.com/4dsystems/GFX4d
https://github.com/4dsystems/GFX4dESP32
https://github.com/4dsystems/GFX4dESP32P4
https://github.com/4dsystems/GFX4DIoD9
https://github.com/4dsystems/Goldelox-Serial-Arduino-Library
https://github.com/4dsystems/Picaso-Serial-Arduino-Library
https://github.com/4dsystems/Pixxi-Serial-Arduino-Library
https://github.com/4dsystems/SOMOIoD
https://github.com/4dsystems/ViSi-Genie-Arduino-Library
https://github.com/4dsystems/ViSi-Genie-Arduino-Library-DEV
https://github.com/5N44P/ht1621-7-seg
https://github.com/5pIO/BLESerial
https://github.com/608/CH55xSwitchControl
https://github.com/8059blank/CytronPikaBot
https://github.com/8bitbuddhist/PixelMaestro
https://github.com/934virginia/Norman
https://github.com/ad039/ZSSC3230_I2C_Driver
https://github.com/9glt/arduino-attiny85-fastpin-library
https://github.com/9glt/arduino-attiny85-mcp23017-library
https://github.com/A-Vision-Software/AVision_ESP8266
https://github.com/A223D/Adafruit_4_01_ColourEPaper
https://github.com/A223D/detaBaseArduinoESP32
https://github.com/a7md0/WakeOnLan
https://github.com/aaryaapg/SPC-Library
https://github.com/Aasim-A/AsyncTimer
https://github.com/abaskin/MAX72XX
https://github.com/abcdaaaaaaaaa/MQSpaceData.h
https://github.com/abcdaaaaaaaaa/RadioactiveDataScience
https://github.com/abcdaaaaaaaaa/MG811DataScience
https://github.com/abcdaaaaaaaaa/SP3S-AQ2DataScience
https://github.com/abderraouf-adjal/ArduinoSpritzCipher
https://github.com/abderraouf-adjal/Embedded-PID
https://github.com/AbdoullahBougataya/QCFA
https://github.com/Abdurraziq/ZMPT101B-arduino
https://github.com/abel6jose/Trial
https://github.com/Abhishektiwari7/Nokia_1.8_Inch_-Display_-SPFD54124B
https://github.com/abishur/ms5x
https://github.com/acksen/AcksenButton
https://github.com/acksen/AcksenIntEEPROM
https://github.com/acksen/AcksenPump
https://github.com/acksen/AcksenUtils
https://github.com/acrandal/RevEng_PAJ7620
https://github.com/acrobotic/Ai_Ardulib_SSD1306
https://github.com/Acrome-Smart-Motion-Devices/SMD-Arduino-Library
https://github.com/adafruit/Adafruit_10DOF
https://github.com/adafruit/Adafruit_9DOF
https://github.com/adafruit/Adafruit_AD569x
https://github.com/adafruit/Adafruit_ADG72x
https://github.com/adafruit/Adafruit_ADS1X15
https://github.com/adafruit/Adafruit_ADS7830
https://github.com/adafruit/Adafruit_ADT7410
https://github.com/adafruit/Adafruit_ADXL343
https://github.com/adafruit/Adafruit_ADXL345
https://github.com/adafruit/Adafruit_ADXL375
https://github.com/adafruit/Adafruit_AGS02MA
https://github.com/adafruit/Adafruit_AHRS
https://github.com/adafruit/Adafruit_AHT10
https://github.com/adafruit/Adafruit_AHTX0
https://github.com/adafruit/Adafruit_AM2315
https://github.com/adafruit/Adafruit_AM2320
https://github.com/adafruit/Adafruit_AMG88xx
https://github.com/adafruit/Adafruit_AMRadio
https://github.com/adafruit/Adafruit_APDS9960
https://github.com/adafruit/Adafruit_Arcada
https://github.com/adafruit/Adafruit_Arcada_GifDecoder
https://github.com/adafruit/Adafruit_AS5600
https://github.com/adafruit/Adafruit_AS726x
https://github.com/adafruit/Adafruit_AS7341
https://github.com/adafruit/Adafruit_AVRProg
https://github.com/adafruit/Adafruit_AW9523
https://github.com/adafruit/Adafruit_BD3491FS
https://github.com/adafruit/Adafruit_BLEFirmata
https://github.com/adafruit/Adafruit_BluefruitLE_nRF51
https://github.com/adafruit/Adafruit_BME280_Library
https://github.com/adafruit/Adafruit_BME680
https://github.com/adafruit/Adafruit_BMP085_Unified
https://github.com/adafruit/Adafruit_BMP183_Library
https://github.com/adafruit/Adafruit_BMP183_Unified_Library
https://github.com/adafruit/Adafruit_BMP280_Library
https://github.com/adafruit/Adafruit_BMP3XX
https://github.com/adafruit/Adafruit_BMP5xx
https://github.com/adafruit/Adafruit_BNO055
https://github.com/adafruit/Adafruit_BNO08x
https://github.com/adafruit/Adafruit_BNO08x_RVC
https://github.com/adafruit/Adafruit_bq25628e
https://github.com/adafruit/Adafruit_BusIO
https://github.com/adafruit/Adafruit_CAN
https://github.com/adafruit/Adafruit_CAP1188_Library
https://github.com/adafruit/Adafruit_CC3000_Library
https://github.com/adafruit/Adafruit_CCS811
https://github.com/adafruit/Adafruit_CH9328
https://github.com/adafruit/Adafruit_CircuitPlayground
https://github.com/adafruit/Adafruit_CompositeVideo
https://github.com/adafruit/Adafruit_CPFS
https://github.com/adafruit/Adafruit_CST8XX_Library
https://github.com/adafruit/Adafruit_DACX578
https://github.com/adafruit/Adafruit_DAP
https://github.com/adafruit/Adafruit_Debounce
https://github.com/adafruit/Adafruit_DotStar
https://github.com/adafruit/Adafruit_DotStarMatrix
https://github.com/adafruit/Adafruit_DPS310
https://github.com/adafruit/Adafruit_DRV2605_Library
https://github.com/adafruit/Adafruit_DS1841
https://github.com/adafruit/Adafruit_DS248x
https://github.com/adafruit/Adafruit_DS3502
https://github.com/adafruit/Adafruit-DVI-HSTX
https://github.com/adafruit/Adafruit_EMC2101
https://github.com/adafruit/Adafruit_EPD
https://github.com/adafruit/Adafruit_ESP8266
https://github.com/adafruit/Adafruit_Faux86
https://github.com/adafruit/Adafruit_FeatherOLED
https://github.com/adafruit/Adafruit_Floppy
https://github.com/adafruit/Adafruit_FONA
https://github.com/adafruit/Adafruit_FRAM_I2C
https://github.com/adafruit/Adafruit_FRAM_SPI
https://github.com/adafruit/Adafruit_FreeTouch
https://github.com/adafruit/Adafruit_FT5336
https://github.com/adafruit/Adafruit_FT6206_Library
https://github.com/adafruit/Adafruit_FXAS21002C
https://github.com/adafruit/Adafruit_FXOS8700
https://github.com/adafruit/Adafruit_GC9A01A
https://github.com/adafruit/Adafruit_GPS
https://github.com/adafruit/Adafruit_HDC1000_Library
https://github.com/adafruit/Adafruit_HDC302x
https://github.com/adafruit/Adafruit_HMC5883_Unified
https://github.com/adafruit/Adafruit_HTS221
https://github.com/adafruit/Adafruit_HTU21DF_Library
https://github.com/adafruit/Adafruit_HTU31D
https://github.com/adafruit/Adafruit_HUSB238
https://github.com/adafruit/Adafruit_HX711
https://github.com/adafruit/Adafruit_HX8357_Library
https://github.com/adafruit/Adafruit_ICM20X
https://github.com/adafruit/Adafruit_ILI9341
https://github.com/adafruit/Adafruit_ImageReader
https://github.com/adafruit/Adafruit_INA219
https://github.com/adafruit/Adafruit_INA228
https://github.com/adafruit/Adafruit_INA237_INA238
https://github.com/adafruit/Adafruit_INA260
https://github.com/adafruit/Adafruit_INA3221
https://github.com/adafruit/Adafruit_IntelliKeys
https://github.com/adafruit/Adafruit_InternalFlash
https://github.com/adafruit/Adafruit_IO_Arduino
https://github.com/adafruit/Adafruit_IS31FL3731
https://github.com/adafruit/Adafruit_IS31FL3741
https://github.com/adafruit/Adafruit_Keypad
https://github.com/adafruit/Adafruit_L3GD20_U
https://github.com/adafruit/Adafruit_LC709203F
https://github.com/adafruit/Adafruit_LED_Backpack
https://github.com/adafruit/Adafruit_LiquidCrystal
https://github.com/adafruit/Adafruit_LIS2MDL
https://github.com/adafruit/Adafruit_LIS331
https://github.com/adafruit/Adafruit_LIS3DH
https://github.com/adafruit/Adafruit_LIS3MDL
https://github.com/adafruit/Adafruit_LPS2X
https://github.com/adafruit/Adafruit_LPS28
https://github.com/adafruit/Adafruit_LPS35HW
https://github.com/adafruit/Adafruit_LSM303_Accel
https://github.com/adafruit/Adafruit_LSM303DLH_Mag
https://github.com/adafruit/Adafruit_LSM303DLHC
https://github.com/adafruit/Adafruit_LSM6DS
https://github.com/adafruit/Adafruit_LSM9DS0_Library
https://github.com/adafruit/Adafruit_LSM9DS1
https://github.com/adafruit/Adafruit_LTR329_LTR303
https://github.com/adafruit/Adafruit_LTR390
https://github.com/adafruit/Adafruit_LvGL_Glue
https://github.com/adafruit/Adafruit_MAX1704X
https://github.com/adafruit/Adafruit_MAX31856
https://github.com/adafruit/Adafruit_MAX31865
https://github.com/adafruit/Adafruit_MCP2515
https://github.com/adafruit/Adafruit_MCP3008
https://github.com/adafruit/Adafruit_MCP3421
https://github.com/adafruit/Adafruit_MCP4725
https://github.com/adafruit/Adafruit_MCP4728
https://github.com/adafruit/Adafruit_MCP9600
https://github.com/adafruit/Adafruit_MCP9808_Library
https://github.com/adafruit/Adafruit_MFRC630
https://github.com/adafruit/Adafruit_Microbit
https://github.com/adafruit/Adafruit_MiniMLX90614
https://github.com/adafruit/Adafruit_MLX90393_Library
https://github.com/adafruit/Adafruit_MLX90395
https://github.com/adafruit/Adafruit_MLX90632
https://github.com/adafruit/Adafruit_MLX90640
https://github.com/adafruit/Adafruit_MMA8451_Library
https://github.com/adafruit/Adafruit_MMC56x3
https://github.com/adafruit/Adafruit_Motor_Shield_V2_Library
https://github.com/RakibulIslam1/WebController
https://github.com/adafruit/Adafruit_MP3
https://github.com/adafruit/Adafruit_MPL115A2
https://github.com/adafruit/Adafruit_MPL3115A2_Library
https://github.com/adafruit/Adafruit_MPR121_Library
https://github.com/adafruit/Adafruit_MPRLS
https://github.com/adafruit/Adafruit_MPU6050
https://github.com/adafruit/Adafruit_MQTT_Library
https://github.com/adafruit/Adafruit_MS8607
https://github.com/adafruit/Adafruit_MSA301
https://github.com/adafruit/Adafruit_NAU7802
https://github.com/adafruit/Adafruit_NeoMatrix
https://github.com/adafruit/Adafruit_NeoMatrix_ZeroDMA
https://github.com/adafruit/Adafruit_NeoPixel
https://github.com/adafruit/Adafruit_NeoPixel_ZeroDMA
https://github.com/adafruit/Adafruit_NeoPXL8
https://github.com/adafruit/Adafruit_NeoTrellisM4
https://github.com/adafruit/Adafruit_nRF8001
https://github.com/adafruit/Adafruit_nRFCrypto
https://github.com/adafruit/Adafruit_OPT4048
https://github.com/adafruit/Adafruit_OV7670
https://github.com/adafruit/Adafruit_PCF8574
https://github.com/adafruit/Adafruit_PCF8591
https://github.com/adafruit/Adafruit_PCM51xx
https://github.com/adafruit/Adafruit_PCT2075
https://github.com/adafruit/Adafruit_PixelDust
https://github.com/adafruit/Adafruit_Pixie
https://github.com/adafruit/Adafruit_PM25AQI
https://github.com/adafruit/Adafruit_Protomatter
https://github.com/adafruit/Adafruit_PyCamera
https://github.com/adafruit/Adafruit_QMC5883P
https://github.com/adafruit/Adafruit_RA8875
https://github.com/adafruit/Adafruit_S-35710
https://github.com/adafruit/Adafruit_SCD30
https://github.com/adafruit/Adafruit_Seesaw
https://github.com/adafruit/Adafruit_Sensor
https://github.com/adafruit/Adafruit_Sensor_Calibration
https://github.com/adafruit/Adafruit_SensorLab
https://github.com/adafruit/Adafruit_SGP30
https://github.com/adafruit/Adafruit_SGP40
https://github.com/adafruit/Adafruit_SGP41
https://github.com/adafruit/Adafruit_SH110x
https://github.com/adafruit/Adafruit_SHARP_Memory_Display
https://github.com/adafruit/Adafruit_SHT31
https://github.com/adafruit/Adafruit_SHT4X
https://github.com/adafruit/Adafruit_SHTC3
https://github.com/adafruit/Adafruit_SI1145_Library
https://github.com/adafruit/Adafruit_Si5351_Library
https://github.com/adafruit/Adafruit_Si7021
https://github.com/adafruit/Adafruit_SleepyDog
https://github.com/adafruit/Adafruit_SoftServo
https://github.com/adafruit/Adafruit_Soundboard_library
https://github.com/adafruit/Adafruit_SPA06_003
https://github.com/adafruit/Adafruit_SPIFlash
https://github.com/adafruit/Adafruit_SSD1305
https://github.com/adafruit/Adafruit_SSD1306
https://github.com/adafruit/Adafruit_SSD1325_Library
https://github.com/adafruit/Adafruit_SSD1327
https://github.com/adafruit/Adafruit_STCC4
https://github.com/adafruit/Adafruit_STHS34PF80
https://github.com/adafruit/Adafruit_STMPE610
https://github.com/adafruit/Adafruit_STSPIN
https://github.com/adafruit/Adafruit_TCA8418
https://github.com/adafruit/Adafruit_TCS3430
https://github.com/adafruit/Adafruit_TCS34725
https://github.com/adafruit/Adafruit_TestBed
https://github.com/adafruit/Adafruit_TFLite
https://github.com/adafruit/Adafruit_TiCoServo
https://github.com/adafruit/Adafruit_TinyFlash
https://github.com/adafruit/Adafruit_TinyRGBLCDShield
https://github.com/adafruit/Adafruit_TinyUSB_Arduino
https://github.com/adafruit/Adafruit_TLA202x
https://github.com/adafruit/Adafruit_TLC5947
https://github.com/adafruit/Adafruit_TLC59711
https://github.com/adafruit/Adafruit_TLV320_I2S
https://github.com/adafruit/Adafruit_TMP006
https://github.com/adafruit/Adafruit_TMP007_Library
https://github.com/adafruit/Adafruit_TMP117
https://github.com/adafruit/Adafruit_TouchScreen
https://github.com/adafruit/Adafruit_Trellis_Library
https://github.com/adafruit/Adafruit_TSC2007
https://github.com/adafruit/Adafruit_TSC2046
https://github.com/adafruit/Adafruit_TSL2561
https://github.com/adafruit/Adafruit_TSL2591_Library
https://github.com/adafruit/Adafruit_UNTZtrument
https://github.com/adafruit/Adafruit_VCNL4010
https://github.com/adafruit/Adafruit_VCNL4020
https://github.com/adafruit/Adafruit_VCNL4040
https://github.com/adafruit/Adafruit_VCNL4200
https://github.com/adafruit/Adafruit_VEML6046
https://github.com/adafruit/Adafruit_VEML6070