forked from arduino/library-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
repositories.txt
5288 lines (5288 loc) · 235 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/marcinsaj/RTC-RX8025T
https://github.com/pacav69/NGFlasherLED
https://github.com/ncmreynolds/ld2410
https://github.com/PrivateHomeIoT/SecureMQTT
https://github.com/makerlabvn/Makerlabvn_I2C_Motor_Driver
https://github.com/alexCajas/EmbeddedMqttBroker
https://github.com/alexCajas/WrapperFreeRTOS
https://github.com/sstaub/sACN
https://github.com/sstaub/eOS
https://github.com/Nilon123456789/Receiver
https://github.com/cwi-dis/iotsa
https://github.com/chuanstudyup/EasyGNSS.git
https://github.com/Call-for-Code/ClusterDuck-Protocol
https://github.com/drmpf/pfodGUIdesigner
https://github.com/plsTrustMeImAnEngineer/StreamAverage
https://github.com/trevorwslee/Arduino-DumbDisplay
https://github.com/dirkhillbrecht/UiUiUi
https://github.com/1337encrypted/BTS7960_Motordriver
https://github.com/MrYsLab/Telemetrix4RpiPicoW
https://github.com/divinofire/DatabaseOnSD
https://github.com/eloquentarduino/EloquentSurveillance
https://github.com/AI5GW/Goertzel/
https://github.com/an7or/MAX7219Segment
https://github.com/cjmccjmccjmc/ControlLoop
https://github.com/boothinator/ProgmemAssert
https://github.com/CalvinBultz/LightningStepper
https://github.com/nusabot-iot/NusabotSimpleTimer
https://github.com/libnapc/libnapc-arduino-releases
https://github.com/Dennis-van-Gils/DvG_StreamCommand
https://github.com/gspsp/Series
https://github.com/TheSpaceDragon/rdv-gy512
https://github.com/MR-XieXuan/URLCode_for_Arduino
https://github.com/MR-XieXuan/RX8025_for_Arduino
https://github.com/BoschSensortec/Bosch-BME68x-Library
https://github.com/dantudose/LTR308
https://github.com/SpulberGeorge/EasyUltrasonic
https://github.com/Gjorgjevikj/SmoothProgress
https://github.com/MSZ98/serial-readline
https://github.com/MSZ98/CallMyFunction
https://github.com/naszly/Arduino-StaticSerialCommands
https://github.com/dominicklee/TrueProx/
https://github.com/cygig/MCUVoltage
https://github.com/Solo-FL/SOLO-motor-controllers-ARDUINO-library
https://github.com/Justin-Pl/PCA9698
https://github.com/lucas-inacio/DS1624
https://github.com/lucas-inacio/TinyLiquidCrystal_I2C
https://github.com/drmpf/ESPAutoWiFiConfig
https://github.com/Dennis-van-Gils/MIKROE_4_20mA_RT_Click
https://github.com/drmpf/pfodParser
https://github.com/jbtronics/ESP32Console
https://github.com/AI5GW/Baudot-Encode-Decode
https://github.com/AI5GW/CCIR476
https://github.com/microchip-pic-avr-solutions/avr-iot-cellular-arduino-library
https://github.com/microchip-pic-avr-solutions/mcp9808_arduino_driver
https://github.com/microchip-pic-avr-solutions/veml3328_arduino_driver
https://github.com/ftjuh/I2Cwrapper
https://github.com/KravitzLab/MicrocontrollersForNeuroscience
https://github.com/sstaub/SSD1803A_I2C
https://github.com/abel6jose/Trial
https://github.com/bolderflight/ainstein-usd1
https://github.com/hardmax/ADS1232
https://github.com/goldfish4tech/Goldfish4Tech
https://github.com/ElectroMagus/ESP32MX1508
https://github.com/Rad-hi/MacroDebugger
https://github.com/brownby/Komotion
https://github.com/ojx/HTTPed
https://github.com/ncmreynolds/wordwrap
https://github.com/hardmax/LogToQueue
https://github.com/wollewald/ADS1220_WE
https://github.com/DenysChuhlib/NTPtime
https://github.com/yellobyte/DacESP32
https://github.com/pangodream/ESP2SOTA
https://github.com/An7or/ADCButtons
https://github.com/jaggzh/mini-ppm-info
https://github.com/DuinoDNS/ddns-arduino-nightly-releases
https://github.com/arbotics-llc/databot_ESP32
https://github.com/HakkanR/DMD2TUR
https://github.com/bolderflight/ms4525do
https://github.com/MSZ98/pcf8574
https://github.com/Narwhalsss360/NTimer
https://github.com/Narwhalsss360/NEvents
https://github.com/Narwhalsss360/NDefs
https://github.com/janscience/TeeRec
https://github.com/janscience/ESensors
https://github.com/Narwhalsss360/NFuncs
https://github.com/Narwhalsss360/NRotary
https://github.com/Narwhalsss360/NPush
https://github.com/Narwhalsss360/NColor
https://github.com/Narwhalsss360/NHC-SR04
https://github.com/dani007200964/Shellminator
https://github.com/MdelgadoL83/TapatioElectronics
https://github.com/Dlloydev/Toggle
https://github.com/Francis-Magallanes/CircularQueue
https://github.com/vChavezB/lwip-Arduino
https://bitbucket.org/David_Such/nexgen_MSP
https://github.com/South-River/BMI085-arduino
https://github.com/PowerBroker2/MultivariateNormal
https://github.com/dani007200964/Commander-API
https://github.com/robotman2412/pax-graphics
https://github.com/ronbentley1/eazy-Shift-Registers
https://github.com/adnan-elabdullah/KmeStepper
https://github.com/ronbentley1/eazy-switch-library
https://github.com/sleepnow2/ArdRTOS/
https://github.com/An7or/LiquidCrystalSerial
https://github.com/An7or/LettersKeypad
https://bitbucket.org/David_Such/nexgen_SBUS
https://github.com/usini/usini_discord_webhook
https://github.com/bheesma-10/IP5306_I2C
https://github.com/Tinyu-Zhao/M5-Outdepends
https://github.com/Tinyu-Zhao/M5-Depends
https://github.com/Tinyu-Zhao/INA3221
https://github.com/PowerBroker2/navduino
https://github.com/n-wach/camino
https://gitlab.com/escalator-home-automation/escalator-switch
https://gitlab.com/escalator-home-automation/daily-service
https://gitlab.com/atesin/XxHash_arduino
https://bitbucket.org/David_Such/nexgen_AHRS
https://github.com/gianni-carbone/STM32mcp4151
https://github.com/wollewald/EEPROM_SPI_WE
https://github.com/gianni-carbone/STM32ad9833
https://github.com/kousheekc/Kinematics
https://github.com/Bobingstern/MicroFlow
https://github.com/gianni-carbone/STM32encoder
https://github.com/bheesma-10/MCP23008_I2C
https://github.com/hsfl/artemis-teensy
https://github.com/MaiTheLord/BetterOTA
https://github.com/InfiniteCoder01/BufferedOreonSSD1351
https://github.com/shurik179/pov-library
https://github.com/EngineeringRoom/Engineer_EasyEEPROM
https://github.com/skathir38/Rotary
https://github.com/adnan-elabdullah/IOTKME.git
https://bitbucket.org/David_Such/nexgen_filter
https://bitbucket.org/David_Such/nexgen_timer
https://github.com/MrYsLab/Telemetrix4Esp32
https://github.com/road-t/DM8BA10/
https://github.com/Stutchbury/EventJoystick
https://github.com/Stutchbury/EventAnalog
https://github.com/Stutchbury/EventButton
https://github.com/fish-five/BGWiFiConfig
https://github.com/instanceofMA/arduino-fetch
https://github.com/ArduinoGetStarted/led
https://github.com/iotdevicesdev/GGreg20_V3
https://github.com/Stutchbury/TouchKeypad
https://github.com/Stutchbury/DisplayUtils
https://github.com/JChristensen/JC_EEPROM
https://github.com/sstaub/gma3
https://github.com/sstaub/NTP
https://github.com/sstaub/TeensyID
https://github.com/sstaub/Timer
https://github.com/Stutchbury/EncoderButton
https://github.com/Gbertaz/JDI_MIP_Display
https://github.com/ClemensAtElektor/Nano_Every_WS2812B
https://github.com/JChristensen/JC_Sunrise
https://github.com/bobveringa/HSCDTD008A-Library
https://github.com/boothinator/AnalogReadAsync
https://github.com/bolderflight/vector_nav
https://github.com/boothinator/TimerExtensions
https://github.com/sstaub/Ethernet3
https://github.com/sstaub/TickTwo
https://github.com/sstaub/NextionX2
https://github.com/aikopras/AP_DCC_library
https://github.com/bolderflight/pwm
https://github.com/bolderflight/excitation
https://github.com/bolderflight/filter
https://github.com/bolderflight/polytools
https://github.com/bolderflight/eigen
https://github.com/bolderflight/control
https://github.com/bolderflight/imap
https://github.com/bolderflight/uleb128
https://github.com/bolderflight/leb128
https://github.com/bolderflight/framing
https://github.com/bolderflight/checksum
https://github.com/bolderflight/airdata
https://github.com/GyverLibs/SunPosition
https://github.com/GyverLibs/VirtualButton
https://github.com/GyverLibs/CharDisplay
https://github.com/GyverLibs/GyverNTP
https://github.com/GyverLibs/GyverJoy
https://github.com/GyverLibs/QuickCharge
https://github.com/GyverLibs/GyverPortal
https://github.com/GyverLibs/GyverMAX6675
https://github.com/GyverLibs/SimplePortal
https://github.com/GyverLibs/GyverHTU21D
https://github.com/GyverLibs/GyverHC595
https://github.com/GyverLibs/OVS
https://github.com/GyverLibs/GyverTransfer
https://github.com/GyverLibs/GyverLBUF
https://github.com/GyverLibs/EEManager
https://github.com/GyverLibs/MicroUART
https://github.com/GyverLibs/GyverINA
https://github.com/GyverLibs/Approxy
https://github.com/MajicDesigns/MD_SmartCar2
https://github.com/ncmreynolds/TapCode
https://github.com/NeMaksym/Arduino-EasySevenSeg
https://github.com/ArduinoGetStarted/Analog-Keypad
https://github.com/GerLech/AsyncWebConfig
https://github.com/ohad32/FireBase32
https://github.com/Franzininho/Franzininho_LiquidCrystal
https://github.com/ProjectoOfficial/Oscup
https://github.com/cygig/MonteCarloPi
https://github.com/ncmreynolds/pimoroniTrackball
https://github.com/AlexIII/incbin-arduino
https://github.com/bolderflight/units
https://github.com/bolderflight/statistics
https://github.com/bolderflight/circle_buf
https://github.com/connornishijima/Pixie_Chroma
https://github.com/Gbertaz/NonBlockingDallas
https://github.com/RoboCore/RoboCore_Vespa
https://github.com/Phoenix1747/Arduino-Pico-Analog-Correction/
https://github.com/StrathbogieBrewing/TinBus.git
https://github.com/StrathbogieBrewing/VEDirect.git
https://github.com/MrYsLab/Telemetrix4Connect2040
https://github.com/mgaman/PDUlib
https://github.com/Aidywady/NXTBluetooth/
https://github.com/TawalMc/TinyDatabase_Arduino
https://github.com/Phoenix1747/MQ135
https://github.com/BreadBoardMates/Arduino-Mates-Controller
https://github.com/MajicDesigns/MD_Stepper
https://github.com/DFRobot/DFRobot_IIS
https://github.com/DFRobot/DFRobot_MCP9808
https://github.com/DFRobot/DFRobot_BMP3XX
https://github.com/DFRobot/DFRobot_DHT20
https://github.com/DFRobot/DFRobot_RTU
https://github.com/DFRobot/DFRobot_B_LUX_V30B
https://github.com/DFRobot/DFRobot_SGP40
https://github.com/DFRobot/DFRobot_TCS3430
https://github.com/DFRobot/DFRobot_VL6180X
https://github.com/DFRobot/DFRobot_RGBLCD1602
https://github.com/DFRobot/DFRobot_MGC3130
https://github.com/DFRobot/DFRobot_VEML6075
https://github.com/DFRobot/DFRobot_DF1201S
https://github.com/DFRobot/DFRobot_URM13
https://github.com/DFRobot/DFRobot_LIDAR07
https://github.com/DFRobot/DFRobot_RGBButton
https://github.com/DFRobot/DFRobot_BME280
https://github.com/ruiseixasm/Robust-EEPROM
https://github.com/DFRobot/DFRobot_BMX160
https://github.com/DFRobot/DFRobot_PAJ7620U2
https://github.com/DFRobot/DFRobot_DS323X
https://github.com/DFRobot/DFRobot_Lora
https://github.com/DFRobot/DFRobot_CCS811
https://github.com/DFRobot/DFRobot_VEML7700
https://github.com/bheesma-10/mcp23017-arduino
https://github.com/DFRobot/DFRobot_VisualRotaryEncoder
https://github.com/DFRobot/DFRobot_ENS160
https://github.com/DFRobot/DFRobot_STS3X
https://github.com/DFRobot/DFRobot_SIM
https://github.com/DFRobot/DFRobot_SIM7000
https://github.com/DFRobot/DFRobot_EnvironmentalSensor
https://github.com/DFRobot/DFRobot_GM60
https://github.com/DFRobot/DFRobot_ICG20660L
https://github.com/DFRobot/DFRobot_TMF8x01
https://github.com/DFRobot/DFRobot_IICSerial
https://github.com/DFRobot/DFRobot_MCP23017
https://github.com/DFRobot/DFRobot_BMM150
https://github.com/DFRobot/DFRobot_ICP10111
https://github.com/DFRobot/DFRobot_URM09
https://github.com/DFRobot/DFRobot_AS3935
https://github.com/DFRobot/DFRobot_SHT20
https://github.com/DFRobot/DFRobot_DS1307
https://github.com/DFRobot/DFRobot_AirQualitySensor
https://github.com/DFRobot/DFRobot_BloodOxygen_S
https://github.com/DFRobot/DFRobot_Alcohol
https://github.com/DFRobot/DFRobot_DF1101S
https://github.com/DFRobot/DFRobot_SpeechSynthesis
https://github.com/DFRobot/DFRobot_PN532
https://github.com/DFRobot/DFRobot_AS7341
https://github.com/DFRobot/DFRobot_BT401
https://github.com/DFRobot/DFRobot_VoiceRecorder
https://github.com/DFRobot/DFRobot_ID809_I2C
https://github.com/DFRobot/DFRobot_MPX5700
https://github.com/DFRobot/DFRobot_Maqueenplus
https://github.com/DFRobot/DFRobot_VL53L0X
https://github.com/DFRobot/DFRobot_BMP280
https://github.com/DFRobot/DFRobot_DHT11
https://github.com/DFRobot/DFRobot_LIS
https://github.com/DFRobot/DFRobot_BME680
https://github.com/DFRobot/DFRobot_SIM808
https://github.com/DFRobot/DFRobot_HX711_I2C
https://github.com/DFRobot/DFRobot_LWLP
https://github.com/DFRobot/DFRobot_PH
https://github.com/DFRobot/DFRobot_BC20_Gravity
https://github.com/DFRobot/DFRobot_ADS1115
https://github.com/DFRobot/DFRobot_SerialScreen771
https://github.com/DFRobot/DFRobot_AHT20
https://github.com/DFRobot/DFRobot_RS01
https://github.com/DFRobot/DFRobot_ASR
https://github.com/DFRobot/DFRobot_HX711
https://github.com/DFRobot/DFRobot_BMI160
https://github.com/DFRobot/DFRobot_MAX17043
https://github.com/DFRobot/DFRobot_SHT
https://github.com/DFRobot/DFRobot_INA219
https://github.com/DFRobot/DFRobot_EOxygenSensor
https://github.com/DFRobot/DFRobot_OxygenSensor
https://github.com/DFRobot/DFRobot_GP8302
https://github.com/DFRobot/DFRobot_GP8403
https://github.com/DFRobot/DFRobot_LedDisplayModule
https://github.com/DFRobot/DFRobot_URM07
https://github.com/DFRobot/DFRobot_QMC5883
https://github.com/DFRobot/DFRobot_TCS34725
https://github.com/DFRobot/DFRobot_I2C_Multiplexer
https://github.com/DFRobot/DFRobot_Gesture_Touch
https://github.com/DFRobot/DFRobot_CH423
https://github.com/DFRobot/DFRobot_MAX98357A
https://github.com/DFRobot/DFRobot_SCD4X
https://github.com/WinsonAPP/WinsonLibrary
https://github.com/DFRobot/DFRobot_OLED12864
https://github.com/DFRobot/DFRobot_Heartrate
https://github.com/DFRobot/DFRobot_OSD
https://github.com/DFRobot/DFRobot_EC10
https://github.com/DFRobot/DFRobot_LSM303
https://github.com/DFRobot/DFRobot_SU03T
https://github.com/DFRobot/DFRobot_AD9837
https://github.com/DFRobot/DFRobot_ITG3200
https://github.com/DFRobot/DFRobot_FreeTenIMU
https://github.com/DFRobot/DFRobot_ADXL345
https://github.com/DFRobot/DFRobot_DigitalPot
https://github.com/DFRobot/DFRobot_MAX31855
https://github.com/DFRobot/DFRobot_MCP4725
https://github.com/DFRobot/DFRobot_RGBMatrix
https://github.com/DFRobot/DFRobot_ST7687S
https://github.com/DFRobot/DFRobot_MotorStepper
https://github.com/DFRobot/DFRobot_MCP2515
https://github.com/ZinggJM/ILI9486_SPI
https://github.com/ZinggJM/GFX_Extensions
https://github.com/DFRobot/DFRobot_MLX90614
https://github.com/MajicDesigns/MD_OnePin
https://github.com/cygig/DailyStruggleButton
https://github.com/FTTechBrasil/FTTech-LoRaWAN
https://github.com/micromouseonline/BasicEncoder
https://github.com/Rad-hi/MyButton_Arduino
https://github.com/PowerBroker2/ArduPID
https://github.com/JulStrat/uCDB
https://github.com/FTTechBrasil/FTTech_XBee
https://github.com/siktec-lab/SIKTEC-AVR-Controller
https://github.com/siktec-lab/SIKTEC-Keys
https://github.com/siktec-lab/SIKTEC-MDSwitch
https://github.com/siktec-lab/SIKTEC-SPI
https://github.com/siktec-lab/SIKTEC-SRAM
https://github.com/seanboe/SimpleFusion
https://github.com/FTTechBrasil/AqualaboSensor
https://github.com/PowerBroker2/MotorController
https://github.com/MrYsLab/NanoConnectHcSr04
https://github.com/Tinyu-Zhao/TinyGPSPlus
https://github.com/m5stack/M5Family
https://github.com/m5stack/M5Stack
https://github.com/m5stack/M5Core2
https://github.com/m5stack/M5StickC
https://github.com/m5stack/M5StickC-Plus
https://github.com/m5stack/M5Station
https://github.com/m5stack/M5Atom
https://github.com/m5stack/M5EPD
https://github.com/m5stack/M5GFX
https://github.com/m5stack/M5Unified
https://github.com/m5stack/M5Unit-Encoder
https://github.com/m5stack/M5Unit-Sonic
https://github.com/m5stack/M5Unit-ACSSR
https://github.com/m5stack/M5Unit-KMeter
https://github.com/m5stack/M5Unit-Thermal2
https://github.com/m5stack/M5Unit-MQTT
https://github.com/m5stack/M5Unit-ENV
https://github.com/m5stack/M5Unit-EXTIO2
https://github.com/m5stack/M5Unit-UHF-RFID
https://github.com/m5stack/M5Unit-RTC
https://github.com/m5stack/M5Unit-4RELAY
https://github.com/m5stack/M5Unit-RELAY
https://github.com/m5stack/M5Unit-CatM
https://github.com/m5stack/M5Hat-8Servos
https://github.com/m5stack/M5Hat-JoyC
https://github.com/m5stack/ATOM_DTU_NB
https://github.com/m5stack/ATOM_DTU_LoRaWAN
https://github.com/m5stack/ATOM_DTU_CAT1
https://github.com/m5stack/MODULE_GRBL13.2
https://github.com/m5stack/M5Core-Ink
https://github.com/m5stack/M5Module-4Relay
https://github.com/m5stack/M5Module-2Relay-13.2
https://github.com/m5stack/M5Unit-DDS
https://github.com/m5stack/M5Unit-PoESP32
https://github.com/m5stack/M5-DLight
https://github.com/m5stack/M5-ADS1115
https://github.com/m5stack/M5-FPC1020A
https://github.com/m5stack/M5-ADS1100
https://github.com/m5stack/M5-RoverC
https://github.com/m5stack/M5-LoRaWAN
https://github.com/m5stack/M5_BMM150
https://github.com/m5stack/M5_EzData
https://github.com/m5stack/M5BurnerNVS
https://github.com/m5stack/STAMP-PICO
https://github.com/m5stack/TimerCam-arduino
https://github.com/m5stack/PoE_CAM
https://github.com/m5stack/DEMO-BOARD
https://github.com/MrYsLab/NeoPixelConnect
https://github.com/bigsmalloverall/SimpleTaskManager
https://github.com/Infineon/arduino-multi-half-bridge
https://github.com/aikopras/RSbus
https://github.com/tfeldmann/Arduino-SchmittTrigger
https://github.com/tfeldmann/Arduino-Blinkenlight
https://github.com/miathedev/KomootBLEConnect
https://github.com/RobotGrrl/PolylineArduino
https://github.com/Tinyu-Zhao/PCA9554
https://github.com/Tinyu-Zhao/FFT
https://github.com/Tinyu-Zhao/TFTTerminal
https://github.com/chochain/nanoFORTH
https://github.com/Frederik-Eberhard/Excelsior
https://github.com/oguzkaganyaglioglu/PLCustomDevicesLibrary
https://github.com/dimag0g/PPM-reader
https://github.com/Mysues/ERO
https://github.com/pierremolinaro/rp2040-charlieplexing
https://github.com/RCmags/vector_datatype
https://github.com/RCmags/ADNS3080
https://github.com/RCmags/basicMPU6050
https://github.com/RCmags/imuFilter
https://github.com/RobTillaart/MAX14661
https://github.com/sparkfun/SparkFun_Qwiic_6DoF_LSM6DSO_Arduino_Library
https://github.com/bitbank2/PNGdec
https://github.com/noah1510/generic-Arduino
https://github.com/atc1441/NETSGPClient
https://github.com/RobTillaart/relativity
https://github.com/RobTillaart/TSL235R
https://github.com/ArduinoShop/Seg7
https://github.com/ARTS37/SerialMenuCmd
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://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/pjhardy/arduinosinspace
https://github.com/EndlessParadox7/GFX_Thaana
https://github.com/Simpit-team/KerbalSimpitRevamped-Arduino
https://bitbucket.org/teckel12/arduino-new-ping
https://bitbucket.org/xoseperez/pcf8583
https://git.antares.id/lorawan-loraid/arduino-loraid
https://github.com/0015/ESP32-OV5640-AF
https://github.com/0015/TP_Arduino_DigitalRain_Anim
https://github.com/0xCAFEDECAF/VanBus
https://github.com/107-systems/107-Arduino-AS504x
https://github.com/107-systems/107-Arduino-BMP388
https://github.com/107-systems/107-Arduino-Debug
https://github.com/107-systems/107-Arduino-MCP2515
https://github.com/107-systems/107-Arduino-NMEA-Parser
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-Cyphal
https://github.com/107-systems/107-Arduino-APDS-9950
https://github.com/1IoT/cloud-connectivity-lib
https://github.com/loginov-rocks/UbxGps
https://github.com/256dpi/arduino-mqtt
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/GFX4DIoD9
https://github.com/4dsystems/Goldelox-Serial-Arduino-Library
https://github.com/4dsystems/Picaso-Serial-Arduino-Library
https://github.com/4dsystems/SOMOIoD
https://github.com/4dsystems/ViSi-Genie-Arduino-Library
https://github.com/4dsystems/Pixxi-Serial-Arduino-Library
https://github.com/5N44P/ht1621-7-seg
https://github.com/5pIO/BLESerial
https://github.com/8bitbuddhist/PixelMaestro
https://github.com/934virginia/Norman
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/abderraouf-adjal/ArduinoSpritzCipher
https://github.com/abderraouf-adjal/Embedded-PID
https://github.com/abishur/ms5x
https://github.com/acrandal/RevEng_PAJ7620
https://github.com/acrobotic/Ai_Ardulib_SSD1306
https://github.com/adafruit/Adafruit_10DOF
https://github.com/adafruit/Adafruit_9DOF
https://github.com/adafruit/Adafruit_ADS1X15
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_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_GifDecoder
https://github.com/adafruit/Adafruit_Arcada
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_RVC
https://github.com/adafruit/Adafruit_BNO08x
https://github.com/adafruit/Adafruit_BusIO
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_CircuitPlayground
https://github.com/adafruit/Adafruit_CompositeVideo
https://github.com/adafruit/Adafruit_DAP
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_DS3502
https://github.com/adafruit/Adafruit_EMC2101
https://github.com/adafruit/Adafruit_EPD
https://github.com/adafruit/Adafruit_ESP8266
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_FT6206_Library
https://github.com/adafruit/Adafruit_FXAS21002C
https://github.com/adafruit/Adafruit_FXOS8700
https://github.com/adafruit/Adafruit_GPS
https://github.com/adafruit/Adafruit_HDC1000_Library
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_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_INA260
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_MCP3008
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_ZeroDMA
https://github.com/adafruit/Adafruit_NeoMatrix
https://github.com/adafruit/Adafruit_NeoPixel_ZeroDMA
https://github.com/adafruit/Adafruit_NeoPixel
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_RA8875
https://github.com/adafruit/Adafruit_SCD30
https://github.com/adafruit/Adafruit_Seesaw
https://github.com/adafruit/Adafruit_Sensor_Calibration
https://github.com/adafruit/Adafruit_Sensor
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_TCS34725
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_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_VCNL4040
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_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_TCA8418
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/Ethernet2
https://github.com/adafruit/FifteenStep
https://github.com/adafruit/HL1606-LED-Strip-PWM
https://github.com/adafruit/HL1606-LED-Strip
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/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/adafruit/Adafruit_TestBed
https://gitlab.com/ben-bartholomew/adafruit_max9744_library
https://github.com/adameat/MaximWire
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/Adminius/Dimmer32u4
https://github.com/Adminius/DimmerControl
https://github.com/Adminius/DimmerZero
https://github.com/adrien-legrand/as5x47
https://github.com/Aduen/ThreadedTimer
https://github.com/aelse/ArduinoStatsd
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/ai-techsystems/arduino
https://github.com/AidenKunkler-Peck/Tactile-Necklace
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_BC95_lite
https://github.com/AIS-DeviceInnovation/Magellan_BC95
https://github.com/AIS-DeviceInnovation/Magellan_SIM7020E
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/Environment
https://github.com/akvavit01/MissionList
https://github.com/Alex079/TinySuite
https://github.com/AlexanderLL95/SerialUtil
https://github.com/AlexandreHiroyuki/MovingAveragePlus
https://github.com/alexbertis/LibreriaLedRGB
https://github.com/AlexIII/EEvar
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/algoduino/algoduino
https://github.com/alikabeel/Letters-and-Numbers-Seven-Segment-Display-Library
https://github.com/allenchak/TA6932
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/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/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/andatche/arduino-lcd03
https://github.com/andhieSetyabudi/atlas_OEM
https://github.com/andhieSetyabudi/BQ25896
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/andrewrapp/xbee-arduino
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/ICM7218
https://github.com/Andy4495/LED744511
https://github.com/Andy4495/TLC591x
https://github.com/Andy4495/AY3891x
https://github.com/Andy4495/SWI2C
https://github.com/andydoro/DST_RTC
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/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/AnyLeaf/ph-cpp
https://github.com/Apollon77/I2CSoilMoistureSensor
https://github.com/aptinex/Aptinex_DAC
https://github.com/arachnidlabs/tsunami-arduino
https://github.com/arash77/BaleMessengerBot_Arduino
https://github.com/arbotics-llc/databot_arduino
https://github.com/arbv/avr-context
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/AlexTutorial/KrokoTS
https://github.com/Arduboy/ArduboyPlaytune
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_BMI270_BMM150
https://github.com/arduino-libraries/Arduino_BQ24195
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_HTS221
https://github.com/arduino-libraries/Arduino_JSON
https://github.com/arduino-libraries/Arduino_KNN
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_NineAxesMotion
https://github.com/arduino-libraries/Arduino_OAuth
https://github.com/arduino-libraries/Arduino_OV767X
https://github.com/arduino-libraries/Arduino_PortentaBreakout
https://github.com/arduino-libraries/Arduino_Portenta_OTA
https://github.com/arduino-libraries/Arduino_Pro_Tutorials
https://github.com/arduino-libraries/Arduino_ScienceJournal
https://github.com/arduino-libraries/Arduino_SensorKit
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_v2
https://github.com/arduino-libraries/MKRWAN
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/arduinocodedog/Parallax-Smart-Card-Reader-Library-for-Arduino
https://github.com/ArduinoGetStarted/button
https://github.com/ArduinoGetStarted/buzzer
https://github.com/ArduinoGetStarted/output
https://github.com/ArduinoMax/AD5241
https://github.com/ArduinoMax/MCP41xxx
https://github.com/ArduinoMax/TLC5615
https://github.com/arduinoverkstad/EducationShield
https://github.com/Arekushi/Finite-State-Machine-Arduino