-
Notifications
You must be signed in to change notification settings - Fork 0
/
software-libraries.conf
2346 lines (1945 loc) · 59.2 KB
/
software-libraries.conf
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
Library List Created from
https://www.arduinolibraries.info/
[library-ArduinoBearSSL]
source = https://github.com/arduino-libraries/ArduinoBearSSL
tags = official
classes = BearSSLClient
headers = ArduinoBearSSL.h
categories = Communication
[library-ArduinoCloud]
source = https://github.com/arduino-libraries/ArduinoCloud
tags = official
categories = Communication
[library-ArduinoECCX08]
source = https://github.com/arduino-libraries/ArduinoECCX08
tags = official
categories = Communication
[library-ArduinoHttpClient]
source = https://github.com/arduino-libraries/ArduinoHttpClient
tags = official
categories = Communication
[library-Arduino Low Power]
source = https://github.com/arduino-libraries/ArduinoLowPower
tags = official
categories = Device Control
[library-Arduino SigFox for MKRFox1200]
source = https://github.com/arduino-libraries/SigFox
tags = official
categories = Device Control
[library-ArduinoSound]
source = https://github.com/arduino-libraries/ArduinoSound
tags = official
categories = Audio
[library-Arduino Uno WiFi Dev Ed Library]
source = https://github.com/arduino-libraries/UnoWiFi-Developer-Edition-Lib
tags = official
[library-Audio]
source = https://github.com/arduino-libraries/Audio
tags = official
categories = Audio
[library-AudioFrequencyMeter]
source = https://github.com/arduino-libraries/AudioFrequencyMeter
tags = official
categories = Timing
[library-AudioZero]
source = https://github.com/arduino-libraries/AudioZero
tags = official
categories = Signal Input/Output
[library-BNO055]
source = https://github.com/arduino-libraries/BNO055
tags = official
categories = Sensors
[library-Braccio]
source = https://github.com/arduino-libraries/Braccio
tags = official
categories = Device Control
[library-Bridge]
source = https://github.com/arduino-libraries/Bridge
tags = official
categories = Communication
[library-Ciao]
source = https://github.com/arduino-libraries/Ciao
tags = official
categories = Communication
[library-EduIntro]
source = https://github.com/arduino/EduIntro
tags = official
categories = Education
[library-Esplora]
source = https://www.arduinolibraries.info/libraries/esplora
tags = official
categories = Device Control
[library-Ethernet]
source = https://github.com/arduino-libraries/Ethernet
tags = official
categories = Communication
[library-Firmata]
source = https://github.com/firmata/arduino
tags = official
categories = Device Control
[library-GSM]
source = https://github.com/arduino-libraries/GSM
tags = official
categories = Communication
[library-Keyboard]
source = https://github.com/arduino-libraries/Keyboard
tags = official
categories = Device Control
[library-LiquidCrystal]
source = https://github.com/arduino-libraries/LiquidCrystal
tags = official
categories = Display
[library-LoRa Node]
source = https://github.com/arduino-org/arduino-library-lora-node-shield
tags = official
categories = Communication
[library-Madgwick]
source = https://github.com/arduino-libraries/MadgwickAHRS
tags = official
categories = Data Processing
[library-MIDIUSB]
source = https://github.com/arduino-libraries/MIDIUSB
tags = official
categories = Device Control
[library-MKRMotorCarrier]
source = https://github.com/arduino-libraries/MKRMotorCarrier
tags = official
categories = Signal Input/Output
[library-MKRGSM]
source = https://github.com/arduino-libraries/MKRGSM
classes = GPRS GSM GSMBand GSMClient GSMLocation GSMModem GSMPIN GSMSSLClient GSMScanner GSMServer GSMUDP GSMVoiceCall GSM_SMS ModemClass
headers = MKRGSM.h
examples = https://github.com/arduino-libraries/MKRGSM/tree/master/examples
tags = official
categories = Communication
[library-MKRWAN]
source = https://github.com/arduino-libraries/MKRWAN
tags = official
categories = Communication
[library-Mouse]
source = https://github.com/arduino-libraries/Mouse
tags = official
categories = Device Control
[library-NTPClient]
source = https://github.com/arduino-libraries/NTPClient
tags = official
categories = Timing
[library-Robot Control]
source = https://github.com/arduino-libraries/Robot_Control
tags = official
categories = Device Control
[library-Robot IR Remote]
source = https://github.com/arduino-libraries/RobotIRremote
tags = official
categories = Device Control
[library-Robot Motor]
source = https://github.com/arduino-libraries/Robot_Motor
tags = official
categories = Device Control
[library-RTCZero]
source = https://github.com/arduino-libraries/RTCZero
tags = official
categories = Timing
[library-Scheduler]
source = https://github.com/arduino-libraries/Scheduler
tags = official
categories = Timing
[library-SD]
source = https://github.com/arduino-libraries/SD
tags = official
categories = Device Control
[library-Servo]
source = https://github.com/arduino-libraries/Servo
tags = official
categories = Device Control
[library-SpacebrewYun]
source = https://github.com/arduino-libraries/SpacebrewYun
tags = official
categories = Communication
[library-Stepper]
source = https://github.com/arduino-libraries/Stepper
tags = official
categories = Device Control
[library-Temboo]
source = https://github.com/arduino-libraries/Temboo
tags = official
categories = Communication
[library-TFT]
source = https://github.com/arduino-libraries/TFT
tags = official
categories = Display
[library-USBHost]
source = https://github.com/arduino-libraries/USBHost
tags = official
categories = Device Control
[library-VidorGraphics]
source = https://github.com/vidor-libraries/VidorGraphics
tags = official
categories = Device Control
[library-VidorPeripherals]
source = https://github.com/vidor-libraries/VidorPeripherals
tags = official
categories = Device Control
[library-WiFi]
source = https://github.com/arduino-libraries/WiFi
tags = official
categories = Communication
[library-WiFi Link]
source = https://github.com/arduino-org/arduino-library-wifilink
tags = official
categories = Device Control
[library-WiFiNINA]
source = https://github.com/arduino-libraries/WiFiNINA
tags = official
categories = Device Control
[library-WiFi101]
source = https://github.com/arduino-libraries/WiFi101
tags = official
categories = Device Control
[library-WiFi101OTA]
source = https://github.com/arduino-libraries/WiFi101OTA
tags = official
categories = Device Control
[library-ALog]
source = https://www.arduinolibraries.info/libraries/a-log
tags =
categories =
[library-Accelerometer ADXL335]
source = https://github.com/Seeed-Studio/Accelerometer_ADXL335
tags = sensor
categories = Sensor
[library-Accelerometer ADXL345]
source = Accelerometer ADXL345
tags = sensor
categories =
[library-Accelerometer And Gyroscope LSM6DS3]
source = https://github.com/Seeed-Studio/Accelerometer_ADXL345
tags =
categories =
[library-Accelerometer And Gyroscope LSM6DS3]
source = https://github.com/Seeed-Studio/Accelerometer_And_Gyroscope_LSM6DS3
tags =
categories =
[library-Accelerometer_H3LIS331DL]
source = https://github.com/Seeed-Studio/Accelerometer_H3LIS331DL
tags =
categories =
[Accelerometer_MMA7660]
source = https://github.com/Seeed-Studio/Accelerometer_MMA7660
tags =
categories =
[library-DFRobot_AccessoryShield]
source = https://github.com/biagiom/AccessoryShield
tags =
categories =
[library-ACE128]
source = https://github.com/arielnh56/ACE128
tags =
categories =
[library-ACI_10K_AN-temp-sensor]
source = https://github.com/NitrofMtl/ACI_10K_an
tags =
categories =
[library-AD7193]
source = https://github.com/annem/AD7193
tags =
categories =
[library-AD_Sensors]
source = https://github.com/YuriiSalimov/AD_Sensors
tags =
categories =
[library-Adafruit ADXL345]
description = Unified driver for the ADXL345 Accelerometer
source = https://github.com/Seeed-Studio/Accelerometer_ADXL345
tags = sensor
categories = Sensors
[library-Adafruit AHRS]
description = AHRS (Altitude and Heading Reference System) for Adafruit's 9DOF and 10DOF breakouts
source = https://github.com/adafruit/Adafruit_ADXL345
tags = sensor
categories = Sensors
[library-Adafruit AM2315]
description = Library code for AM2315 sensors
source = https://github.com/adafruit/Adafruit_AM2315
tags = sensor
categories = Sensors
[library-Adafruit AM2320]
description = sensor library Arduino library for AM2320 I2C Temp & Humidity Sensors
source = https://github.com/adafruit/Adafruit_AM2320
tags = sensor
categories = Sensors
[library-Adafruit AMG88xx Library]
description = Arduino library for AMG88xx 8x8 Thermocouple Sensors.
source = https://github.com/adafruit/Adafruit_AMG88xx
tags = sensor
categories = Sensors
[library-Adafruit APDS9960 Library]
description = This is a library for the Adafruit APDS9960 gesture/proximity/color/light sensor.
source = https://github.com/adafruit/Adafruit_APDS9960
tags = sensor
categories = Sensors
[library-Adafruit BME280 Library]
description = Arduino library for BME280 sensors.
source = https://github.com/adafruit/Adafruit_BME280_Library
tags = sensor
categories = Sensors
[library-Adafruit BME680 Library]
description = Arduino library for BME680 sensors.
source = https://github.com/adafruit/Adafruit_BME680
tags = sensor
categories = Sensors
[library-Adafruit BMP085 Library]
description = A powerful but easy to use BMP085/BMP180 Library
source = https://github.com/adafruit/Adafruit-BMP085-Library
tags = sensor
categories = Sensors
[library-Adafruit BMP085 Unified]
description = Unified sensor driver for Adafruit's BMP085 & BMP180 breakouts
source = https://github.com/adafruit/Adafruit_BMP085_Unified
tags = sensor
categories = Sensors
[library-Adafruit BMP183 Library]
description = Non-Unified BMP library
source = https://github.com/adafruit/Adafruit_BMP183_Library
tags = sensor
categories = Sensors
[library-Adafruit BMP183 Unified Library]
description = Arduino library for the BMP183 sensors in the Adafruit shop
source = https://github.com/adafruit/Adafruit_BMP183_Unified_Library
tags = sensor
categories = Sensors
[library-Adafruit BMP280 Library]
description = Arduino library for BMP280 sensors.
source = https://github.com/adafruit/Adafruit_BMP280_Library
tags = sensor
categories = Sensors
[library-Adafruit BNO055 Library]
description = for the Adafruit BNO055 Absolute Orientation Sensor.
source = https://github.com/adafruit/Adafruit_BNO055
tags = sensor
categories = Sensors
[library-Adafruit CAP1188 Library]
description = Arduino library for the Adafruit CAP1188 8-Channel Capacitive Touch Sensor Breakout
source = https://github.com/adafruit/Adafruit_CAP1188_Library
tags = sensor
categories = Sensors
[library-Adafruit CCS811 Library]
description = This is a library for the Adafruit CCS811 I2C gas sensor breakout.
source = https://github.com/adafruit/Adafruit_CCS811
tags = sensor
categories = Sensors
[library-Adafruit Fingerprint Sensor Library]
description = Arduino library for interfacing to the fingerprint sensor in the Adafruit shop
source = https://github.com/adafruit/Adafruit-Fingerprint-Sensor-Library
tags = sensor
categories = Sensors
[library-Adafruit FreeTouch Library]
description = Arduino library for QTouch on samd21 microcontroller
source = https://github.com/adafruit/Adafruit_FreeTouch
tags = sensor
categories = Sensors
[library-Adafruit FXAS21002C]
description = Unified sensor driver for the FXAS210002C Gyroscope
source = https://github.com/adafruit/Adafruit_FXAS21002C
tags = sensor
categories = Sensors
[library-Adafruit FXOS8700]
description = Unified sensor driver for the FXOS8700 Accelerometer/Magnetometer
source = https://github.com/adafruit/Adafruit_FXOS8700
tags = sensor
categories = Sensors
[library-Adafruit GPS Library]
description = An interrupt-based GPS library for no-parsing-required use
source = https://github.com/adafruit/Adafruit_GPS
tags = sensor
categories = Sensors
[library-Adafruit HDC1000 Library]
description = Arduino library for HDC1000 and HDC1008 sensors.
source = https://github.com/adafruit/Adafruit_HDC1000_Library
tags = sensor
categories = Sensors
[library-Adafruit HMC5883]
description = Unified Adafruit HMC5883L 3-Axis Magnetometer Breakout library using Adafruit's Unified Sensor Library.
source = https://github.com/adafruit/Adafruit_HMC5883_Unified
tags = sensor
categories = Sensors
[library-Adafruit HTU21DF Library]
description = Arduino library for the HTU21D-F sensors in the Adafruit shop
source = https://github.com/adafruit/Adafruit_HTU21DF_Library
tags = sensor
categories = Sensors
[library-Adafruit INA219]
description = INA219 Current Sensor
source = https://github.com/adafruit/Adafruit_INA219
tags = sensor
categories = Sensors
[library-Adafruit L3GD20]
description = Unified sensor driver for the L3GD20 Gyroscope
source = https://github.com/adafruit/Adafruit_L3GD20_U
tags = sensor
categories = Sensors
[library-Adafruit LIS3DH]
description = Library for the Adafruit LIS3DH Accelerometer.
source = https://github.com/adafruit/Adafruit_LIS3DH
tags = sensor
categories = Sensors
[library-Adafruit LSM303DLHC]
description = Unified sensor driver for Adafruit's LSM303 Breakout (Accelerometer + Magnetometer)
source = https://github.com/adafruit/Adafruit_LSM303DLHC
tags = sensor
categories = Sensors
[library-Adafruit LSM9DS0 Library]
description = Arduino library for LSM9DS0 9-DOF sensor board.
source = https://github.com/adafruit/Adafruit_LSM9DS0_Library
tags = sensor
categories = Sensors
[library-Adafruit LSM9DS1 Library]
description = Arduino library for LSM9DS1 9-DOF sensor board.
source = https://github.com/adafruit/Adafruit_LSM9DS1
tags = sensor
categories = Sensors
[library-Adafruit MAX31855 library]
description = Library for the Adafruit Thermocouple breakout with MAX31855K
source = https://github.com/adafruit/Adafruit-MAX31855-library
tags = sensor
categories = Sensors
[library-Adafruit MAX31856 library]
description = Library for the Adafruit Thermocouple Amplifier breakout with MAX31856
source = https://github.com/adafruit/Adafruit_MAX31856
tags = sensor
categories = Sensors
[library-Adafruit MAX31865 library]
description = Library for the Adafruit RTD Amplifier breakout with MAX31865
source = https://github.com/adafruit/Adafruit_MAX31865
tags = sensor
categories = Sensors
[library-Adafruit MCP9808 Library]
description = Arduino library for the MCP9808 sensors in the Adafruit shop
source = https://github.com/adafruit/Adafruit_MCP9808_Library
tags = sensor
categories = Sensors
[library-Adafruit MiniMLX90614]
description = A simplified MLX90614 library for use with the Trinket/Gemma
source = https://github.com/adafruit/Adafruit_MiniMLX90614
tags = sensor
categories = Sensors
[library-Adafruit MLX90614]
description = Library Arduino library for the MLX90614 sensors in the Adafruit shop
source = https://github.com/adafruit/Adafruit-MLX90614-Library
tags = sensor
categories = Sensors
[library-Adafruit MMA8451 Library]
description = Arduino library for the MMA8451 Accelerometer sensors in the Adafruit shop
source = https://github.com/adafruit/Adafruit_MMA8451_Library
tags = sensor
categories = Sensors
[library-Adafruit MPL115A2]
description = Driver for the Adafruit MPL115A2 barometric pressure sensor breakout
source = https://github.com/adafruit/Adafruit_MPL115A2
tags = sensor
categories = Sensors
[library-Adafruit MPL3115A2]
description = Library Arduino library for the MPL3115A2 sensors in the Adafruit shop
source = https://github.com/adafruit/Adafruit_MPL3115A2_Library
tags = sensor
categories = Sensors
[library-Adafruit MPR121]
description = Arduino library for the MPR121-based capacitive sensors in the Adafruit shop.
source =
tags = sensor
categories = Sensors
[library-Adafruit PS2 Trackpad]
description = PS2 library for Adafruit capacitive trackpads
source =
tags = sensor
categories = Sensors
[library-Adafruit SGP30 Sensor]
description = This is an Arduino library for the Adafruit SGP30 Gas / Air Quality Sensor
source =
tags = sensor
categories = Sensors
[library-Adafruit SHT31 Library]
description = Arduino library for SHT31 temperature & humidity sensor.
source =
tags = sensor
categories = Sensors
[library-Adafruit SI1145 Library]
description = Arduino library for the SI1145 sensors in the Adafruit shop
source =
tags = sensor
categories = Sensors
[library-Adafruit Si7021 Library]
description = Arduino library for Si7021 sensors.
source =
tags = sensor
categories = Sensors
[library-Adafruit TCS34725]
description = Driver for Adafruit's TCS34725 RGB Color Sensor Breakout
source =
tags = sensor
categories = Sensors
[library-Adafruit TMP006]
description = This is a library for the Adafruit TMP006 Infrared Thermopile Sensor
source =
tags = sensor
categories = Sensors
[library-Adafruit TMP007 Library]
description = Arduino library for Adafruit TMP007 Thermopile sensor Breakout
source =
tags = sensor
categories = Sensors
[library-Adafruit TSL2561]
description = Unified sensor driver for Adafruit's TSL2561 breakouts
source =
tags = sensor
categories = Sensors
[library-Adafruit TSL2591 Library]
description = Library for the TSL2591 digital luminosity (light) sensors.
source =
tags = sensor
categories = Sensors
[library-Adafruit Unified Sensor]
description = Required for all Adafruit Unified Sensor based libraries.
source =
tags = sensor
categories = Sensors
[library-Adafruit VEML6070 Library]
description = Arduino library for VEML6070
source =
tags = sensor
categories = Sensors
[library-Adafruit_VCNL4010]
description = Sensor driver for VCNL4010 IR proximity sensor
source =
tags = sensor
categories = Sensors
[library-Adafruit_VL53L0X]
description = Sensor driver for VL53L0X Time of Flight sensor
source =
tags = sensor
categories = Sensors
[library-Adafruit_VL6180X]
description = Sensor driver for VL6180X Time of Flight sensor
source =
tags = sensor
categories = Sensors
[library-ADCTouch]
description = Create Touch Sensors with a single (Analog)Pin without external Hardware
source =
tags = sensor
categories = Sensors
[library-ADCTouchSensor]
description = Create Touch Sensors with a single analog pin without external hardware
source =
tags = sensor
categories = Sensors
[library-ADSWeather]
description = Arduino library to interface with the Argent Data Systems weather station sensor assembly.
source =
tags = sensor
categories = Sensors
[library-ADXL345]
description = A acceleration sensor library for Arduino
source =
tags = sensor
categories = Sensors
[library-ADXL362]
description = Library for ADXL362 - http://analog.com/adxl362
source =
tags = sensor
categories = Sensors
[library-AllSensors DLHR]
description = Support for the AllSensors DLHR Series Low Voltage Digital Pressure Sensors.
source =
tags = sensor
categories = Sensors
[library-AllSensors DLV]
description = Support for the AllSensors DLV Series Low Voltage Digital Pressure Sensors.
source =
tags = sensor
categories = Sensors
[library-Analog Buttons]
description = Arduino multi button support library
source =
tags = sensor
categories = Sensors
[library-arduino-ess]
description = Support for Sensirion's Environmental Sensor Shield
source =
tags = sensor
categories = Sensors
[library-ArduinoINA219]
description = INA219 hi-side i2c current/power sensor Library
source =
tags = sensor
categories = Sensors
[library-Arduino Learning Board]
description = A combined library created to support the Arduino Learning Board project
source =
tags = sensor
categories = Sensors
[library-arduino-sht]
description = Support for Sensirion's humidity and temperature sensors.
source =
tags = sensor
categories = Sensors
[library-Arduino Smart Watch]
description = A library that makes coding a watch for Arduino Micro and so on
source =
tags = sensor
categories = Sensors
[library-AS3935]
description = Library to support Austrian Microsystems AS3935 lightning sensor.
source =
tags = sensor
categories = Sensors
[library-BaroLibrary]
description = Library for Measurement Specialties MS5637-02BA03 Altimeter/Pressure sensor (including Freetronics BARO module).
source =
tags = sensor
categories = Sensors
[library-BH1750FVI]
description = Enables reading the digital light sensor
source =
tags = sensor
categories = Sensors
[library-Bifrost library for HC-SR04]
description = A library for the HC-SR04 ultrasonic distance sensor.
source =
tags = sensor
categories = Sensors
[library-Bitcraze PMW3901]
description = PMW3901 Optical flow sensor driver.
source =
tags = sensor
categories = Sensors
[library-BlueDot BME280 Library]
description = BlueDot library for BME280 sensors.
source =
tags = sensor
categories = Sensors
[library-BlueDot BME280 TSL2591]
description = BlueDot library for BME280 and TSL2591 sensors.
source =
tags = sensor
categories = Sensors
[library-BlueDot BME680 Library]
description = BlueDot library for BME680 sensors.
source =
tags = sensor
categories = Sensors
[library-BlueRobotics Keller LD Library]
description = A simple and easy library for the Keller LD series pressure/depth sensors
source =
tags = sensor
categories = Sensors
[library-BlueRobotics MS5837 Library]
description = A simple and easy library for the MS5837 pressure/depth sensor
source =
tags = sensor
categories = Sensors
[library-BlueRobotics TSYS01 Library]
description = A simple and easy library for the TSYS01 temperature sensor
source =
tags = sensor
categories = Sensors
[library-BME280]
description = Provides a library for reading and interpreting Bosch BME280 environmental sensor data over I2C, SPI or Sw SPI.
source =
tags = sensor
categories = Sensors
[library-BNO055]
description = Allows to use the IMU MKR Shield
source =
tags = sensor
categories = Sensors
[library-BohleBots_BNO055]
description = Library for the BNO055 as easy to use compass.
source =
tags = sensor
categories = Sensors
[library-Bolder Flight Systems AMS5812]
description = Library for communicating with Analog Microelectronics AMS 5812 pressure transducers.
source =
tags = sensor
categories = Sensors
[library-Bolder Flight Systems AMS5915]
description = Library for communicating with Analog Microelectronics AMS 5915 pressure transducers.
source =
tags = sensor
categories = Sensors
[library-Bolder Flight Systems BME280]
description = Library for communicating with the BME280 pressure, humidity, and temperature sensor.
source =
tags = sensor
categories = Sensors
[library-Bolder Flight Systems MPU9250]
description = Library for communicating with the MPU-9250 and MPU-9255 nine-axis Inertial Measurement Units (IMU).
source =
tags = sensor
categories = Sensors
[library-Bolder Flight Systems UBLOX]
description = Library for communicating with uBlox GPS receivers.
source =
tags = sensor
categories = Sensors
[library-ButtonDebounce]
description = A library that makes easy to use button with debounce.
source =
tags = sensor
categories = Sensors
[library-Buzz]
description = AC/static electricity-based motion detection using only the ADC and a wire!
source =
tags = sensor
categories = Sensors
[library-CapacitiveSensor]
description = Create capacitive sensors that can detect touch or proximity.
source =
tags = sensor
categories = Sensors
[library-Capacitor]
description = Measure capacitance from 0.2pF to 100uF with no external hardware.
source =
tags = sensor
categories = Sensors
[library-ClimaStick]
description = Arduino ClimaStick v1 & v2 library for the Thinger.io Internet of Things Platform.
source =
tags = sensor
categories = Sensors
[library-ClosedCube BME680]
description = Arduino library for Bosch Sensortec BME680 integrated environmental (temperature, humidity, pressure, gas and in-door air quality) sensor
source =
tags = sensor
categories = Sensors
[library-ClosedCube HDC1010]
description = Arduino library for Texas Instruments HDC1010 Low Power, High Accuracy Digital Humidity Sensor with Temperature Sensor
source =
tags = sensor
categories = Sensors
[library-ClosedCube HDC1080]
description = Arduino library for Texas Instruments HDC1080 Low Power, High Accuracy Digital Humidity Sensor with Temperature Sensor
source =
tags = sensor
categories = Sensors
[library-ClosedCube LPS25HB]
description = Arduino library for STMicroelectronics LPS25HB MEMS pressure sensor: 260-1260 hPa absolute digital output barometer
source =
tags = sensor
categories = Sensors
[library-ClosedCube MAX30205]
description = Arduino library for Maxim Integrated MAX30205 Human Body Temperature Sensor
source =
tags = sensor
categories = Sensors
[library-ClosedCube OPT3001]
description = Arduino library for Texas Instruments OPT3001 Digital Ambient Light Sensor (ALS)
source =
tags = sensor
categories = Sensors
[library-ClosedCube OPT3002]
description = Arduino library for Texas Instruments OPT3002 Light to Digital Sensor
source =
tags = sensor
categories = Sensors
[library-ClosedCube SHT31D]
description = Arduino library for Sensirion SHT30-D, SHT31-D and SHT35-D Digital I2C Temperature & Humidity Sensors
source =
tags = sensor
categories = Sensors
[library-ClosedCube Si7051]
description = Arduino library for Silicon Labs Si7051 ±0.1°C Digital Temperature Sensor breakout board
source =
tags = sensor
categories = Sensors
[library-ClosedCube Si7055]
description = Arduino library for Silicon Labs Si7055 ±0.5°C Digital Temperature Sensor breakout board
source =
tags = sensor
categories = Sensors
[library-ClosedCube TCA9538]
description = Arduino library for Texas Instruments TCA9538 Remote 8-Bit I2C and SMBus Low-Power I/O Expander
source =
tags = sensor
categories = Sensors
[library-ClosedCube TMP116]
description = Arduino library for ClosedCube TMP116 �0.2�C (max) High-Accuracy Low-Power I2C Temperature Sensor breakout board
source =
tags = sensor
categories = Sensors
[library-ClosedCube TSYS01]
description = Arduino library for TE CONNECTIVITY TSYS01 +/-0.1C 24-bit Digital Temperature Sensor
source =
tags = sensor
categories = Sensors
[library-Comp6DOF_n0m1]
description = An Arduino Library for compass tilt compensation and hard iron offset
source =
tags = sensor
categories = Sensors
[library-CurrentSwitch]
description = Use SCT-013-000 current sensor as a workproof
source =
tags = sensor
categories = Sensors
[library-CurrentTransformer]
description = Arduino Library for measuring current in 50/60Hz circuits using current transformers.
source =
tags = sensor
categories = Sensors
[library-DallasTemperature]
description = Arduino Library for Dallas Temperature ICs
source =
tags = sensor
categories = Sensors
[library-DFRobotIRPosition]
description = Driver for Positioning ir camera from DFRobot
source =
tags = sensor
categories = Sensors
[library-DHT sensor library]
description = Arduino library for DHT11, DHT22, etc Temp & Humidity Sensors
source =
tags = sensor
categories = Sensors
[library-DHT sensor library for ESPx]
description = Arduino ESP library for DHT11, DHT22, etc Temp & Humidity Sensors
source =
tags = sensor
categories = Sensors
[library-Digital Infrared Temperature Sensor MLX90615]
description = Arduino library to control Grove - Digital Infrared Temperature Sensor.
source =
tags = sensor
categories = Sensors
[library-DPS310]
description = This library provides an interface to communicate with the DPS310.
source =
tags = sensor
categories = Sensors
[library-DS1624]
description = A library to interface with Maxim DS1624 temperature sensor and memory.
source =
tags = sensor