forked from arduino/library-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
repositories.txt
5801 lines (5801 loc) · 260 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/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-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/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/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/80Stepko08/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/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/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/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/Apollon77/I2CSoilMoistureSensor
https://github.com/ArchontisKostis/SimpleComponents
https://github.com/ArduCAM/Arducam_Mega
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/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/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_GP8302
https://github.com/DFRobot/DFRobot_GP8403
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_LSM303
https://github.com/DFRobot/DFRobot_LWLP
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_RGBButton
https://github.com/DFRobot/DFRobot_RGBLCD1602
https://github.com/DFRobot/DFRobot_RGBMatrix
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/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/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/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/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/Erhan-MADE/StepperControl
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/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/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/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
https://github.com/HerrNamenlos123/JTAG_Interface
https://github.com/HexFab/HexFabQuadroMotorShield
https://github.com/HidWizards/UCR-ESP8266
https://github.com/Hieromon/AutoConnect
https://github.com/Hieromon/PageBuilder
https://github.com/Hiroshi-Sugimura/EL_dev_arduino
https://github.com/Hobietime/RF24G
https://github.com/HomeControlAS/homecontrol-mqtt
https://github.com/HomeDing/HomeDing
https://github.com/HomeSpan/HomeSpan
https://github.com/HuangYuTse/GM1602lib
https://github.com/HullabalooRobotics/Hyperduino-Library
https://github.com/HullabalooRobotics/Soldering-Machine
https://github.com/IGB-Germany/ComDriverSpi
https://github.com/IGB-Germany/IGB-FlashSst26
https://github.com/IGB-Germany/IGB-Tactile-Switch
https://github.com/INFICON-Spot/inficon-spot-lib
https://github.com/Iainmon/altino
https://github.com/IharYakimush/arduino-temperature-control-events
https://github.com/ImpulseAdventure/GUIslice
https://github.com/ImpulseAdventure/Waveshare_ILI9486
https://github.com/IncroyablePix/DigiKeyboardBe
https://github.com/Incuvers/macro-logger
https://github.com/IndustrialShields/arduino-IndustrialShields
https://github.com/Industruino/EthernetIndustruino
https://github.com/Industruino/FRAM
https://github.com/Industruino/Indio
https://github.com/Industruino/UC1701
https://github.com/Infineon/DC-Motor-Control-TLE94112EL
https://github.com/Infineon/DPS310-Pressure-Sensor
https://github.com/Infineon/IFX007T-Motor-Control
https://github.com/Infineon/RGB-LED-Lighting-Shield-XMC1202
https://github.com/Infineon/Stepper-Motor-Shield-IFX9201-XMC1300
https://github.com/Infineon/TLE493D-3DMagnetic-Sensor
https://github.com/Infineon/TLE5012-Magnetic-Angle-Sensor
https://github.com/Infineon/TLI493D-W2BW
https://github.com/Infineon/TLI4970-D050T4-Current-Sensor
https://github.com/Infineon/TLI4971-Current-Sensor
https://github.com/Infineon/TLV493D-A1B6-3DMagnetic-Sensor
https://github.com/Infineon/TLx4966-Direction-Speed-Sensor
https://github.com/Infineon/arduino-high-side-switch
https://github.com/Infineon/arduino-motix-btn99x0
https://github.com/Infineon/arduino-multi-half-bridge
https://github.com/Infineon/arduino-optiga-trust-m
https://github.com/Infineon/arduino-optiga-trust-x
https://github.com/Infineon/arduino-pas-co2-sensor
https://github.com/Infineon/arduino-radar-bgt60
https://github.com/Infineon/arduino-rgb-led-lighting-shield
https://github.com/Infineon/hall-switch
https://github.com/Infineon/high-side-switch
https://github.com/Infineon/motor-system-ic-tle956x
https://github.com/InfiniteCoder01/BufferedOreonSSD1351
https://github.com/IngeniaMC/Ingenia-Serial-Servo-Drive-Library
https://github.com/InqOnThat/InqPortal
https://github.com/Integreight/1Sheeld-Arduino-Library
https://github.com/InvenSenseInc/arduino.ICM42670P
https://github.com/Invisibleman1002/dynaHTML
https://github.com/Invzblio/SerialToWifi
https://github.com/IoT-ThingsCloud/thingscloud-esp-sdk
https://github.com/IoTGuruLive/theiotguru-arduino-library
https://github.com/IoTWay/IoTWay-Arduino
https://github.com/IowaScaledEngineering/arduino-irsense
https://github.com/IowaScaledEngineering/arduino-mcp3427
https://github.com/Isaac100/TMP36
https://github.com/Isaranu/IoTtweet
https://github.com/Isaranu/IoTtweetESP32
https://github.com/Isaranu/IoTtweetNBIoT
https://github.com/Isaranu/IoTtweetSIEMENS_SIMATIC
https://github.com/Isaranu/PointzNet
https://github.com/Isaranu/Senses_NBIoT
https://github.com/Isaranu/Senses_wifi
https://github.com/Isaranu/Senses_wifi_esp32
https://github.com/Isaranu/pm25senses
https://github.com/J-Rios/uTLGBotLib-arduino
https://github.com/JAICHANGPARK/Arduino-Watch
https://github.com/JCWentzel/PolymorphicButtons
https://github.com/JCardoen/ATmega32U4-Grove-Air-quality-sensor
https://github.com/JChristensen/CurrentTransformer
https://github.com/JChristensen/DS3232RTC
https://github.com/JChristensen/JC_Button
https://github.com/JChristensen/JC_EEPROM
https://github.com/JChristensen/JC_Sunrise
https://github.com/JChristensen/MCP79412RTC
https://github.com/JChristensen/MCP9800
https://github.com/JChristensen/MCP9808
https://github.com/JChristensen/Timezone
https://github.com/JChristensen/movingAvg
https://github.com/JChristensen/tinySPI
https://github.com/JHershey69/DarkSkySevenDay
https://github.com/JHershey69/OpenWeatherOneCall
https://github.com/JRVeale/function-fsm
https://github.com/JSC-electronics/Adeon
https://github.com/JSC-electronics/ObjectButton
https://github.com/JSC-electronics/SimpleMotionV2-Arduino
https://github.com/JSC-electronics/SimpleRelay
https://github.com/JSC-electronics/Ticker
https://github.com/JVKran/Forced-BME280
https://github.com/JVKran/OneTime-BH1750
https://github.com/Jaapdedood/ArxRobot-Library
https://github.com/Jackal28/LMT87
https://github.com/Jackal28/MCP3304
https://github.com/Jacobllc/SDU_AGS
https://github.com/Jakkapan-a/TcBUTTON
https://github.com/Jan-NiklasB/MH-Z14A-Library
https://github.com/JeffShapiro/ArduinoLearningBoard-Lib
https://github.com/JemRF/max7219
https://github.com/JenertsA/VCNL3040_Proximity_Sensor_Library
https://github.com/Jenifen/SerialSendBuffer
https://github.com/Jeroen88/EasyOpenTherm
https://github.com/JimmySoftware/ESPert
https://github.com/JiriBilek/WiFiSpi
https://github.com/JoaoLopesF/ESP32MotorControl
https://github.com/JoaoLopesF/RemoteDebug
https://github.com/JoaoLopesF/RemoteDebugger
https://github.com/JoaoLopesF/SerialDebug
https://github.com/JoaquimFlavio/GuaraTeca_Demo
https://github.com/JoaquimFlavio/GuaraTeca_Hardware
https://github.com/JoaquimFlavio/GuaraTeca_Menu
https://github.com/JoaquimFlavio/GuaraTeca_OBR
https://github.com/JobNoorman/PmodClsArduino
https://github.com/JoeyStrandnes/Arduino-Toggl-API
https://github.com/JoeyStrandnes/NST1001_Arduino-Driver
https://github.com/John-Karatka/24LC64F
https://github.com/Jomelo/LCDMenuLib
https://github.com/Jomelo/LCDMenuLib2
https://github.com/Jones1403/SPI-DAC7611
https://github.com/Jorropo/ds3231
https://github.com/JoulePhi/Escon-Library
https://github.com/Judiviga/ROBLEX
https://github.com/Jueff/FireplaceMLX
https://github.com/Jueff/InfraredMLX
https://github.com/Jueff/SoftwareSerialTX
https://github.com/Juerd/ESP-WiFiSettings
https://github.com/JulStrat/LibYxml
https://github.com/JulStrat/uCDB
https://github.com/Justin-Pl/PCA9685_LED_DRIVER
https://github.com/Justin-Pl/PCA9698
https://github.com/KROIA/L298N_MotorDriver
https://github.com/Kei0208/SUSHI-IO-EXP
https://github.com/KevinMiller77/TwoWayESP
https://github.com/Kineis/ArduinoKim
https://github.com/Kineis/KIM_Arduino_Library
https://github.com/Kongduino/LoRandom
https://github.com/KorneliusThomas/PIDcontrollersModularProfessional
https://github.com/KravitzLab/MicrocontrollersForNeuroscience
https://github.com/KravitzLabDevices/FED3_library
https://github.com/KravitzLabDevices/FORCE2
https://github.com/KravitzLabDevices/FORCE_library
https://github.com/KuangLei/fDigitsSegtPin
https://github.com/KwangryeolPark/GLCD_QY_12864BG
https://github.com/LAtimes2/InternalTemperature
https://github.com/LILCMU/GoGoBoard-Arduino
https://github.com/LILCMU/GoGoBright
https://github.com/LSatan/SmartRC-CC1101-Driver-Lib
https://github.com/LUXROBO/MODI-Arduino
https://github.com/LaCocoRoco/DataVisualizer
https://github.com/LabAixBidouille/RobotDuLAB-arduino-library
https://github.com/Laserlicht/MaerklinMotorola
https://github.com/Leafony/LeafonySTM32
https://github.com/LeandroLimaPRO/Pressure
https://github.com/LeeLeahy2/SdCardServer
https://github.com/LeemanGeophysicalLLC/FIR_Filter_Arduino_Library
https://github.com/LeemanGeophysicalLLC/LGLearningShieldLibrary
https://github.com/Legion2/CorsairLightingProtocol
https://github.com/Legion2/Somfy_Remote_Lib
https://github.com/LennartHennigs/Button2
https://github.com/LennartHennigs/ESPBattery
https://github.com/LennartHennigs/ESPRotary
https://github.com/LennartHennigs/ESPTelnet
https://github.com/LennartHennigs/M5FacesEncoder
https://github.com/LennartHennigs/OTAWrapper
https://github.com/LennartHennigs/SimpleFSM
https://github.com/Liksu/7SegmentsSnake
https://github.com/Links2004/arduinoVNC
https://github.com/Links2004/arduinoWebSockets
https://github.com/LinnesLab/KickFilters
https://github.com/LinnesLab/KickFiltersRT
https://github.com/LinnesLab/KickMath
https://github.com/LinnesLab/KickSort
https://github.com/LinnesLab/LMP91000
https://github.com/LinnesLab/MAX541X
https://github.com/LinnesLab/TrigDef
https://github.com/LinnesLab/tTestTable
https://github.com/LiquidCGS/FastIMU
https://github.com/LoRaFi/LoRaFi
https://github.com/Locoduino/Accessories
https://github.com/Locoduino/Commanders
https://github.com/Locoduino/DCCpp
https://github.com/Locoduino/DIO2
https://github.com/Locoduino/DcDccNanoController
https://github.com/Locoduino/EEPROMExtent
https://github.com/Locoduino/LcdUi
https://github.com/Locoduino/LightDimmer
https://github.com/Locoduino/LightEffect
https://github.com/Locoduino/MemoryUsage
https://github.com/Locoduino/RingBuffer
https://github.com/Locoduino/ScheduleTable
https://github.com/Locoduino/SlowMotionServo
https://github.com/LoganTraceur/LogansGreatButton
https://github.com/Losant/losant-mqtt-arduino
https://github.com/LowPowerLab/LowPower
https://github.com/LowPowerLab/RFM69
https://github.com/LowPowerLab/SPIFlash
https://github.com/LuighiV/arduino-isfetboard
https://github.com/LuisMiCa/IRsmallDecoder
https://github.com/Lynxmotion/AlternativeLSS
https://github.com/Lynxmotion/Arduino-PPM
https://github.com/Lynxmotion/LSS_Library_Arduino
https://github.com/M-Reimer/EncoderStepCounter
https://github.com/M-Reimer/IwitVolumeKnob
https://github.com/M-Reimer/USBStatus
https://github.com/M-tech-Creations/NoDelay
https://github.com/MAINAKMONDAL98/MSMPLOTTER
https://github.com/MCUdude/KTMS1201
https://github.com/MCUdude/SigmaDSP
https://github.com/MClarkDev/ArylicHTTP
https://github.com/MClarkDev/BleepingLibrary
https://github.com/MERG-DEV/CBUS
https://github.com/MERG-DEV/CBUS2515
https://github.com/MERG-DEV/CBUSBUZZER
https://github.com/MERG-DEV/CBUSLED
https://github.com/MERG-DEV/CBUSconfig
https://github.com/MERG-DEV/CBUSswitch
https://github.com/MHeeres/DataServeriOS
https://github.com/MHotchin/BalBoaSpa
https://github.com/MHotchin/RLEBitmap
https://github.com/MHotchin/Waveshare4InchTftShield
https://github.com/MHotchin/YAAWS
https://github.com/MINDS-i/MINDS-i
https://github.com/MINDS-i/MINDS-i-Drone
https://github.com/ML-VPN/OtD_Library
https://github.com/MLXXXp/Arduboy2
https://github.com/MLXXXp/ArduboyTones
https://github.com/MR-XieXuan/RX8025_for_Arduino
https://github.com/MR-XieXuan/URLCode_for_Arduino
https://github.com/MSZ98/CallMyFunction
https://github.com/MSZ98/pcf8574
https://github.com/MSZ98/serial-readline
https://github.com/MYBOTIC/DurianBlynkESP8266
https://github.com/MacroYau/LTC2942-Arduino-Library
https://github.com/MacroYau/RV-1805-C3-Arduino-Library
https://github.com/MacroYau/RV-3028-C7-Arduino-Library
https://github.com/MadTooler/Gobbit_Line_Commander
https://github.com/MaiTheLord/BetterOTA
https://github.com/MajicDesigns/MD_AButton
https://github.com/MajicDesigns/MD_AD9833
https://github.com/MajicDesigns/MD_CirQueue
https://github.com/MajicDesigns/MD_Cubo
https://github.com/MajicDesigns/MD_DS1307
https://github.com/MajicDesigns/MD_DS3231