-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
repositories.txt
7492 lines (7490 loc) · 335 KB
/
repositories.txt
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/fabricioitajuba/Internal_eeprom
https://github.com/gi0rg0sPapamichail/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/gi0rg0sPapamichail/QuickESPNow
https://github.com/jjlondonoc/AFE4950-Arduino-Library
https://github.com/MiguelLoureiro98/LM35IC
https://github.com/m5stack/M5Unit-TOF
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/McOrts/WindQX_Library
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/zwieblum/ch32_deep_sleep
https://github.com/microbotsio/CodeCell
https://github.com/EduKits/ColourKit
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/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/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/eloquentarduino/tinyml4all-arduino.git
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/bitcode-tech/bc7215
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/ESP-Wifi-Config
https://github.com/tabahi/TabahiConsole
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://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/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/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-Motor-Driver/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_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_BNO055
https://github.com/adafruit/Adafruit_BNO08x
https://github.com/adafruit/Adafruit_BNO08x_RVC
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_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_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_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_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_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/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_OV7670
https://github.com/adafruit/Adafruit_PCF8574
https://github.com/adafruit/Adafruit_PCF8591
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_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_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_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_STMPE610
https://github.com/adafruit/Adafruit_TCA8418
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_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_VEML6070
https://github.com/adafruit/Adafruit_VEML6075
https://github.com/adafruit/Adafruit_VEML7700
https://github.com/adafruit/Adafruit_VL53L0X
https://github.com/adafruit/Adafruit_VL53L1X
https://github.com/adafruit/Adafruit_VL6180X
https://github.com/adafruit/Adafruit_VS1053_Library
https://github.com/adafruit/Adafruit_WavePlayer
https://github.com/adafruit/Adafruit_Wippersnapper_Arduino
https://github.com/adafruit/Adafruit_xCA9554
https://github.com/adafruit/Adafruit_ZeroDMA
https://github.com/adafruit/Adafruit_ZeroFFT
https://github.com/adafruit/Adafruit_ZeroI2S
https://github.com/adafruit/Adafruit_ZeroPDM
https://github.com/adafruit/Adafruit_ZeroTimer
https://github.com/adafruit/Adafruit-BMP085-Library
https://github.com/adafruit/Adafruit-Fingerprint-Sensor-Library
https://github.com/adafruit/Adafruit-Flora-Pixel-Library
https://github.com/adafruit/Adafruit-GFX-Library
https://github.com/adafruit/Adafruit-Graphic-VFD-Display-Library
https://github.com/adafruit/Adafruit-MAX31855-library
https://github.com/adafruit/Adafruit-MCP23008-library
https://github.com/adafruit/Adafruit-MCP23017-Arduino-Library
https://github.com/adafruit/Adafruit-MLX90614-Library
https://github.com/adafruit/Adafruit-Motor-Shield-library
https://github.com/adafruit/Adafruit-PCD8544-Nokia-5110-LCD-library
https://github.com/adafruit/Adafruit-PN532
https://github.com/adafruit/Adafruit-PS2-Trackpad
https://github.com/adafruit/Adafruit-PWM-Servo-Driver-Library
https://github.com/adafruit/Adafruit-RGB-LCD-Shield-Library
https://github.com/adafruit/Adafruit-Si4713-Library
https://github.com/adafruit/Adafruit-SSD1331-OLED-Driver-Library-for-Arduino
https://github.com/adafruit/Adafruit-SSD1351-library
https://github.com/adafruit/Adafruit-ST7735-Library
https://github.com/adafruit/Adafruit-Thermal-Printer-Library
https://github.com/adafruit/Adafruit-TPA2016-Library
https://github.com/adafruit/Adafruit-VC0706-Serial-Camera-Library
https://github.com/adafruit/Adafruit-WS2801-Library
https://github.com/adafruit/arduino-CAN
https://github.com/adafruit/Audio
https://github.com/adafruit/CC3000_MDNS
https://github.com/adafruit/DHT-sensor-library
https://github.com/adafruit/ENS160_driver
https://github.com/adafruit/Ethernet2
https://github.com/adafruit/FifteenStep
https://github.com/adafruit/HL1606-LED-Strip
https://github.com/adafruit/HL1606-LED-Strip-PWM
https://github.com/adafruit/HT1632
https://github.com/adafruit/LPD6803-RGB-Pixels
https://github.com/adafruit/LPD8806
https://github.com/adafruit/MAX31850_DallasTemp
https://github.com/adafruit/MAX31850_OneWire
https://github.com/adafruit/MAX6675-library
https://github.com/adafruit/PicoDVI
https://github.com/adafruit/Pro_Trinket_USB_Keyboard_Library
https://github.com/adafruit/Pro_Trinket_USB_Mouse
https://github.com/adafruit/RGB-matrix-Panel
https://github.com/adafruit/RTClib
https://github.com/adafruit/SdFat
https://github.com/adafruit/SPI_VFD
https://github.com/adafruit/TFTLCD-Library
https://github.com/adafruit/TinyDHT
https://github.com/adafruit/TinyLiquidCrystal
https://github.com/adafruit/TinyLoRa
https://github.com/adafruit/TinyRTCLib
https://github.com/adafruit/TinyWireM
https://github.com/adafruit/TinyXML
https://github.com/adafruit/WaveHC
https://github.com/adameat/MaximWire
https://github.com/AdamJHowell/ArrayManager
https://github.com/addy123d/I2CDisplayController
https://github.com/ademuri/esp-simple-web-dashboard
https://github.com/ademuri/smart-input-filter
https://github.com/ademuri/twilio-esp32-client
https://github.com/Adish0016/DHT118266
https://github.com/Adish0016/dht11esp8266examples
https://github.com/Adish0016/dht11esp8266new.git
https://github.com/Adish0016/esp826611
https://github.com/Adish0016/servodht11
https://github.com/Adminius/Dimmer32u4
https://github.com/Adminius/DimmerControl
https://github.com/Adminius/DimmerZero
https://github.com/adnan-elabdullah/IOTKME.git
https://github.com/adnan-elabdullah/KmeStepper
https://github.com/adrian200223/Simple5641AS
https://github.com/adrien-legrand/as5x47
https://github.com/Aduen/ThreadedTimer
https://github.com/aelmendorf/eeprom_wear_level
https://github.com/aelse/ArduinoStatsd
https://github.com/Aerobotics-Global/Orbo
https://github.com/AeroboticsGlobalTeam/AEBO
https://github.com/affanhanifathtarech/DS3231_RTC
https://github.com/afpineda/MeanAndVarOnTheFly-Arduino
https://github.com/afpineda/NuS-NimBLE-Serial
https://github.com/agdl/arduino-multiplePinsAPIs
https://github.com/agdl/Base64
https://github.com/agdl/GoPRO
https://github.com/agdl/WireUpdate
https://github.com/aggregate/LCLV
https://github.com/agmangas/SerialRFID
https://github.com/aharshac/EasyNTPClient
https://github.com/aharshac/StringSplitter
https://github.com/ahmedarif193/Hlw8032
https://github.com/ahmedosama07/LineFollowerPID
https://github.com/ahmedosama07/mDriverL298n
https://github.com/ahmedosama07/PID-autotune
https://github.com/AhmedYousryM/NonBlockingSequence
https://github.com/ahmsec/fork-webbino-ahmsec
https://github.com/ai-techsystems/arduino
https://github.com/AI5GW/Baudot-Encode-Decode
https://github.com/AI5GW/CCIR476
https://github.com/AI5GW/Goertzel/
https://github.com/AidenKunkler-Peck/Tactile-Necklace
https://github.com/Aidywady/NXTBluetooth/
https://github.com/aikopras/AP_DCC_library
https://github.com/aikopras/RSbus
https://github.com/AIO-Javeriana/AIO-module-nodemcu-arduino
https://github.com/Aircoookie/Espalexa
https://github.com/airgradienthq/arduino
https://github.com/AIS-DeviceInnovation/AIS_NB_BC95
https://github.com/AIS-DeviceInnovation/Magellan
https://github.com/AIS-DeviceInnovation/Magellan_BC95
https://github.com/AIS-DeviceInnovation/Magellan_BC95_lite
https://github.com/AIS-DeviceInnovation/Magellan_SIM7020E
https://github.com/AITINKR/AITINKR_AIOT_DEVBOARD
https://github.com/AITINKR/AITINKR_SHIELDS
https://github.com/AJMansfield/LcdEffects
https://github.com/AJMansfield/TriacDimmer
https://github.com/akafugu/FourLetterWord
https://github.com/akafugu/TWIDisplayLibrary
https://github.com/akafugu/TWIKeyboardLibrary
https://github.com/akafugu/TWILiquidCrystalLibrary
https://github.com/akafugu/WireRtcLibrary
https://github.com/AKJ7/TM1637
https://github.com/akkoyun/Console
https://github.com/akkoyun/dWin
https://github.com/akkoyun/Environment
https://github.com/akkoyun/I2C_Functions
https://github.com/akkoyun/I2C_Scanner
https://github.com/akkoyun/MAX17055
https://github.com/akkoyun/MAX78630
https://github.com/akkoyun/RV3028
https://github.com/akkoyun/Statistical
https://github.com/akkoyun/Telit_xE910
https://github.com/akvavit01/MissionList
https://github.com/alekseizarubin/CD22M3494EZ
https://github.com/alessandromrc/Custom_PortentaBreakout
https://github.com/alessandromrc/FastCore
https://github.com/alessandromrc/JOAAT
https://github.com/Alex079/TinySuite
https://github.com/AlexanderLL95/SerialUtil
https://github.com/alexandrefelipemuller/PulseAnyPin
https://github.com/AlexandreHiroyuki/DataTome
https://github.com/AlexandreHiroyuki/MovingAveragePlus
https://github.com/alexbertis/LibreriaLedRGB
https://github.com/alexbertis/Text2Matrix
https://github.com/alexCajas/EmbeddedMqttBroker
https://github.com/alexCajas/WrapperFreeRTOS
https://github.com/AlexFigas/Didactic-Robot-Project
https://github.com/AlexIII/EEvar
https://github.com/AlexIII/incbin-arduino
https://github.com/alexitoo00/NewEncoder
https://github.com/alexmaurer-madis/eeprom_25AA02EXX
https://github.com/alexmaurer-madis/SC16IS7X0
https://github.com/alexmaurer-madis/statusled
https://github.com/AlexRosito67/QUAD7SHIFT
https://github.com/alextaujenis/RBD_Button
https://github.com/alextaujenis/RBD_Capacitance
https://github.com/alextaujenis/RBD_HumanSensor
https://github.com/alextaujenis/RBD_Light
https://github.com/alextaujenis/RBD_LightSensor
https://github.com/alextaujenis/RBD_Motor
https://github.com/alextaujenis/RBD_SerialManager
https://github.com/alextaujenis/RBD_Servo
https://github.com/alextaujenis/RBD_Threshold
https://github.com/alextaujenis/RBD_Timer
https://github.com/alextaujenis/RBD_WaterSensor
https://github.com/AlexTutorial/KrokoTS
https://github.com/AlfredoMunguia/TinyGuixhe
https://github.com/AlfredoSystems/Alfredo-NoU3
https://github.com/AlfredoSystems/Alfredo-NoU2
https://github.com/AlfredoSystems/AlfredoConnect-Receive
https://github.com/AlfredoSystems/AlfredoCRSF
https://github.com/AlfredoSystems/PestoLink-Receive
https://github.com/AlfredoSystems/SimpleMelt
https://github.com/algoduino/algoduino
https://github.com/ALICHOUCHENE/MemoryDumper
https://github.com/aliffathoni/ESP8266AutoWifi
https://github.com/aliffathoni/ESPAutoWifi
https://github.com/alikabeel/Letters-and-Numbers-Seven-Segment-Display-Library
https://github.com/alireza7575/MKS_SERVO42
https://github.com/alireza7575/MKS_SERVO57
https://github.com/alkonosst/SettingsManagerESP32.git
https://github.com/alkonosst/SSLClientESP32
https://github.com/allenchak/TA6932
https://github.com/allexoK/TinyDecisionTreeClassifier
https://github.com/allthingstalk/arduino-lorawan-sdk
https://github.com/allthingstalk/arduino-ltem-sdk
https://github.com/allthingstalk/arduino-wifi-sdk
https://github.com/AllWize/allwize
https://github.com/AllWize/mbus-payload
https://github.com/almavios/almavios-lit-mqtt
https://github.com/AloriumTechnology/evo_bsp
https://github.com/AloriumTechnology/evo_build_template
https://github.com/AloriumTechnology/evo_pmux_csr
https://github.com/AloriumTechnology/evo_servo
https://github.com/AloriumTechnology/UbidotsXLR8
https://github.com/AloriumTechnology/XLR8ADC
https://github.com/AloriumTechnology/XLR8AddrPack
https://github.com/AloriumTechnology/XLR8BuildTemplate
https://github.com/AloriumTechnology/XLR8Core
https://github.com/AloriumTechnology/XLR8DigitalIO
https://github.com/AloriumTechnology/XLR8DMem
https://github.com/AloriumTechnology/XLR8Float
https://github.com/AloriumTechnology/XLR8HardwareSerial
https://github.com/AloriumTechnology/XLR8Info
https://github.com/AloriumTechnology/XLR8LFSR
https://github.com/AloriumTechnology/XLR8NeoPixel
https://github.com/AloriumTechnology/XLR8PID
https://github.com/AloriumTechnology/XLR8Pong
https://github.com/AloriumTechnology/XLR8PWM
https://github.com/AloriumTechnology/XLR8Quadrature
https://github.com/AloriumTechnology/XLR8RC
https://github.com/AloriumTechnology/XLR8Servo
https://github.com/AloriumTechnology/XLR8SPI
https://github.com/AloriumTechnology/XLR8USB
https://github.com/AloriumTechnology/XLR8Wire
https://github.com/AlpenglowInd/BigNums2x2
https://github.com/AlpenglowInd/FUnicorn
https://github.com/alranel/BLESensorGateway
https://github.com/alrevuelta/SEN10724
https://github.com/amaxilat/ble_definitions
https://github.com/AmbientDataInc/Ambient_ESP8266_lib
https://github.com/amcewen/HttpClient
https://github.com/ameer1234567890/ShiftDisplay2
https://github.com/ameer1234567890/TelnetStream2
https://github.com/ameltech/sme-cc2541-library
https://github.com/ameltech/sme-hts221-library
https://github.com/ameltech/sme-le51-868-library
https://github.com/ameltech/sme-lps25h-library
https://github.com/ameltech/sme-lsm9ds1-library
https://github.com/ameltech/sme-nt3h1x01-library
https://github.com/ameltech/sme-se868-a-library
https://github.com/ameltech/sme-vl6180x-library
https://github.com/americodias/PI4IOE5V9554
https://github.com/Amethyste-PCB/Amethyste_LSM6DS3
https://github.com/amiga68k/electuno
https://github.com/amirchev/EZPROM
https://github.com/amirchev/VariableTimedAction
https://github.com/amperka/AmperkaFET
https://github.com/amperka/Octofet
https://github.com/amperka/Troyka-IMU
https://github.com/amperka/TroykaAccelerometer
https://github.com/amperka/TroykaDHT
https://github.com/amperka/TroykaGPS
https://github.com/amperka/TroykaI2CHub
https://github.com/amperka/TroykaLight
https://github.com/amperka/TroykaThermometer
https://github.com/amperpirat/MAX77650-Arduino-Library
https://github.com/An7orAhmed/ADCButtons
https://github.com/An7orAhmed/LettersKeypad
https://github.com/An7orAhmed/LiquidCrystalSerial
https://github.com/An7orAhmed/MAX7219Segment
https://github.com/and900/AMYTOL_Robot
https://github.com/and900/Amytol_Sample
https://github.com/andatche/arduino-lcd03
https://github.com/andhieSetyabudi/atlas_OEM
https://github.com/andhieSetyabudi/BQ25896
https://github.com/andhieSetyabudi/hx710b_arduino
https://github.com/andhieSetyabudi/MCP23017_LCD12864
https://github.com/andium/AmazonDRS
https://github.com/andium/hueDino
https://github.com/andrasbiro/AmigaMouseJoyEmu
https://github.com/AndreaLombardo/L298N
https://github.com/AndresDuran53/zarus-network-controller
https://github.com/andrewhe-princeton/Iridium-GPP
https://github.com/andrewrapp/xbee-arduino
https://github.com/andriell/arduino-library-WT2003M02-mp3-decoder
https://github.com/andriitishchenko/HardwareButton
https://github.com/andriyadi/AzureIoTHubMQTTClient
https://github.com/andriyadi/EspX
https://github.com/androbi-com/MqttLogger
https://github.com/Andy4495/AY3891x
https://github.com/Andy4495/ICM7218
https://github.com/Andy4495/LED744511
https://github.com/Andy4495/SWI2C
https://github.com/Andy4495/TIL306
https://github.com/Andy4495/TLC591x
https://github.com/andydoro/DST_RTC
https://github.com/angrest/pocketBME280
https://github.com/aniket-hpp/TFT_eSPI_Scroll
https://github.com/annem/AD7193
https://github.com/annem/ADXL362
https://github.com/Annikken/Andee
https://github.com/Annikken/Andee101
https://github.com/Annikken/AndeeMobile
https://github.com/Annikken/EasyAndee
https://github.com/Annikken/EasyAndee101
https://github.com/Anrijs/Aranet4-ESP32
https://github.com/Ant2000/CustomJWT
https://github.com/antaresdocumentation/antares-esp8266-http
https://github.com/antaresdocumentation/antares-esp8266-mqtt
https://github.com/antaresdocumentation/lorawan-loraid
https://github.com/antcolag/runner
https://github.com/antevir/OrviboS20_Arduino
https://github.com/antoinepetty/RMCS-220X-Control
https://github.com/AntoIOT/anto-esp8266-arduino
https://github.com/antoniopetruzzella/BeaconNano
https://github.com/AntonioPrevitali/DueAdcFast
https://github.com/anunpanya/ESP8266_QRcode
https://github.com/anwarminarso/ESPWiFiMqttWrapper
https://github.com/AnyLeaf/ph-cpp
https://github.com/ApogeoSpace/ApogeoNode
https://github.com/Apollon77/I2CSoilMoistureSensor
https://github.com/ApophisXX/MyTimer.git
https://github.com/aptinex/Aptinex_DAC
https://github.com/Aquatwix/PD-10LX-Library
https://github.com/arachnidlabs/tsunami-arduino
https://github.com/arash77/BaleMessengerBot_Arduino
https://github.com/arbotics-llc/databot_arduino
https://github.com/arbotics-llc/databot_ESP32
https://github.com/arbv/avr-context
https://github.com/ArchontisKostis/SimpleComponents
https://github.com/ardnew/cronos
https://github.com/ardnew/ILI9341-Layout-Manager
https://github.com/ardnew/STUSB4500
https://github.com/ardnew/XPT2046_Calibrated
https://github.com/Arduboy/Arduboy
https://github.com/Arduboy/ArduboyPlaytune
https://github.com/ArduCAM/Arducam_dvp
https://github.com/ArduCAM/Arducam_Mega
https://github.com/ArduCAM/Arducam_mini
https://github.com/arduino-libraries/AlPlc_Opta
https://github.com/arduino-libraries/AlPlc_PMC
https://github.com/arduino-libraries/Arduino_AdvancedAnalog
https://github.com/arduino-libraries/Arduino_APA102
https://github.com/arduino-libraries/Arduino_APDS9960
https://github.com/arduino-libraries/Arduino_AVRSTL
https://github.com/arduino-libraries/Arduino_BHY2
https://github.com/arduino-libraries/Arduino_BHY2Host
https://github.com/arduino-libraries/Arduino_BMI270_BMM150
https://github.com/arduino-libraries/Arduino_BQ24195
https://github.com/arduino-libraries/Arduino_Braccio_plusplus
https://github.com/arduino-libraries/Arduino_BuiltIn
https://github.com/arduino-libraries/Arduino_CMSIS-DSP
https://github.com/arduino-libraries/Arduino_ConnectionHandler
https://github.com/arduino-libraries/Arduino_CRC32
https://github.com/arduino-libraries/Arduino_DebugUtils
https://github.com/arduino-libraries/Arduino_EdgeControl
https://github.com/arduino-libraries/Arduino_EMBRYO_2
https://github.com/arduino-libraries/Arduino_ESP32_OTA
https://github.com/arduino-libraries/Arduino_GigaDisplay
https://github.com/arduino-libraries/Arduino_GigaDisplay_GFX
https://github.com/arduino-libraries/Arduino_GigaDisplay_TinyGL
https://github.com/arduino-libraries/Arduino_GigaDisplayTouch
https://github.com/arduino-libraries/Arduino_GroveI2C_Ultrasonic
https://github.com/arduino-libraries/Arduino_HS300x
https://github.com/arduino-libraries/Arduino_HTS221
https://github.com/arduino-libraries/Arduino_JSON
https://github.com/arduino-libraries/Arduino_KNN
https://github.com/arduino-libraries/Arduino_LowPowerPortentaH7
https://github.com/arduino-libraries/Arduino_LowPowerPortentaC33
https://github.com/arduino-libraries/Arduino_LPS22HB
https://github.com/arduino-libraries/Arduino_LSM6DS3
https://github.com/arduino-libraries/Arduino_LSM6DSOX
https://github.com/arduino-libraries/Arduino_LSM9DS1
https://github.com/arduino-libraries/Arduino_MachineControl
https://github.com/arduino-libraries/Arduino_MCHPTouch
https://github.com/arduino-libraries/Arduino_MKRENV
https://github.com/arduino-libraries/Arduino_MKRGPS
https://github.com/arduino-libraries/Arduino_MKRIoTCarrier
https://github.com/arduino-libraries/Arduino_MKRMEM
https://github.com/arduino-libraries/Arduino_MKRRGB
https://github.com/arduino-libraries/Arduino_MKRTHERM
https://github.com/arduino-libraries/Arduino_MultiWiFi
https://github.com/arduino-libraries/Arduino_NiclaSenseEnv
https://github.com/arduino-libraries/Arduino_NineAxesMotion
https://github.com/arduino-libraries/Arduino_OAuth
https://github.com/arduino-libraries/Arduino_OPC_UA
https://github.com/arduino-libraries/Arduino_OplaUI
https://github.com/arduino-libraries/Arduino_Opta_Blueprint
https://github.com/arduino-libraries/Arduino_OV767X
https://github.com/arduino-libraries/Arduino_PF1550
https://github.com/arduino-libraries/Arduino_Portenta_OTA
https://github.com/arduino-libraries/Arduino_PortentaBreakout
https://github.com/arduino-libraries/Arduino_PortentaMachineControl
https://github.com/arduino-libraries/Arduino_POSIXStorage
https://github.com/arduino-libraries/Arduino_PowerManagement
https://github.com/arduino-libraries/Arduino_Pro_Tutorials
https://github.com/arduino-libraries/Arduino_ScienceJournal
https://github.com/arduino-libraries/Arduino_ScienceKitCarrier
https://github.com/arduino-libraries/Arduino_SecureElement
https://github.com/arduino-libraries/Arduino_SensorKit
https://github.com/arduino-libraries/Arduino_SerialUpdater
https://github.com/arduino-libraries/Arduino_Threads
https://github.com/arduino-libraries/Arduino_UnifiedStorage
https://github.com/arduino-libraries/Arduino_USBHostMbed5
https://github.com/arduino-libraries/ArduinoBearSSL
https://github.com/arduino-libraries/ArduinoBLE
https://github.com/arduino-libraries/ArduinoCloudThing
https://github.com/arduino-libraries/ArduinoDMX
https://github.com/arduino-libraries/ArduinoECCX08
https://github.com/arduino-libraries/ArduinoGraphics
https://github.com/arduino-libraries/ArduinoHttpClient
https://github.com/arduino-libraries/ArduinoIoTCloud
https://github.com/arduino-libraries/ArduinoIoTCloudBearSSL
https://github.com/arduino-libraries/ArduinoLowPower
https://github.com/arduino-libraries/ArduinoMDNS
https://github.com/arduino-libraries/ArduinoModbus
https://github.com/arduino-libraries/ArduinoMotorCarrier
https://github.com/arduino-libraries/ArduinoMqttClient
https://github.com/arduino-libraries/ArduinoRS485
https://github.com/arduino-libraries/ArduinoSound
https://github.com/arduino-libraries/Audio
https://github.com/arduino-libraries/AudioFrequencyMeter
https://github.com/arduino-libraries/AudioZero
https://github.com/arduino-libraries/BNO055
https://github.com/arduino-libraries/Braccio
https://github.com/arduino-libraries/Bridge
https://github.com/arduino-libraries/Ciao
https://github.com/arduino-libraries/CTC-Go-Core-Module
https://github.com/arduino-libraries/CTC-Go-Motions-Expansion
https://github.com/arduino-libraries/Esplora
https://github.com/arduino-libraries/Ethernet
https://github.com/arduino-libraries/Firmata-Old
https://github.com/arduino-libraries/GSM
https://github.com/arduino-libraries/Keyboard
https://github.com/arduino-libraries/LiquidCrystal
https://github.com/arduino-libraries/MadgwickAHRS
https://github.com/arduino-libraries/MIDIUSB
https://github.com/arduino-libraries/MKRGSM
https://github.com/arduino-libraries/MKRIMU
https://github.com/arduino-libraries/MKRMotorCarrier
https://github.com/arduino-libraries/MKRNB
https://github.com/arduino-libraries/MKRWAN
https://github.com/arduino-libraries/MKRWAN_v2
https://github.com/arduino-libraries/Modulino
https://github.com/arduino-libraries/Mouse
https://github.com/arduino-libraries/NTPClient
https://github.com/arduino-libraries/PhysicsLabFirmware
https://github.com/arduino-libraries/Robot_Control
https://github.com/arduino-libraries/Robot_Motor
https://github.com/arduino-libraries/RobotIRremote
https://github.com/arduino-libraries/RTCZero
https://github.com/arduino-libraries/Scheduler
https://github.com/arduino-libraries/SD
https://github.com/arduino-libraries/Servo
https://github.com/arduino-libraries/SigFox
https://github.com/arduino-libraries/SpacebrewYun
https://github.com/arduino-libraries/Stepper
https://github.com/arduino-libraries/Temboo
https://github.com/arduino-libraries/TFT
https://github.com/arduino-libraries/UnoWiFi-Developer-Edition-Lib
https://github.com/arduino-libraries/USBHost
https://github.com/arduino-libraries/WiFi
https://github.com/arduino-libraries/WiFi101
https://github.com/arduino-libraries/WiFi101OTA
https://github.com/arduino-libraries/WiFiNINA
https://github.com/arduino-org/arduino-library-lora-node-shield
https://github.com/arduino-org/arduino-library-wifilink
https://github.com/arduino/ArduinoCloudProviderExamples
https://github.com/arduino/EduIntro
https://github.com/arduino279/DirectCurrent-Motor-Module
https://github.com/arduino279/Serial-Monitor
https://github.com/arduino279/Servo-Motor-Module
https://github.com/arduinocodedog/Parallax-Smart-Card-Reader-Library-for-Arduino
https://github.com/ArduinoGetStarted/Analog-Keypad
https://github.com/ArduinoGetStarted/button
https://github.com/ArduinoGetStarted/buzzer
https://github.com/ArduinoGetStarted/led
https://github.com/ArduinoGetStarted/output
https://github.com/ArduinoMax/AD5241
https://github.com/ArduinoMax/MCP41xxx
https://github.com/ArduinoMax/TLC5615