forked from arduino/library-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
repositories.txt
6600 lines (6599 loc) · 296 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/eloquentarduino/eloquent_esp32cam_remote
https://github.com/N4rcissist/OtaHelper
https://github.com/nihinihikun/E220-900T22S-JP_Arduino
https://github.com/cschorn01/2.4GHz_Lora_for_Arduino
https://github.com/PlayingWithFusion/PwFusion_Data_Transfer
https://github.com/PlayingWithFusion/PwFusion_I2C_Toggle_Arduino_Library
https://github.com/PlayingWithFusion/PwFusion_I2C_Buttons_Arduino_Library
https://github.com/PlayingWithFusion/PwFusion_I2C_Joystick_Arduino_Library
https://github.com/PlayingWithFusion/PwFusion_I2C_Encoder_Arduino_Library
https://github.com/lmtreser/Robotec
https://github.com/pkyanam/ArduRoomba
https://github.com/eloquentarduino/eloquent_edgeimpulse
https://github.com/Mewtry/TCS230_ESP32
https://github.com/eloquentarduino/eloquent_rtls
https://github.com/eloquentarduino/tflm_cortexm
https://github.com/eloquentarduino/tflm_esp32
https://github.com/martinvichnal/AntiDelay
https://github.com/kmilo17pet/qlibs-cpp
https://github.com/eloquentarduino/EloquentTensorFlowCortexM
https://github.com/aelmendorf/eeprom_wear_level
https://github.com/rogerjames99/json2asw-arduino
https://github.com/usblink/waver
https://github.com/alireza7575/MKS_SERVO42
https://github.com/AsproCompany/AsproSolarShield
https://github.com/handmade0octopus/ESP32-TWAI-CAN
https://github.com/CoreX-IoT/corex-firmware
https://github.com/Fourier-git/ADXL372
https://github.com/tatemazer/AcaiaArduinoBLE
https://github.com/littleBitsman/Asynchrony
https://github.com/alireza7575/MKS_SERVO57
https://github.com/amiga68k/electuno
https://github.com/arduino279/Serial-Monitor
https://github.com/arduino279/DirectCurrent-Motor-Module
https://github.com/arduino279/Servo-Motor-Module
https://github.com/eloquentarduino/EloquentTensorFlow32
https://github.com/joshua-8/TMC7300
https://github.com/hasenradball/LCD-I2C
https://github.com/allexoK/TinyDecisionTreeClassifier
https://github.com/DefHam140/IOTClient
https://github.com/hoeken/PsychicHttp
https://github.com/dejwk/roo_collections
https://github.com/dejwk/roo_display
https://github.com/dejwk/roo_flags
https://github.com/dejwk/roo_icons
https://github.com/dejwk/roo_logging
https://github.com/dejwk/roo_material_icons
https://github.com/dejwk/roo_scheduler
https://github.com/dejwk/roo_time
https://github.com/sensebox/senseBoxBLE
https://github.com/hasenradball/AM2302-Sensor
https://github.com/jonnybergdahl/Arduino_JBWopr_Library
https://github.com/ArduinoSapienza/DCMotor
https://github.com/eb1992/ShiftLcd
https://github.com/ArduinoSapienza/VibrationMotor
https://github.com/hasenradball/NINA-Wi-Fi
https://github.com/Acrome-Smart-Motor-Driver/SMD-Arduino-Library
https://github.com/Zhu-jiatong/FilesystemAccessInterface
https://github.com/ahmedarif193/Hlw8032
https://github.com/Zhu-jiatong/AccessPermissionManager
https://github.com/Zhu-jiatong/FilesystemUtility
https://github.com/CuriousScientist0/ADS1256
https://github.com/netnspace/CanSatNeXT_GNSS
https://github.com/Zhu-jiatong/SessionManager
https://github.com/Zhu-jiatong/CredentialManager
https://github.com/Zhu-jiatong/SQLiteDatabaseManager
https://github.com/pg-goose/MKRWiFiLed
https://github.com/jonnybergdahl/Arduino_JBLogger_Library
https://github.com/marcin-filipiak/DeviceConfigJSON
https://github.com/kaiaai/arduino_pid_timed
https://github.com/gemi254/ControlAssist-ESP32-ESP8266
https://github.com/hasenradball/Bosch_BME280_Arduino
https://github.com/makerlabvn/Makerlabvn_SimpleMotor
https://github.com/Khuuxuanngoc/DHT-sensor-library
https://github.com/satspares/DWIN_DGUS_HMI
https://github.com/CIRCUITSTATE/CSE_ModbusRTU
https://github.com/segertonGH/Creative-Robotix-Educational-Platform-Arduino
https://github.com/vacmg/MAX_RS485
https://github.com/sparkfun/SparkFun_STHS34PF80_Arduino_Library
https://github.com/InterstitialTech/quadrant-lib
https://github.com/zvonler/CircuitPlaygroundGestures
https://github.com/makerlabvn/Waterproof_Ultrasonic
https://github.com/ProgrammingElectronicsAcademy/chatGPT-Arduino-library
https://github.com/esp-arduino-libs/ESP32_Knob
https://github.com/esp-arduino-libs/ESP32_Display_Panel
https://github.com/esp-arduino-libs/ESP32_Button
https://github.com/esp-arduino-libs/ESP32_USB_Stream
https://github.com/ApophisXX/MyTimer.git
https://github.com/esp-arduino-libs/ESP32_IO_Expander
https://github.com/ddxfish/XPT2046_Bitbang_Arduino_Library
https://github.com/SemBeacon/arduino-esp32
https://github.com/lysek01/ModbusPowerMeter/
https://github.com/Nolven/ftp32
https://github.com/zvonler/DebouncedButton
https://github.com/zvonler/DebouncedLDR
https://github.com/chhorisberger/M5StackMenuSystem
https://github.com/CIRCUITSTATE/CSE_ArduinoRS485
https://github.com/codeljo/AA_MCP2515
https://github.com/and900/Amytol_Sample
https://github.com/AlfredoMunguia/TinyGuixhe
https://github.com/iMakeOfficial/iMakeBeta
https://github.com/Kastara-Digital-Technology/Kadita
https://github.com/netnspace/CanSatNeXT_library/
https://github.com/and900/AMYTOL_Robot
https://github.com/lbirkert/asyncino
https://github.com/rtdgreg/TWI_GPS
https://github.com/richardsibanda/nonblockingtimer
https://github.com/ndroid/HC06_AT_CommandCenter
https://github.com/Robotics-Competence-Center-Illertal-e-V/RocciBoard-Library
https://github.com/RobertByrnes/Emulation
https://github.com/sachinmunasinghe/FirebaseRealtime
https://github.com/kevinlutzer/Arduino-PM1006K/
https://github.com/oggysaud245/haversine
https://github.com/GyverLibs/GyverShift
https://github.com/GyverLibs/GSON
https://github.com/GyverLibs/StringUtils
https://github.com/GyverLibs/GyverSegment
https://github.com/GyverLibs/GyverIO
https://github.com/GyverLibs/Pairs
https://github.com/GyverLibs/Stamp
https://github.com/GyverLibs/GyverBeeper
https://github.com/GyverLibs/GyverBlinker
https://github.com/JayasinghePasan/Honeywell_SPI_FMA
https://github.com/usk-johnny-s/UTF8_Print_AdaGfx
https://github.com/Xylopyrographer/XP_Button
https://github.com/arduino-libraries/Arduino_UnifiedStorage
https://github.com/KOEGlike/AsyncButton
https://github.com/philsilvers/mergCBUS
https://github.com/arduino-libraries/Arduino_POSIXStorage
https://github.com/mjdonders/CST816_TouchLib
https://github.com/Makeblock-official/Makeblock-Libraries
https://github.com/OkbaO/KS0108_LCD
https://github.com/OkbaO/ST7565_LCD
https://github.com/sparkfun/SparkFun_TMAG5273_Arduino_Library/
https://github.com/yasir-shahzad/AM4096
https://github.com/Victor-Kalenda/LoRa_Library
https://github.com/Xylopyrographer/BooleanButton
https://github.com/holgerlembke/ESPFMfGK
https://github.com/yasir-shahzad/SoftI2C
https://github.com/tedtoal/Button_TT
https://github.com/geekblemaker/Geekble_note2freq
https://github.com/Reefwing-Software/Reefwing-PWM
https://github.com/hen1227/bluetooth-serial
https://github.com/misaproyectil/digitalIO
https://github.com/misaproyectil/GD3300
https://github.com/misaproyectil/Sprite_Serial_Control
https://github.com/SndrSchnklshk/HDC302x
https://github.com/SndrSchnklshk/TMP6x
https://github.com/kaiaai/micro_ros_arduino_kaiaai
https://github.com/MrYsLab/Telemetrix4UnoR4
https://github.com/Reefwing-Software/Reefwing-MPU6050
https://github.com/Obsttube/CryptoAES_CBC
https://github.com/Obsttube/AES_CMAC
https://github.com/Obsttube/MFRC522_NTAG424DNA
https://github.com/tech-box-io/TB_TFT_eSPI
https://github.com/nfc-rfid-reader-sdk/MFRC522_PN512
https://github.com/andrewhe-princeton/Iridium-GPP
https://github.com/DIGI-EDGE/DPE-TRAM-GEN
https://github.com/Dhruvacube/7-Segment
https://github.com/ress997/TinyGPSPlusPlus
https://github.com/1NCE-GmbH/blueprint_arduino
https://github.com/tedtoal/XPT2046_Touchscreen_TT
https://github.com/govorox/SSLClient
https://github.com/tedtoal/wiring_analog_SAMD_TT
https://github.com/tedtoal/msToString
https://github.com/tedtoal/floatToString
https://github.com/YoupiLab/YoupiLabESP32_IOT
https://github.com/NodeppOficial/nodepp-arduino
https://github.com/AlexFigas/Didactic-Robot-Project
https://github.com/MajicDesigns/MD_HX711
https://github.com/Aquatwix/PD-10LX-Library
https://github.com/ryraki/MPL3115A2_Arduino
https://github.com/Reefwing-Software/MPU6x00
https://github.com/ryraki/NMH1000_Arduino
https://github.com/x821938/elog
https://github.com/DocBohn/CowPi
https://github.com/DocBohn/CowPi_stdio
https://github.com/KCN-judu/KCN-Utility-Arduino-lib
https://github.com/addy123d/I2CDisplayController
https://github.com/ZakKemble/LM73
https://github.com/felias-fogg/avrCalibrate
https://github.com/crunchysteve/EdgieD
https://github.com/nthnn/PortaMob
https://github.com/nthnn/SIM900
https://github.com/nthnn/microlzw
https://github.com/nthnn/TCS3200
https://github.com/nthnn/Anomalia
https://github.com/nthnn/Navigador
https://github.com/nthnn/PH4502C-Sensor
https://github.com/dhrubasaha08/SimpleUltrasonic
https://github.com/jmerc77/Fast4ier
https://github.com/AlfredoSystems/Alfredo-NoU2
https://github.com/ollprogram/SimpleShiftRegisterController
https://github.com/AlfredoSystems/AlfredoConnect-Receive
https://github.com/AsproCompany/GeneralShield
https://github.com/vindar/ILI9342_T4
https://github.com/Xylopyrographer/LiteLED
https://github.com/alexitoo00/NewEncoder
https://github.com/masaad01/SPIFFS_Shell
https://github.com/ProfTahseen/Tarmos
https://github.com/dhrubasaha08/DHT11
https://github.com/DIYables/DIYables_4Digit7Segment_74HC595
https://github.com/DIYables/DIYables_IRcontroller
https://github.com/bimac/EEPstore
https://github.com/wzwyz/CrystalC
https://github.com/wzwyz/Stringcalculater
https://github.com/ejri/Cohere_Client_Arduino
https://github.com/gemi254/ConfigAssist-ESP32-ESP8266
https://github.com/soylentOrange/DigiSpark_PWM
https://github.com/SanteriLindfors/WiFiProvisioner
https://github.com/soylentOrange/Forced-BMX280
https://github.com/vishesh-varma/DWIN
https://github.com/janikheiler/Mintrix
https://github.com/DigitalCodesign/Escornabot-Library
https://github.com/SCRN92/Sim800L
https://github.com/manuelbl/usb-pd-arduino
https://github.com/shutch42/modmata
https://github.com/sstaub/MCP_3208
https://github.com/sstaub/MCP_23017
https://github.com/Reefwing-Software/Reefwing-xIMU3
https://github.com/Reefwing-Software/Reefwing-imuTypes
https://github.com/SolderedElectronics/Soldered-8x8-MAX7219-LED-Matrix-Arduino-Library
https://github.com/imiconsystem/MicromationDevboardV3
https://github.com/2bndy5/CirquePinnacle
https://github.com/SolderedElectronics/Soldered-MQ-Gas-Sensor-Arduino-Library
https://github.com/SolderedElectronics/Soldered-OLED-Display-Arduino-Library
https://github.com/SolderedElectronics/Soldered-AS3935-Lightning-detect-Arduino-Library
https://github.com/SolderedElectronics/Soldered-ADS1015-ADS1115-ADC-Arduino-Library
https://github.com/SolderedElectronics/Soldered-Digipot-MCP4018-Arduino-Library
https://github.com/SolderedElectronics/Soldered-Hall-Effect-Sensor-Arduino-Library
https://github.com/SolderedElectronics/Soldered-TCA9548A-I2C-Multiplexer-Arduino-Library
https://github.com/SolderedElectronics/Soldered-SI114X-sensor-easyC-Arduino-Library
https://github.com/SolderedElectronics/Soldered-HX711-ADC-For-Weight-Scales-Arduino-Library
https://github.com/SolderedElectronics/Soldered-SIM7020-NB-IoT-Arduino-Library
https://github.com/SolderedElectronics/Soldered-SIM800L-GSM-Module-Arduino-Library
https://github.com/SolderedElectronics/Soldered-INA219-Current-Sensor-Arduino-Library
https://github.com/SolderedElectronics/Soldered-BQ27441-Battery-Fuel-Gauge-Arduino-Library
https://github.com/SolderedElectronics/Soldered-Digital-Light-Sensor-Arduino-Library
https://github.com/SolderedElectronics/Soldered-nRF24-Radio-Module-Arduino-Library
https://github.com/SolderedElectronics/Soldered-PMS7003-Particle-Sensor-Arduino-Library
https://github.com/SolderedElectronics/Soldered-Fingerprint-Sensor-Arduino-Library
https://github.com/SolderedElectronics/Soldered-WS2812-Smart-Leds-Arduino-Library
https://github.com/SolderedElectronics/Soldered-DAC-Breakout_MCP47A1-Arduino-Library
https://github.com/SolderedElectronics/Soldered-PCF85063A-RTC-Module-Arduino-Library
https://github.com/SolderedElectronics/Soldered-BME280-BME680-Gas-Sensor-Arduino-Library
https://github.com/SolderedElectronics/Soldered-CAN-Bus-Breakout-MCP2518-Arduino-Library
https://github.com/SolderedElectronics/Soldered-CCS811-Air-Quality-Sensor-Arduino-Library
https://github.com/Tobiyouth/WaterFlow.git
https://github.com/SolderedElectronics/Soldered-MCP23017-Port-Expander-Arduino-Library
https://github.com/SolderedElectronics/Soldered-Obstacle-Sensor-Arduino-Library
https://github.com/SolderedElectronics/Soldered-LCD-library
https://github.com/SolderedElectronics/Soldered-Ultrasonic-Sensor-easyC-Arduino-Library
https://github.com/Kaist-ICLab/KAIST_IoTDataScience
https://github.com/handmade0octopus/CursedDoubleLinkedListInterface-library
https://github.com/Reefwing-Software/Reefwing-LSM9DS1
https://github.com/sheminasalam/Esp8266-Mqtt-Canary
https://github.com/Gfy63/NE555
https://github.com/honvl/Seeed-Xiao-NRF52840-Battery
https://github.com/tony-bringardner/NetworkMonitor
https://github.com/marcobrianza/ClickButton
https://github.com/lnbits/arduino-nostr/
https://github.com/melopero/Melopero_Cookie_RP2040_Arduino_Library
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://github.com/dwinhmi/DWIN_DGUS_HMI
https://bitbucket.org/geekfactory/gfbutton
https://bitbucket.org/geekfactory/shell
https://bitbucket.org/harmonicbionics/ease_arduinocode
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/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-Servo-RP2040
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-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-Sensor
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/107-systems/107-Arduino-littlefs
https://github.com/107-systems/107-Arduino-Cyphal-Support
https://github.com/Nilon123456789/Firmetix-Library
https://github.com/1337encrypted/BTS7960_Motordriver
https://github.com/1452206376/CH9328-Keyboard
https://github.com/1IoT/cloud-connectivity-lib
https://github.com/256dpi/arduino-mqtt
https://github.com/2dom/PxMatrix
https://github.com/tort32/PxMatrix
https://github.com/4-20ma/I2cDiscreteIoExpander
https://github.com/4-20ma/ModbusMaster
https://github.com/4-20ma/i2c_adc_ads7828
https://github.com/4dsystems/Diablo16-Serial-Arduino-Library
https://github.com/4dsystems/GFX4DIoD9
https://github.com/4dsystems/GFX4d
https://github.com/4dsystems/GFX4dESP32
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/St3p40/EMFButton
https://github.com/8bitbuddhist/PixelMaestro
https://github.com/934virginia/Norman
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/HamzaYslmn/detaBaseESP8266
https://github.com/AI5GW/Baudot-Encode-Decode
https://github.com/AI5GW/CCIR476
https://github.com/AI5GW/Goertzel/
https://github.com/AIO-Javeriana/AIO-module-nodemcu-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/AJMansfield/LcdEffects
https://github.com/AJMansfield/TriacDimmer
https://github.com/AKJ7/TM1637
https://github.com/ALICHOUCHENE/MemoryDumper
https://github.com/ARSadri/PushButtonClicks
https://github.com/ARTS37/SerialMenuCmd
https://github.com/Aasim-A/AsyncTimer
https://github.com/Abdurraziq/ZMPT101B-arduino
https://github.com/Abhishektiwari7/Nokia_1.8_Inch_-Display_-SPFD54124B
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/Aduen/ThreadedTimer
https://github.com/Aerobotics-Global/Orbo
https://github.com/AeroboticsGlobalTeam/AEBO
https://github.com/AidenKunkler-Peck/Tactile-Necklace
https://github.com/Aidywady/NXTBluetooth/
https://github.com/Aircoookie/Espalexa
https://github.com/Alex079/TinySuite
https://github.com/AlexIII/EEvar
https://github.com/AlexIII/incbin-arduino
https://github.com/AlexTutorial/KrokoTS
https://github.com/AlexanderLL95/SerialUtil
https://github.com/AlexandreHiroyuki/MovingAveragePlus
https://github.com/alkonosst/SSLClientESP32
https://github.com/alkonosst/SettingsManagerESP32.git
https://github.com/AllWize/allwize
https://github.com/AllWize/mbus-payload
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/XLR8DMem
https://github.com/AloriumTechnology/XLR8DigitalIO
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/XLR8PWM
https://github.com/AloriumTechnology/XLR8Pong
https://github.com/AloriumTechnology/XLR8Quadrature
https://github.com/AloriumTechnology/XLR8RC
https://github.com/AloriumTechnology/XLR8SPI
https://github.com/AloriumTechnology/XLR8Servo
https://github.com/AloriumTechnology/XLR8USB
https://github.com/AloriumTechnology/XLR8Wire
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/AlpenglowInd/BigNums2x2
https://github.com/AlpenglowInd/FUnicorn
https://github.com/AmbientDataInc/Ambient_ESP8266_lib
https://github.com/An7orAhmed/ADCButtons
https://github.com/An7orAhmed/LettersKeypad
https://github.com/An7orAhmed/LiquidCrystalSerial
https://github.com/An7orAhmed/MAX7219Segment
https://github.com/AndreaLombardo/L298N
https://github.com/AndresDuran53/zarus-network-controller
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/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/AntoIOT/anto-esp8266-arduino
https://github.com/AntonioPrevitali/DueAdcFast
https://github.com/AnyLeaf/ph-cpp
https://github.com/Open-Agriculture/AgIsoStack-Arduino
https://github.com/Apollon77/I2CSoilMoistureSensor
https://github.com/ArchontisKostis/SimpleComponents
https://github.com/ArduCAM/Arducam_Mega
https://github.com/ArduCAM/Arducam_mini
https://github.com/ArduCAM/Arducam_dvp
https://github.com/Arduboy/Arduboy
https://github.com/Arduboy/ArduboyPlaytune
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
https://github.com/ArduinoShop/Seg7
https://github.com/Arekushi/Finite-State-Machine-Arduino
https://github.com/ArkEcosystem/cpp-client
https://github.com/ArkEcosystem/cpp-crypto
https://github.com/ArmDeveloperEcosystem/DA16200-WiFi-Library-for-Arduino
https://github.com/ArminJo/ATtinySerialOut
https://github.com/ArminJo/Arduino-BlueDisplay
https://github.com/ArminJo/Arduino-FrequencyDetector
https://github.com/ArminJo/AvrTracing
https://github.com/ArminJo/EasyButtonAtInt01
https://github.com/ArminJo/LCDBigNumbers
https://github.com/ArminJo/NeoPatterns
https://github.com/ArminJo/PWMMotorControl
https://github.com/ArminJo/PlayRtttl
https://github.com/ArminJo/ServoEasing
https://github.com/ArminJo/Talkie
https://github.com/ArminJo/digitalWriteFast
https://github.com/ArsaLearn/Arsa-Main
https://github.com/ArtronShop/ArtronShop_SHT45
https://github.com/ArtronShop/Artron_DS1338
https://github.com/ArtronShop/IOXESP32Motor
https://github.com/ArtronShop/KidMotorV4-Arduino
https://github.com/ArtronShop/easyConfig
https://github.com/AshleyF/BriefEmbedded
https://github.com/Asyasyarif/RFID-Spacecat
https://github.com/Atzingen/controleForno
https://github.com/Augmented-Robotics/roboheart-arduino-library
https://github.com/Avamander/arduino-tvout
https://github.com/Aypac/Arduino-TR-064-SOAP-Library
https://github.com/Azure/azure-sdk-for-c-arduino
https://github.com/BCISOFT/OvhAPI
https://github.com/BEAT-System/SerialCom
https://github.com/BadASszZ/IoTWebConf_for_Visuino_modified_by_IoT_Jedi
https://github.com/BalmIot/BalmIot
https://github.com/Bananut-Electronics/MiDispositivoMIDI_V3
https://github.com/Basirk/I2CHelper
https://github.com/BeanieBob/GY26Compass
https://github.com/Beirdo/Arduino-FRAM-Cache
https://github.com/Beirdo/Arduino-LIN
https://github.com/Beirdo/Arduino-LM96163
https://github.com/Beirdo/Arduino-MultiWire
https://github.com/Beirdo/Arduino-PCA9536
https://github.com/Beirdo/Arduino-TCA9534
https://github.com/BelaPlatform/Trill-Arduino
https://github.com/BertanT/Arduino-RGBWConverter
https://github.com/Bexin3/GigaScope
https://github.com/Bexin3/STMSpeeduino
https://github.com/Bexin3/Snowduino
https://github.com/Bexin3/Speeduino
https://github.com/BinaryBearzz/JoyStickModule
https://github.com/BitsAndDroids/BitsAndDroidsFlightSimLibrary
https://github.com/BlaT2512/Segment
https://github.com/BlaT2512/sevenSegment
https://github.com/BlokasLabs/USBMIDI
https://github.com/BlueAndi/vscp-arduino
https://github.com/BlueDot-Arduino/BlueDot_BMA400
https://github.com/BlueDot-Arduino/BlueDot_BME280
https://github.com/BlueDot-Arduino/BlueDot_BME280_TSL2591
https://github.com/Bobingstern/MicroFlow
https://github.com/Bodmer/JPEGDecoder
https://github.com/Bodmer/OpenWeather
https://github.com/Bodmer/TFT_eSPI
https://github.com/Bodmer/TFT_eWidget
https://github.com/Bodmer/TJpg_Decoder
https://github.com/BoodskapPlatform/BoodskapTransceiver
https://github.com/BoschSensortec/BSEC-Arduino-library
https://github.com/BoschSensortec/Bosch-BME68x-Library
https://github.com/Botly-Studio/Botly-Library
https://github.com/BrandeisMakerLab/Arduino_Education
https://github.com/BrandeisMakerLab/Zumo-Automation
https://github.com/BreadBoardMates/Arduino-Mates-Controller
https://github.com/BrinoOficial/BibliotecaBrino
https://github.com/BriscoeTech/Arduino-FreeRTOS-SAMD21
https://github.com/BriscoeTech/Arduino-FreeRTOS-SAMD51
https://github.com/BroadwellConsultingInc/SerialWombatArdLib
https://github.com/BrushlessPower/SBUS2-Telemetry
https://github.com/CAFxX/gmp-ino
https://github.com/CGrassin/M62429_Arduino_Library
https://github.com/CMB27/ModbusRTUSlave
https://github.com/CMakerA/ESP_LM35
https://github.com/CNMAT/OSC
https://github.com/CONTROLLINO-PLC/CONTROLLINO_Library
https://github.com/Call-for-Code/ClusterDuck-Protocol
https://github.com/CalvinBultz/LightningStepper
https://github.com/CanSatKit/CanSatKitLibrary
https://github.com/CasaJasmina/TelegramBot-Library
https://github.com/CelliesProjects/ESP32_VS1053_Stream
https://github.com/CelliesProjects/moonPhase-esp32
https://github.com/CelliesProjects/wm8978-esp32
https://github.com/Cheong2K/ble-sdk-arduino
https://github.com/ChicagoRobotics/CRC_Simula_Library
https://github.com/ChicagoRobotics/CRC_VCNL4200
https://github.com/ChipTechno/ESP8266OTA
https://github.com/ChipTechno/WiFiMan
https://github.com/Chris--A/ArdOSC
https://github.com/Chris--A/BitBool
https://github.com/Chris--A/EEWrap
https://github.com/Chris--A/Keypad
https://github.com/Chris--A/PGMWrap
https://github.com/Chris--A/PrintEx
https://github.com/Chris--A/SmallSetup
https://github.com/ChrisDinhNZ/SMoS-cpp
https://github.com/ChuckBell/MySQL_Connector_Arduino
https://github.com/CieNTi/arduino-IoTesla-client
https://github.com/CircuitMess/CircuitMess-Ringo
https://github.com/CircuitsFun/CircuitsFunBasic-Library-for-Arduino
https://github.com/CircuitsFun/CircuitsFunProjects-Library-for-Arduino
https://github.com/ClayXrex/Arduino-StepperMotor
https://github.com/ClemensAtElektor/Nano_Every_WS2812B
https://github.com/Coder-X15/MCUOS.git
https://github.com/CommonWealthRobotics/BowlerCom
https://github.com/ConnorKirkpatrick/E220Lib
https://github.com/Controllino/ControllinoLibrary
https://github.com/CreativeRobotics/Commander
https://github.com/CsCrazy85/DatavisionLCD
https://github.com/CsCrazy85/SCA100T
https://github.com/CuriosityGym/MotorDriver
https://github.com/CyberonEBU/Cyberon_DSpotterSDK_Maker_33BLE
https://github.com/CyberonEBU/Cyberon_DSpotterSDK_Maker_PortentaH7
https://github.com/CyberonEBU/Cyberon_DSpotterSDK_Maker_RP2040
https://github.com/CyberonEBU/Cyberon_DSpotterSDK_Maker_NiclaVision
https://github.com/CytronTechnologies/Cytron-G15Shield
https://github.com/CytronTechnologies/CytronMakerSumo
https://github.com/CytronTechnologies/CytronMotorDriver
https://github.com/CytronTechnologies/CytronWiFiShield
https://github.com/CytronTechnologies/Cytron_MP3Shield
https://github.com/CytronTechnologies/Cytron_Servo_Shield_Library
https://github.com/CytronTechnologies/Cytron_Shield3AMotor
https://github.com/DBS06/CERP_DF_Robot_Wireless_GamePad_V2
https://github.com/DBSStore/DBS_Lib
https://github.com/DFRobot/DFRobotDFPlayerMini
https://github.com/DFRobot/DFRobotIRPosition
https://github.com/DFRobot/DFRobot_AD9837
https://github.com/DFRobot/DFRobot_ADS1115
https://github.com/DFRobot/DFRobot_ADXL345
https://github.com/DFRobot/DFRobot_AHT20
https://github.com/DFRobot/DFRobot_AS3935
https://github.com/DFRobot/DFRobot_AS7341
https://github.com/DFRobot/DFRobot_ASR
https://github.com/DFRobot/DFRobot_AirQualitySensor
https://github.com/DFRobot/DFRobot_Alcohol
https://github.com/DFRobot/DFRobot_BC20_Gravity
https://github.com/DFRobot/DFRobot_BME280
https://github.com/DFRobot/DFRobot_BME680
https://github.com/DFRobot/DFRobot_BMI160
https://github.com/DFRobot/DFRobot_BMM150
https://github.com/DFRobot/DFRobot_BMP280
https://github.com/DFRobot/DFRobot_BMP3XX
https://github.com/DFRobot/DFRobot_BMX160
https://github.com/DFRobot/DFRobot_BT401
https://github.com/DFRobot/DFRobot_B_LUX_V30B
https://github.com/DFRobot/DFRobot_BloodOxygen_S
https://github.com/DFRobot/DFRobot_CCS811
https://github.com/DFRobot/DFRobot_CH423
https://github.com/DFRobot/DFRobot_DF1101S
https://github.com/DFRobot/DFRobot_DF1201S
https://github.com/DFRobot/DFRobot_DF2301Q
https://github.com/DFRobot/DFRobot_DHT11
https://github.com/DFRobot/DFRobot_DHT20
https://github.com/DFRobot/DFRobot_DS1307
https://github.com/DFRobot/DFRobot_DS323X
https://github.com/DFRobot/DFRobot_DigitalPot
https://github.com/DFRobot/DFRobot_EC10
https://github.com/DFRobot/DFRobot_ENS160
https://github.com/DFRobot/DFRobot_EOxygenSensor
https://github.com/DFRobot/DFRobot_EnvironmentalSensor
https://github.com/DFRobot/DFRobot_FreeTenIMU
https://github.com/DFRobot/DFRobot_GM60
https://github.com/DFRobot/DFRobot_GNSS
https://github.com/DFRobot/DFRobot_GP8302
https://github.com/DFRobot/DFRobot_GP8403
https://github.com/DFRobot/DFRobot_GP8XXX
https://github.com/DFRobot/DFRobot_Gesture_Touch
https://github.com/DFRobot/DFRobot_HX711
https://github.com/DFRobot/DFRobot_HX711_I2C
https://github.com/DFRobot/DFRobot_Heartrate
https://github.com/DFRobot/DFRobot_I2C_Multiplexer
https://github.com/DFRobot/DFRobot_ICG20660L
https://github.com/DFRobot/DFRobot_ICP10111
https://github.com/DFRobot/DFRobot_ID809_I2C
https://github.com/DFRobot/DFRobot_IICSerial
https://github.com/DFRobot/DFRobot_IIS
https://github.com/DFRobot/DFRobot_INA219
https://github.com/DFRobot/DFRobot_ITG3200
https://github.com/DFRobot/DFRobot_LIDAR07
https://github.com/DFRobot/DFRobot_LIS
https://github.com/DFRobot/DFRobot_LPUPS
https://github.com/DFRobot/DFRobot_LSM303
https://github.com/DFRobot/DFRobot_LWLP
https://github.com/DFRobot/DFRobot_LcdDisplay
https://github.com/DFRobot/DFRobot_LedDisplayModule
https://github.com/DFRobot/DFRobot_Lora
https://github.com/DFRobot/DFRobot_MAX17043
https://github.com/DFRobot/DFRobot_MAX31855
https://github.com/DFRobot/DFRobot_MAX98357A
https://github.com/DFRobot/DFRobot_MCP23017
https://github.com/DFRobot/DFRobot_MCP2515
https://github.com/DFRobot/DFRobot_MCP4725
https://github.com/DFRobot/DFRobot_MCP9808
https://github.com/DFRobot/DFRobot_MGC3130
https://github.com/DFRobot/DFRobot_MLX90614
https://github.com/DFRobot/DFRobot_MPX5700
https://github.com/DFRobot/DFRobot_Maqueenplus
https://github.com/DFRobot/DFRobot_MotorStepper
https://github.com/DFRobot/DFRobot_OLED12864
https://github.com/DFRobot/DFRobot_OSD
https://github.com/DFRobot/DFRobot_OxygenSensor
https://github.com/DFRobot/DFRobot_PAJ7620U2
https://github.com/DFRobot/DFRobot_PH
https://github.com/DFRobot/DFRobot_PN532
https://github.com/DFRobot/DFRobot_QMC5883
https://github.com/DFRobot/DFRobot_RainfallSensor
https://github.com/DFRobot/DFRobot_RGBButton
https://github.com/DFRobot/DFRobot_RGBLCD1602
https://github.com/DFRobot/DFRobot_RGBMatrix
https://github.com/DFRobot/DFRobot_RP2040_SCI
https://github.com/DFRobot/DFRobot_RS01
https://github.com/DFRobot/DFRobot_RTU
https://github.com/DFRobot/DFRobot_SCD4X
https://github.com/DFRobot/DFRobot_SGP40
https://github.com/DFRobot/DFRobot_SHT
https://github.com/DFRobot/DFRobot_SHT20
https://github.com/DFRobot/DFRobot_SIM
https://github.com/DFRobot/DFRobot_SIM7000
https://github.com/DFRobot/DFRobot_SIM808
https://github.com/DFRobot/DFRobot_ST7687S
https://github.com/DFRobot/DFRobot_STS3X
https://github.com/DFRobot/DFRobot_SU03T
https://github.com/DFRobot/DFRobot_SerialScreen771
https://github.com/DFRobot/DFRobot_SpeechSynthesis
https://github.com/DFRobot/DFRobot_TCS3430
https://github.com/DFRobot/DFRobot_TCS34725
https://github.com/DFRobot/DFRobot_TMF8x01
https://github.com/DFRobot/DFRobot_URM07
https://github.com/DFRobot/DFRobot_URM09
https://github.com/DFRobot/DFRobot_URM13
https://github.com/DFRobot/DFRobot_VEML6075
https://github.com/DFRobot/DFRobot_VEML7700
https://github.com/DFRobot/DFRobot_VL53L0X
https://github.com/DFRobot/DFRobot_VL6180X
https://github.com/DFRobot/DFRobot_VisualRotaryEncoder
https://github.com/DFRobot/DFRobot_VoiceRecorder
https://github.com/DIYODEmag/DIYsplay
https://github.com/DLE-Dev/OttoArduinoLib
https://github.com/DaAwesomeP/arduino-cardinal
https://github.com/DaAwesomeP/dmxusb
https://github.com/Dafulai/DFL168A-Sync-Library
https://github.com/Dafulai/DFL168A_Async
https://github.com/DaleGia/ESPFlash
https://github.com/DaleGia/ESPStringTemplate
https://github.com/DaleGia/Nano33BLESensor
https://github.com/DanForever/DF-Print
https://github.com/DanNixon/ArduinoUniversalInput
https://github.com/DanNixon/NeoNextion
https://github.com/DaniFoldi/Async_Operations
https://github.com/DanielSaromo/PyDuinoBridge
https://github.com/Danny24/Smart-Motor-Driver-SAMI-Library
https://github.com/DarkDust/MHGroveBLE
https://github.com/DatavenueLiveObjects/LiveObjects_SDK_for_Arduino
https://github.com/DavidArmstrong/SCL3300
https://github.com/DavidArmstrong/SiderealPlanets
https://github.com/DavidArmstrong/WMM_Tinier
https://github.com/Davideddu/APDS9930
https://github.com/DeanIsMe/SevSeg
https://github.com/DedeHai/NeoPixelPainter
https://github.com/DefProc/lewis
https://github.com/DefProc/somo-ii-lib
https://github.com/Dennis-van-Gils/DvG_StreamCommand
https://github.com/Dennis-van-Gils/MIKROE_4_20mA_RT_Click
https://github.com/Densaugeo/base64_arduino
https://github.com/DenysChuhlib/PGMTools
https://github.com/DenysChuhlib/7Segment
https://github.com/DenysChuhlib/NTPtime
https://github.com/DhrBaksteen/ArduinoOPL2
https://github.com/DhrBaksteen/ArduinoPianoBoard
https://github.com/DimensionEngineering/Kangaroo_Arduino_Library
https://github.com/DimitriGilbert/RGBProgress
https://github.com/DinuraPasan/DOC_CAT/
https://github.com/Dirk-/NanoBLEFlashPrefs
https://github.com/DjamesSuhanko/EasyColor
https://github.com/DjamesSuhanko/EasyPCF8574
https://github.com/DjamesSuhanko/EasyPCF8575
https://github.com/DjamesSuhanko/bbPrinter
https://github.com/Dlloydev/ESP32-ESP32S2-AnalogWrite
https://github.com/Dlloydev/QuickPID
https://github.com/Dlloydev/Toggle
https://github.com/Dlloydev/sTune
https://github.com/DmytroKorniienko/EmbUI
https://github.com/DoImant/Button_SL.git
https://github.com/DonnyCraft1/PIDArduino
https://github.com/DrGFreeman/SharpDistSensor
https://github.com/DrGFreeman/TimedPID
https://github.com/DrGamerGuy/GLCD
https://github.com/Duckle29/HUSB238
https://github.com/DuinoDNS/ddns-arduino-nightly-releases
https://github.com/E-Lagori/ELi_McM_4_00
https://github.com/E-Lagori/ELi_MdM_4_00
https://github.com/EFWob/ESPPubSubClientWrapper
https://github.com/ERNICommunity/dbg-trace
https://github.com/ERNICommunity/debug-cli
https://github.com/ERROPiX/ESP32_AnalogWrite
https://github.com/ES-factory/DigiCombo
https://github.com/ESDeveloperBR/AnalogKeyboard.git
https://github.com/ESDeveloperBR/ES32Lab
https://github.com/ESDeveloperBR/TFT_eSPI_ES32Lab
https://github.com/ESDeveloperBR/TimeInterval
https://github.com/ESikich/RGBLEDBlender
https://github.com/ETLCPP/etl-arduino
https://github.com/DarkWizarD24/fmt-arduino
https://github.com/EasyG0ing1/BlockNot
https://github.com/EasyG0ing1/SimpleEncoder
https://github.com/EasyIoT-BR/Easyiot-Esp8266
https://github.com/EdanPotter/end-device-radioenge
https://github.com/EdgeiLAB/libedge
https://github.com/Edinburgh-College-of-Art/DesignInformaticsPCB
https://github.com/EinarArnason/ArduinoQueue
https://github.com/Electro707/Simple-LED-Matrix-Library
https://github.com/ElectroMagus/ESP32MX1508
https://github.com/ElectronicCats/AqualaboSensorsLibrary
https://github.com/ElectronicCats/Beelan-LoRaWAN
https://github.com/ElectronicCats/CayenneLPP
https://github.com/ElectronicCats/ElectronicCats-PN7150
https://github.com/ElectronicCats/ElectronicCats_InternalTemperatureZero
https://github.com/ElectronicCats/mpu6050
https://github.com/EmbedUI/EmbedUI-Library
https://github.com/EmberGL-org/EmberGL.git
https://github.com/EmotiBit/BMI160-Arduino
https://github.com/EmotiBit/EmotiBit_ADS1X15
https://github.com/EmotiBit/EmotiBit_EmojiLib
https://github.com/EmotiBit/EmotiBit_External_EEPROM
https://github.com/EmotiBit/EmotiBit_FW_FeatherWing
https://github.com/EmotiBit/EmotiBit_FW_Si7013
https://github.com/EmotiBit/EmotiBit_MAX30101
https://github.com/EmotiBit/EmotiBit_MLX90632
https://github.com/EmotiBit/EmotiBit_NCP5623
https://github.com/fyrus7/RTC3231
https://github.com/EmotiBit/EmotiBit_XPlat_Utils
https://github.com/EndlessParadox7/GFX_Thaana
https://github.com/Energesis-Ingenieria/Energesis_LM35
https://github.com/Energesis-Ingenieria/Energesis_Sensor
https://github.com/EngineeringRoom/Engineer_EasyEEPROM
https://github.com/EngineeringRoom/Engineer_Regulator
https://github.com/engin100/980
https://github.com/engin100/950
https://github.com/EnhancedRadioDevices/DDS
https://github.com/EnhancedRadioDevices/HamShield
https://github.com/EnhancedRadioDevices/HamShield_KISS
https://github.com/EnviroDIY/Arduino-SDI-12
https://github.com/EnviroDIY/KellerModbus
https://github.com/EnviroDIY/SensorModbusMaster
https://github.com/EnviroDIY/Sodaq_DS3231
https://github.com/EnviroDIY/YosemitechModbus
https://github.com/EnviroDIY/GroPointModbus
https://github.com/Erhan-MADE/StepperControl
https://github.com/EricAndrechek/TinyGPSMinus
https://github.com/ErickSimoes/Ultrasonic
https://github.com/EscaVic/ROKduino
https://github.com/EscapeAutomate/ArduinoLib
https://github.com/Excelsior-Robotics/Excelsior
https://github.com/Excelsior-Robotics/Excelsior_Light
https://github.com/Excelsior-Robotics/Excelsior_Ambassador
https://github.com/ExperimentalCyborg/PicoStep
https://github.com/F4GOJ/AD9850SPI
https://github.com/FANTM/libdevlpr
https://github.com/FPGAArcade/replay_mkrvidor4000
https://github.com/FTTechBrasil/AqualaboSensor
https://github.com/FTTechBrasil/FTTech-LoRaWAN
https://github.com/FTTechBrasil/FTTech_SAMD51_Clicks
https://github.com/FTTechBrasil/FTTech_Swarm
https://github.com/FTTechBrasil/FTTech_XBee
https://github.com/FaBoPlatform/FaBo3Axis-ADXL345-Library
https://github.com/FaBoPlatform/FaBo7Seg-TLC59208-Library
https://github.com/FaBoPlatform/FaBo9AXIS-MPU9250-Library
https://github.com/FaBoPlatform/FaBoAmbientLight-ISL29034-Library
https://github.com/FaBoPlatform/FaBoBLE-BLE113-Library
https://github.com/FaBoPlatform/FaBoBLE-Nordic-Library
https://github.com/FaBoPlatform/FaBoBarometer-MPL115-Library
https://github.com/FaBoPlatform/FaBoColor-BH1749NUC-Library
https://github.com/FaBoPlatform/FaBoColor-s11059-Library
https://github.com/FaBoPlatform/FaBoEnvironment-BME680-Library
https://github.com/FaBoPlatform/FaBoGPIO-PCAL6408-Library
https://github.com/FaBoPlatform/FaBoGPIO40-PCA9698-Library
https://github.com/FaBoPlatform/FaBoGas-CCS811-Library
https://github.com/FaBoPlatform/FaBoHumidity-HTS221-Library
https://github.com/FaBoPlatform/FaBoKTemp-MCP3421-Library
https://github.com/FaBoPlatform/FaBoLCD-PCF8574-Library
https://github.com/FaBoPlatform/FaBoLCDmini-AQM0802A-Library
https://github.com/FaBoPlatform/FaBoMotor-DRV8830-Library
https://github.com/FaBoPlatform/FaBoOLED-EROLED096-Library
https://github.com/FaBoPlatform/FaBoPWM-PCA9685-Library
https://github.com/FaBoPlatform/FaBoProximity-VCNL4010-Library
https://github.com/FaBoPlatform/FaBoRTC-PCF2129-Library
https://github.com/FaBoPlatform/FaBoTemperature-ADT7410-Library
https://github.com/FaBoPlatform/FaBoUV-Si1132-Library
https://github.com/Falcons21/Custom_PID
https://github.com/Falcons21/FSerial
https://github.com/Falven/ad-oprintstream
https://github.com/FancyFoxGems/HalfStepper
https://github.com/FancyFoxGems/IttyBitty
https://github.com/FastLED/FastLED
https://github.com/Fastcomm/hellothing_NBIoT_Arduino_Shield
https://github.com/FatBeard/vbus-arduino-library
https://github.com/FeralAI/MPG/
https://github.com/FirstBuild/Relay
https://github.com/Flinduino/Flinders_ENGR2781
https://github.com/Flinduino/Flinduino_SensorKit
https://github.com/Floessie/frt
https://github.com/Flowduino/LithiumPowered
https://github.com/FortySevenEffects/arduino_midi_library
https://github.com/FortySevenEffects/serde
https://github.com/Foxdogface/arduino-VEML6070
https://github.com/Francis-Magallanes/CircularQueue
https://github.com/FrankBoesing/FastCRC
https://github.com/Franzininho/Franzininho_LiquidCrystal
https://github.com/Fraunhofer-IMS/AIfES_for_Arduino
https://github.com/Fredi/ArduinoIRC
https://github.com/Freenove/Freenove_VK16K33_Lib
https://github.com/Freenove/Freenove_WS2812B_RGBLED_Controller
https://github.com/Freenove/Freenove_WS2812_Lib_for_ESP32
https://github.com/Fuzzer11/SDconfig
https://github.com/FuzzyNoodle/Fuzzy-Spooder
https://github.com/GGorAA/MorsDuino
https://github.com/GLEE2023/Beelan-LoRaWAN
https://github.com/GLEE2023/GLEE2023
https://github.com/GO01260/uMT
https://github.com/GTO2013/EMUSerial
https://github.com/GabrielNotman/RTCCounter
https://github.com/GabrielNotman/cryptoauthlib
https://github.com/GadgetFactory/Gadget-Box
https://github.com/Gamadril/DD-Booster-Library
https://github.com/Gamebuino/Gamebuino-Classic
https://github.com/Gamebuino/Gamebuino-Meta
https://github.com/Gbertaz/JDI_MIP_Display
https://github.com/Gbertaz/NonBlockingDallas
https://github.com/Geabong/ModbusRTUSlaveArduino
https://github.com/Gemelon/Pushbutton
https://github.com/GerLech/AsyncWebConfig
https://github.com/GerLech/LG_Matrix_Print
https://github.com/GerLech/Talking_Display
https://github.com/GerLech/TouchEvent
https://github.com/GerLech/WebConfig
https://github.com/GewoonGijs/VID28
https://github.com/Gfy63/ParseCommands.git
https://github.com/Gibartes/uCOS-II_Arduino
https://github.com/GiorgioAresu/FanController
https://github.com/GiorgosXou/NeuralNetworks
https://github.com/Gjorgjevikj/SmoothProgress
https://github.com/Glinnes/NMEAParser
https://github.com/GoWired/GoWired-lib
https://github.com/Goji2100/ESP32softPWM
https://github.com/GoogleCloudPlatform/google-cloud-iot-arduino
https://github.com/GordonRudman/ExampleArduinoLibrary
https://github.com/GreenPonik/DFRobot_ESP_EC_BY_GREENPONIK
https://github.com/GreenPonik/DFRobot_ESP_PH_WITH_ADC_BY_GREENPONIK
https://github.com/GreyGnome/EnableInterrupt
https://github.com/Grrtzm/MicrobitV2-HHS
https://github.com/Gruppio/Throttle
https://github.com/GurtDotCom/GKScroll
https://github.com/Guswib/Potentiostat_Shield/
https://github.com/GypsyRobot/CuteBuzzerSounds
https://github.com/GypsyRobot/Formulinha
https://github.com/GypsyRobot/MusicBuzzer
https://github.com/GyverLibs/FileData
https://github.com/GyverLibs/AccelMotor
https://github.com/GyverLibs/AnalogKey
https://github.com/GyverLibs/Approxy
https://github.com/GyverLibs/AsyncStream
https://github.com/GyverLibs/BitPack
https://github.com/GyverLibs/CRT
https://github.com/GyverLibs/CharDisplay
https://github.com/GyverLibs/Clap
https://github.com/GyverLibs/EEManager
https://github.com/GyverLibs/EncButton
https://github.com/GyverLibs/FFT_C
https://github.com/GyverLibs/FastBot
https://github.com/GyverLibs/Forecaster
https://github.com/GyverLibs/GParser
https://github.com/GyverLibs/GRGB
https://github.com/GyverLibs/Gyver433
https://github.com/GyverLibs/GyverBME280
https://github.com/GyverLibs/GyverBus
https://github.com/GyverLibs/GyverButton
https://github.com/GyverLibs/GyverDimmer
https://github.com/GyverLibs/GyverEncoder
https://github.com/GyverLibs/GyverFIFO
https://github.com/GyverLibs/GyverFilters
https://github.com/GyverLibs/GyverGFX
https://github.com/GyverLibs/GyverHC595
https://github.com/GyverLibs/GyverHTU21D
https://github.com/GyverLibs/GyverHX711
https://github.com/GyverLibs/GyverINA
https://github.com/GyverLibs/GyverJoy
https://github.com/GyverLibs/GyverLBUF
https://github.com/GyverLibs/GyverMAX6675
https://github.com/GyverLibs/GyverMAX7219
https://github.com/GyverLibs/GyverMotor
https://github.com/GyverLibs/GyverNTC
https://github.com/GyverLibs/GyverNTP
https://github.com/GyverLibs/GyverOLED
https://github.com/GyverLibs/GyverOS
https://github.com/GyverLibs/GyverPID
https://github.com/GyverLibs/GyverPWM
https://github.com/GyverLibs/GyverPortal
https://github.com/GyverLibs/GyverPower
https://github.com/GyverLibs/GyverRelay
https://github.com/GyverLibs/GyverStepper
https://github.com/GyverLibs/GyverTM1637
https://github.com/GyverLibs/GyverTimer
https://github.com/GyverLibs/GyverTimers
https://github.com/GyverLibs/GyverTransfer
https://github.com/GyverLibs/GyverUART
https://github.com/GyverLibs/GyverWDT
https://github.com/GyverLibs/Hamming
https://github.com/GyverLibs/MicroUART
https://github.com/GyverLibs/NecDecoder
https://github.com/GyverLibs/OVS
https://github.com/GyverLibs/PWMrelay
https://github.com/GyverLibs/Psychrometer
https://github.com/GyverLibs/QuickCharge
https://github.com/GyverLibs/Random16
https://github.com/GyverLibs/ServoSmooth
https://github.com/GyverLibs/SevenSegmentsDisp
https://github.com/GyverLibs/SimplePortal
https://github.com/GyverLibs/SoftServo
https://github.com/GyverLibs/SunPosition
https://github.com/GyverLibs/Tachometer
https://github.com/GyverLibs/TimeRandom
https://github.com/GyverLibs/TimerMs
https://github.com/GyverLibs/UnixTime
https://github.com/GyverLibs/VirtualButton
https://github.com/GyverLibs/VolAnalyzer
https://github.com/GyverLibs/buildTime
https://github.com/GyverLibs/directADC
https://github.com/GyverLibs/directTimers
https://github.com/GyverLibs/fixed
https://github.com/GyverLibs/mString
https://github.com/GyverLibs/microDS18B20
https://github.com/GyverLibs/microDS3231
https://github.com/GyverLibs/microLED
https://github.com/GyverLibs/microWire
https://github.com/Crazy-Max-Blog/Crazy_IoTik
https://github.com/Crazy-Max-Blog/CrazyHC595
https://github.com/H-Kurosaki/UARDECS
https://github.com/H-Kurosaki/UARDECS_MEGA
https://github.com/HNRobotica/LineTracker5
https://github.com/HackerInside0/Arduino_SoftwareReset
https://github.com/HackerInside0/Arduino_sevenSegmentDisplay
https://github.com/HackerInside0/L293
https://github.com/HackerInside0/SharpIR
https://github.com/HakkanR/DMD2TUR
https://github.com/HakkanR/SSD1306TUR
https://github.com/HakkanR/slowAES
https://github.com/Hardi-St/MobaLedLib
https://github.com/Harvie/RotaryDial
https://github.com/HelTecAutomation/Heltec_ESP32
https://github.com/HelTecAutomation/Heltec_ESP8266
https://github.com/HendrikVE/Arduino-DFR0554
https://github.com/HendrikVE/Arduino-LiquidCrystalWired
https://github.com/HendrikVE/Arduino-PCA9633