├── .github └── FUNDING.yml ├── LICENSE.md ├── README.md ├── libraries ├── 74HC138 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── 74HC138.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── 74HC138_demo │ │ │ └── 74HC138_demo.ino │ │ ├── 74HC138_night_rider │ │ │ └── 74HC138_night_rider.ino │ │ ├── 74HC138_prev_next │ │ │ └── 74HC138_prev_next.ino │ │ └── 74HC138_random │ │ │ └── 74HC138_random.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── 74HC154 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── 74HC154.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── 74HC154_demo │ │ │ └── 74HC154_demo.ino │ │ ├── 74HC154_night_rider │ │ │ └── 74HC154_night_rider.ino │ │ └── 74HC154_prev_next │ │ │ └── 74HC154_prev_next.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── 74HC590 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── 74HC590.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── 74HC590_demo │ │ │ └── 74HC590_demo.ino │ │ ├── 74HC590_demo_step_5 │ │ │ └── 74HC590_demo_step_5.ino │ │ └── 74HC590_performance │ │ │ ├── 74HC590_performance.ino │ │ │ └── performance_0.1.0.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── A1301 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── A1301.cpp │ ├── A1301.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── A1301_autoMidPoint │ │ │ └── A1301_autoMidPoint.ino │ │ ├── A1301_demo │ │ │ └── A1301_demo.ino │ │ ├── A1301_determineNoise │ │ │ └── A1301_determineNoise.ino │ │ ├── A1301_performance │ │ │ ├── A1301_performance.ino │ │ │ └── performance_0.2.2.txt │ │ ├── A1301_plotter │ │ │ └── A1301_plotter.ino │ │ ├── A1301_test │ │ │ └── A1301_test.ino │ │ └── A1301_test_saturation │ │ │ └── A1301_test_saturation.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── ACD10 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── ACD10.cpp │ ├── ACD10.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── ACD10_demo │ │ │ └── ACD10_demo.ino │ │ ├── ACD10_isConnected │ │ │ └── ACD10_isConnected.ino │ │ ├── ACD10_manual_calibration │ │ │ └── ACD10_manual_calibration.ino │ │ ├── ACD10_preheat_test │ │ │ └── ACD10_preheat_test.ino │ │ ├── ACD10_readSensor │ │ │ └── ACD10_readSensor.ino │ │ ├── ACD10_readSensorCode │ │ │ └── ACD10_readSensorCode.ino │ │ ├── ACD10_readSensor_performance │ │ │ └── ACD10_readSensor_performance.ino │ │ ├── ACD10_readSensor_wire1 │ │ │ ├── .arduino-ci.yml │ │ │ └── ACD10_readSensor_wire1.ino │ │ └── TCA9548_demo_ACD10 │ │ │ ├── .arduino-ci.yml │ │ │ └── TCA9548_demo_ACD10.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── ACD3100 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── ACD3100.cpp │ ├── ACD3100.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── ACD3100_demo │ │ │ └── ACD3100_demo.ino │ │ ├── ACD3100_isConnected │ │ │ └── ACD3100_isConnected.ino │ │ ├── ACD3100_preheat_test │ │ │ └── ACD3100_preheat_test.ino │ │ ├── ACD3100_readSensor │ │ │ └── ACD3100_readSensor.ino │ │ ├── ACD3100_readSensorCode │ │ │ └── ACD3100_readSensorCode.ino │ │ ├── ACD3100_readSensor_performance │ │ │ └── ACD3100_readSensor_performance.ino │ │ ├── ACD3100_readSensor_wire1 │ │ │ ├── .arduino-ci.yml │ │ │ └── ACD3100_readSensor_wire1.ino │ │ └── TCA9548_demo_ACD3100 │ │ │ ├── .arduino-ci.yml │ │ │ └── TCA9548_demo_ACD3100.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── ACS712 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── ACS712.cpp │ ├── ACS712.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── examples │ │ ├── ACS712_20_AC │ │ │ └── ACS712_20_AC.ino │ │ ├── ACS712_20_AC_DEMO │ │ │ └── ACS712_20_AC_DEMO.ino │ │ ├── ACS712_20_AC_SAMPLING_DEMO │ │ │ └── ACS712_20_AC_SAMPLING_DEMO.ino │ │ ├── ACS712_20_AC_average │ │ │ └── ACS712_20_AC_average.ino │ │ ├── ACS712_20_AC_compare │ │ │ └── ACS712_20_AC_compare.ino │ │ ├── ACS712_20_AC_low_pass │ │ │ └── ACS712_20_AC_low_pass.ino │ │ ├── ACS712_20_AC_midPoint_compare │ │ │ └── ACS712_20_AC_midPoint_compare.ino │ │ ├── ACS712_20_AC_midPoint_performance │ │ │ └── ACS712_20_AC_midPoint_performance.ino │ │ ├── ACS712_20_AC_simulation │ │ │ └── ACS712_20_AC_simulation.ino │ │ ├── ACS712_20_AC_suppress_noise │ │ │ └── ACS712_20_AC_suppress_noise.ino │ │ ├── ACS712_20_DC │ │ │ └── ACS712_20_DC.ino │ │ ├── ACS712_20_DC_DEMO │ │ │ └── ACS712_20_DC_DEMO.ino │ │ ├── ACS712_20_DC_external_ADC │ │ │ └── ACS712_20_DC_external_ADC.ino │ │ ├── ACS712_20_determine_form_factor │ │ │ └── ACS712_20_determine_form_factor.ino │ │ ├── ACS712_20_mV_noise_level │ │ │ └── ACS712_20_mV_noise_level.ino │ │ ├── ACS712_ESP32_external_ADC │ │ │ ├── .arduino-ci.yml │ │ │ └── ACS712_ESP32_external_ADC.ino │ │ ├── ACS712_I2C_display │ │ │ ├── .arduino-ci.yml │ │ │ └── ACS712_I2C_display.ino │ │ ├── ACS712_autoMidPointDC │ │ │ └── ACS712_autoMidPointDC.ino │ │ ├── ACS712_debug │ │ │ └── ACS712_debug.ino │ │ ├── ACS712_detectFrequency │ │ │ └── ACS712_detectFrequency.ino │ │ ├── RMS_by_sampling │ │ │ └── RMS_by_sampling.ino │ │ └── estimateMidPointAC │ │ │ └── estimateMidPointAC.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── readme.md │ └── test │ │ └── unit_test_001.cpp ├── AD5144A │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AD5144A.cpp │ ├── AD5144A.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── AD5144A_low_level │ │ │ └── AD5144A_low_level.ino │ │ ├── AD5144A_test_EEPROM │ │ │ └── AD5144A_test_EEPROM.ino │ │ ├── AD5144A_test_control_register │ │ │ └── AD5144A_test_control_register.ino │ │ ├── AD5144A_test_isConnected │ │ │ └── AD5144A_test_isConnected.ino │ │ ├── AD5144A_test_performance │ │ │ └── AD5144A_test_performance.ino │ │ ├── AD5144A_test_preload_sync │ │ │ └── AD5144A_test_preload_sync.ino │ │ ├── AD5144A_test_speed │ │ │ └── AD5144A_test_speed.ino │ │ ├── AD5144A_test_write │ │ │ └── AD5144A_test_write.ino │ │ └── AD5144A_test_writeAll │ │ │ └── AD5144A_test_writeAll.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AD520X │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AD520X.cpp │ ├── AD520X.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── AD5204_demo │ │ │ ├── AD5204_demo.ino │ │ │ └── performance_0.3.0.txt │ │ ├── AD5204_demo_HWSPI │ │ │ └── AD5204_demo_HWSPI.ino │ │ ├── AD5204_demo_SWSPI │ │ │ └── AD5204_demo_SWSPI.ino │ │ ├── AD5204_demo_stereo │ │ │ └── AD5204_demo_stereo.ino │ │ └── AD5204_setPercentage │ │ │ └── AD5204_setPercentage.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AD523X │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AD523X.cpp │ ├── AD523X.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── AD5231_demo │ │ │ ├── AD5231_demo.ino │ │ │ └── performance_0.1.0.txt │ │ ├── AD5231_demo_HWSPI │ │ │ └── AD5231_demo_HWSPI.ino │ │ ├── AD5231_demo_SWSPI │ │ │ └── AD5231_demo_SWSPI.ino │ │ ├── AD5235_demo_stereo │ │ │ ├── AD5235_demo_stereo.ino │ │ │ └── performance_0.1.0.txt │ │ └── AD5235_setPercentage │ │ │ └── AD5235_setPercentage.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AD5245 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AD5245.cpp │ ├── AD5245.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── AD5245_followA0 │ │ │ └── AD5245_followA0.ino │ │ ├── AD5245_isConnected │ │ │ └── AD5245_isConnected.ino │ │ ├── AD5245_sawtooth │ │ │ └── AD5245_sawtooth.ino │ │ └── AD5245_write_read │ │ │ └── AD5245_write_read.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AD5246 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AD5246.cpp │ ├── AD5246.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── AD5246_followA0 │ │ │ └── AD5246_followA0.ino │ │ ├── AD5246_isConnected │ │ │ └── AD5246_isConnected.ino │ │ ├── AD5246_sawtooth │ │ │ └── AD5246_sawtooth.ino │ │ └── AD5246_write_read │ │ │ └── AD5246_write_read.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AD5248 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AD5248.cpp │ ├── AD5248.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── AD5243_read │ │ │ └── AD5243_read.ino │ │ ├── AD5243_write │ │ │ └── AD5243_write.ino │ │ ├── AD5243_write_ESP32 │ │ │ ├── .arduino-ci.yml │ │ │ └── AD5243_write_ESP32.ino │ │ └── AD5243_write_RP2040 │ │ │ ├── .arduino-ci.yml │ │ │ └── AD5243_write_RP2040.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AD524X │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AD524X.cpp │ ├── AD524X.h │ ├── CHANGELOG.md │ ├── Cascading Potmeters.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── AD5241_write │ │ │ └── AD5241_write.ino │ │ ├── AD5242_write_RP2040 │ │ │ ├── .arduino-ci.yml │ │ │ └── AD5242_write_RP2040.ino │ │ ├── AD524X_followA0 │ │ │ └── AD524X_followA0.ino │ │ ├── AD524X_isConnected │ │ │ └── AD524X_isConnected.ino │ │ ├── AD524X_midScaleReset │ │ │ └── AD524X_midScaleReset.ino │ │ ├── AD524X_read │ │ │ └── AD524X_read.ino │ │ ├── AD524X_readBackRegister │ │ │ └── AD524X_readBackRegister.ino │ │ ├── AD524X_sawtooth │ │ │ └── AD524X_sawtooth.ino │ │ ├── AD524X_setO │ │ │ └── AD524X_setO.ino │ │ ├── AD524X_write │ │ │ └── AD524X_write.ino │ │ ├── AD5280_write_ESP32 │ │ │ ├── .arduino-ci.yml │ │ │ └── AD5280_write_ESP32.ino │ │ ├── AD5282_sawtooth │ │ │ └── AD5282_sawtooth.ino │ │ └── cascading_potentiometers │ │ │ └── cascading_potentiometers.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AD5263 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AD5263.cpp │ ├── AD5263.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── AD5263_I2C_performance │ │ │ └── AD5263_I2C_performance.ino │ │ ├── AD5263_followA0 │ │ │ └── AD5263_followA0.ino │ │ ├── AD5263_isConnected │ │ │ └── AD5263_isConnected.ino │ │ ├── AD5263_midScaleReset │ │ │ └── AD5263_midScaleReset.ino │ │ ├── AD5263_read │ │ │ └── AD5263_read.ino │ │ ├── AD5263_readBackRegister │ │ │ └── AD5263_readBackRegister.ino │ │ ├── AD5263_sawtooth │ │ │ └── AD5263_sawtooth.ino │ │ ├── AD5263_setO │ │ │ └── AD5263_setO.ino │ │ └── AD5263_write │ │ │ └── AD5263_write.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AD5370 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AD5370.cpp │ ├── AD5370.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── AD5370_demo │ │ │ └── AD5370_demo.ino │ │ └── AD5370_performance │ │ │ ├── AD5370_performance.ino │ │ │ └── performance_0.1.0.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AD5593R │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AD5593R.cpp │ ├── AD5593R.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── documents │ │ └── ad5593r.pdf │ ├── examples │ │ ├── AD5593R_setMode │ │ │ └── AD5593R_setMode.ino │ │ ├── AD5593R_temperature │ │ │ └── AD5593R_temperature.ino │ │ ├── AD5593R_test_adc │ │ │ └── AD5593R_test_adc.ino │ │ ├── AD5593R_test_connect │ │ │ └── AD5593R_test_connect.ino │ │ ├── AD5593R_test_dac │ │ │ ├── AD5593R_test_dac.ino │ │ │ └── output_0.1.1.txt │ │ ├── AD5593R_test_dac_ext_vref │ │ │ └── AD5593R_test_dac_ext_vref.ino │ │ ├── AD5593R_test_input │ │ │ └── AD5593R_test_input.ino │ │ ├── AD5593R_test_output │ │ │ └── AD5593R_test_output.ino │ │ ├── AD5593R_test_output_blink │ │ │ └── AD5593R_test_output_blink.ino │ │ ├── AD5593R_test_read8 │ │ │ └── AD5593R_test_read8.ino │ │ └── AD5593R_test_write8 │ │ │ └── AD5593R_test_write8.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AD5620 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AD5620.cpp │ ├── AD5620.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── AD5620_demo │ │ │ └── AD5620_demo.ino │ │ ├── AD5620_demo_ESP32 │ │ │ ├── .arduino-ci.yml │ │ │ └── AD5620_demo_ESP32.ino │ │ ├── AD5620_sawtooth │ │ │ └── AD5620_sawtooth.ino │ │ ├── AD5620_sinus │ │ │ └── AD5620_sinus.ino │ │ └── AD5620_triangle │ │ │ └── AD5620_triangle.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AD5660 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AD5660.cpp │ ├── AD5660.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── AD5660_demo │ │ │ └── AD5660_demo.ino │ │ ├── AD5660_demo_ESP32 │ │ │ ├── .arduino-ci.yml │ │ │ └── AD5660_demo_ESP32.ino │ │ ├── AD5660_sawtooth │ │ │ └── AD5660_sawtooth.ino │ │ ├── AD5660_sinus │ │ │ └── AD5660_sinus.ino │ │ └── AD5660_triangle │ │ │ └── AD5660_triangle.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AD5680 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AD5680.cpp │ ├── AD5680.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── AD5680_demo │ │ │ └── AD5680_demo.ino │ │ ├── AD5680_demo_ESP32 │ │ │ ├── .arduino-ci.yml │ │ │ └── AD5680_demo_ESP32.ino │ │ ├── AD5680_sawtooth │ │ │ └── AD5680_sawtooth.ino │ │ ├── AD5680_sinus │ │ │ └── AD5680_sinus.ino │ │ └── AD5680_triangle │ │ │ └── AD5680_triangle.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AD568X │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AD568X.cpp │ ├── AD568X.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── AD568X_demo │ │ │ └── AD568X_demo.ino │ │ ├── AD568X_demo_ESP32 │ │ │ ├── .arduino-ci.yml │ │ │ └── AD568X_demo_ESP32.ino │ │ └── AD568X_sinus │ │ │ └── AD568X_sinus.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AD56X8 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AD56X8.cpp │ ├── AD56X8.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── AD56X8_performance │ │ │ ├── AD56X8_performance.ino │ │ │ └── performance_0.1.1.txt │ │ ├── AD56X8_test │ │ │ └── AD56X8_test.ino │ │ ├── AD56X8_test_ESP32 │ │ │ ├── .arduino-ci.yml │ │ │ └── AD56X8_test_ESP32.ino │ │ ├── AD56X8_test_percentage │ │ │ └── AD56X8_test_percentage.ino │ │ └── AD56X8_wave │ │ │ └── AD56X8_wave.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AD7367 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AD7367.cpp │ ├── AD7367.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── documents │ │ └── AD7366_7367.pdf │ ├── examples │ │ ├── AD7367_addr_select │ │ │ └── AD7367_addr_select.ino │ │ ├── AD7367_asynchronous │ │ │ └── AD7367_asynchronous.ino │ │ ├── AD7367_fastRead_array │ │ │ └── AD7367_fastRead_array.ino │ │ ├── AD7367_minimal │ │ │ └── AD7367_minimal.ino │ │ ├── AD7367_performance │ │ │ ├── AD7367_performance.ino │ │ │ └── performance_0.1.0.txt │ │ ├── AD7367_reference_select │ │ │ └── AD7367_reference_select.ino │ │ └── AD7367_setRange │ │ │ └── AD7367_setRange.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AD7367_SPI │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AD7367_SPI.cpp │ ├── AD7367_SPI.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── AD7367_addr_select │ │ │ └── AD7367_addr_select.ino │ │ ├── AD7367_asynchronous │ │ │ └── AD7367_asynchronous.ino │ │ ├── AD7367_fastRead_array │ │ │ └── AD7367_fastRead_array.ino │ │ ├── AD7367_minimal │ │ │ └── AD7367_minimal.ino │ │ ├── AD7367_performance │ │ │ ├── AD7367_performance.ino │ │ │ └── performance_0.1.0.txt │ │ ├── AD7367_reference_select │ │ │ └── AD7367_reference_select.ino │ │ └── AD7367_setRange │ │ │ └── AD7367_setRange.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── notes.txt │ └── test │ │ └── unit_test_001.cpp ├── AD7390 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AD7390.cpp │ ├── AD7390.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── AD7390_demo │ │ │ └── AD7390_demo.ino │ │ ├── AD7390_performance │ │ │ ├── AD7390_performance.ino │ │ │ └── AD7390_performance_0.1.1.txt │ │ ├── AD7390_setPercentage │ │ │ └── AD7390_setPercentage.ino │ │ ├── AD7390_setVoltage │ │ │ └── AD7390_setVoltage.ino │ │ ├── AD7390_wave_generator │ │ │ └── AD7390_wave_generator.ino │ │ └── AD7391_setPercentage │ │ │ └── AD7391_setPercentage.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AD8495 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AD8495.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── AD8494_offset │ │ │ └── AD8494_offset.ino │ │ ├── AD8495_demo │ │ │ └── AD8495_demo.ino │ │ ├── AD8495_plotter │ │ │ └── AD8495_plotter.ino │ │ └── AD8497_Fahrenheit │ │ │ └── AD8497_Fahrenheit.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AD9833 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AD9833.cpp │ ├── AD9833.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── AD9833_1000_Hz │ │ │ └── AD9833_1000_Hz.ino │ │ ├── AD9833_HLB_MODE │ │ │ └── AD9833_HLB_MODE.ino │ │ ├── AD9833_minimal │ │ │ └── AD9833_minimal.ino │ │ ├── AD9833_minimal_ESP32 │ │ │ ├── .arduino-ci.yml │ │ │ └── AD9833_minimal_ESP32.ino │ │ ├── AD9833_multi_device │ │ │ └── AD9833_multi_device.ino │ │ ├── AD9833_performance │ │ │ ├── AD9833_performance.ino │ │ │ ├── performance_0.1.0. - ESP32.txt │ │ │ ├── performance_0.1.0..txt │ │ │ ├── performance_0.1.1.txt │ │ │ ├── performance_0.2.0. - ESP32.txt │ │ │ ├── performance_0.3.0 - ESP32.txt │ │ │ ├── performance_0.3.0 - UNO.txt │ │ │ ├── performance_0.3.1 - UNO.txt │ │ │ ├── performance_0.4.1 - UNO.txt │ │ │ └── performance_0.4.2 - UNO.txt │ │ ├── AD9833_sweep │ │ │ └── AD9833_sweep.ino │ │ ├── AD9833_switch_channel │ │ │ └── AD9833_switch_channel.ino │ │ ├── AD9833_switch_phase │ │ │ └── AD9833_switch_phase.ino │ │ └── AD9833_test_10 │ │ │ └── AD9833_test_10.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AD985X │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AD985X.cpp │ ├── AD985X.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── Multi_AD985X_devices.pdf │ ├── README.md │ ├── examples │ │ ├── AD9850_ESP32_HWSPI │ │ │ ├── .arduino-ci.yml │ │ │ └── AD9850_ESP32_HWSPI.ino │ │ ├── AD9850_demo │ │ │ └── AD9850_demo.ino │ │ ├── AD9850_demo_float │ │ │ └── AD9850_demo_float.ino │ │ ├── AD9850_multi │ │ │ └── AD9850_multi.ino │ │ ├── AD9850_multi_sync │ │ │ └── AD9850_multi_sync.ino │ │ ├── AD9851_demo │ │ │ └── AD9851_demo.ino │ │ ├── AD9851_demo_2 │ │ │ └── AD9851_demo_2.ino │ │ ├── AD9851_demo_float │ │ │ └── AD9851_demo_float.ino │ │ ├── AD9851_manual_update │ │ │ └── AD9851_manual_update.ino │ │ ├── AD9851_six_potmeter │ │ │ ├── .arduino-ci.yml │ │ │ ├── AD9851_six_potmeter.ino │ │ │ └── does_not_run_on_all.txt │ │ ├── AD9851_sweeper │ │ │ └── AD9851_sweeper.ino │ │ └── AD985X_array │ │ │ └── AD985X_array.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── ADC081S │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── ADC081S.cpp │ ├── ADC081S.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── ADC081S_low_power │ │ │ └── ADC081S_low_power.ino │ │ ├── ADC081S_performance │ │ │ ├── ADC081S_performance.ino │ │ │ ├── performance_0.1.0.md │ │ │ └── performance_0.1.2.md │ │ ├── ADC081S_read │ │ │ └── ADC081S_read.ino │ │ └── ADC081S_read_SPI1 │ │ │ ├── .arduino-ci.yml │ │ │ └── ADC081S_read_SPI1.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── ADC08XS │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── ADC08XS.cpp │ ├── ADC08XS.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── ADC08XS_deltaRead │ │ │ └── ADC08XS_deltaRead.ino │ │ ├── ADC08XS_low_power │ │ │ └── ADC08XS_low_power.ino │ │ ├── ADC08XS_performance │ │ │ ├── ADC08XS_performance.ino │ │ │ └── performance_0.1.0.md │ │ ├── ADC08XS_read │ │ │ └── ADC08XS_read.ino │ │ ├── ADC08XS_read_SPI1 │ │ │ ├── .arduino-ci.yml │ │ │ └── ADC08XS_read_SPI1.ino │ │ ├── ADC122S_read_2_channel │ │ │ └── ADC122S_read_2_channel.ino │ │ └── ADC122S_stand_alone │ │ │ └── ADC122S_stand_alone.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── ADG2128_RT │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── ADG2128.cpp │ ├── ADG2128.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── ADG2128_demo │ │ │ └── ADG2128_demo.ino │ │ ├── ADG2128_isOn │ │ │ └── ADG2128_isOn.ino │ │ ├── ADG2128_isOnRow │ │ │ └── ADG2128_isOnRow.ino │ │ └── ADG2128_latch_mode │ │ │ └── ADG2128_latch_mode.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── ADG2188 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── ADG2188.cpp │ ├── ADG2188.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── ADG2188_demo │ │ │ └── ADG2188_demo.ino │ │ ├── ADG2188_isOn │ │ │ └── ADG2188_isOn.ino │ │ ├── ADG2188_isOnRow │ │ │ └── ADG2188_isOnRow.ino │ │ └── ADG2188_latch_mode │ │ │ └── ADG2188_latch_mode.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── ADG725 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── ADG725.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── ADG725_demo │ │ │ └── ADG725_demo.ino │ │ └── ADG725_performance │ │ │ ├── ADG725_performance.ino │ │ │ ├── performance_0.1.1.txt │ │ │ └── performance_0.1.2.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── ADG726 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── ADG726.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── ADG726_demo │ │ │ └── ADG726_demo.ino │ │ └── ADG726_performance │ │ │ ├── ADG726_performance.ino │ │ │ └── performance_0.1.2.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── ADG728 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── ADG728.cpp │ ├── ADG728.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── documents │ │ └── ADG728_729.pdf │ ├── examples │ │ └── ADG728_demo │ │ │ └── ADG728_demo.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── ADG729 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── ADG729.cpp │ ├── ADG729.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── documents │ │ └── ADG728_729.pdf │ ├── examples │ │ └── ADG729_demo │ │ │ └── ADG729_demo.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── ADG731 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── ADG731.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── ADG731_demo │ │ │ └── ADG731_demo.ino │ │ └── ADG731_performance │ │ │ ├── ADG731_performance.ino │ │ │ └── performance_0.1.2.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── ADG732 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── ADG732.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── ADG732_demo │ │ │ └── ADG732_demo.ino │ │ └── ADG732_performance │ │ │ ├── ADG732_performance.ino │ │ │ └── performance_0.1.2.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── ADS1x15 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── ADS1X15.cpp │ ├── ADS1X15.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── ADS1113_getMaxVoltage │ │ │ └── ADS1113_getMaxVoltage.ino │ │ ├── ADS_1114_four │ │ │ └── ADS_1114_four.ino │ │ ├── ADS_1114_two_continuous │ │ │ └── ADS_1114_two_continuous.ino │ │ ├── ADS_COMP_POL │ │ │ └── ADS_COMP_POL.ino │ │ ├── ADS_RP2040_WIRE1 │ │ │ ├── .arduino-ci.yml │ │ │ └── ADS_RP2040_WIRE1.ino │ │ ├── ADS_async_16_channel │ │ │ └── ADS_async_16_channel.ino │ │ ├── ADS_async_8_channel │ │ │ └── ADS_async_8_channel.ino │ │ ├── ADS_async_differential │ │ │ └── ADS_async_differential.ino │ │ ├── ADS_continuous │ │ │ └── ADS_continuous.ino │ │ ├── ADS_continuous_3_channel │ │ │ └── ADS_continuous_3_channel.ino │ │ ├── ADS_continuous_4_channel │ │ │ └── ADS_continuous_4_channel.ino │ │ ├── ADS_continuous_8_channel │ │ │ └── ADS_continuous_8_channel.ino │ │ ├── ADS_continuous_differential │ │ │ └── ADS_continuous_differential.ino │ │ ├── ADS_differential │ │ │ └── ADS_differential.ino │ │ ├── ADS_high_speed_differential │ │ │ └── ADS_high_speed_differential.ino │ │ ├── ADS_minimum │ │ │ └── ADS_minimum.ino │ │ ├── ADS_performance │ │ │ ├── ADS_performance.ino │ │ │ ├── performance_0.3.9.md │ │ │ └── performance_0.4.4.md │ │ ├── ADS_pointerToFunction │ │ │ ├── .arduino-ci.yml │ │ │ └── ADS_pointerToFunction.ino │ │ ├── ADS_read │ │ │ └── ADS_read.ino │ │ ├── ADS_read_RDY │ │ │ └── ADS_read_RDY.ino │ │ ├── ADS_read_async │ │ │ └── ADS_read_async.ino │ │ ├── ADS_read_async_rdy │ │ │ └── ADS_read_async_rdy.ino │ │ ├── ADS_read_comparator_1 │ │ │ └── ADS_read_comparator_1.ino │ │ ├── ADS_read_getError │ │ │ └── ADS_read_getError.ino │ │ ├── ADS_setWireClock │ │ │ └── ADS_setWireClock.ino │ │ └── ADS_test_config │ │ │ └── ADS_test_config.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── ADT7470 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── ADT7470.cpp │ ├── ADT7470.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── documents │ │ ├── ADT7470.pdf │ │ ├── ADT7470_TMP05_Block_Diagram.pdf │ │ ├── Problem Report - ADI Enginnering Zone.pdf │ │ ├── TMP05 Daisy Chain Temperature Sensors.PDF │ │ └── TMP05_06.pdf │ ├── examples │ │ └── adt7470_demo │ │ │ └── adt7470_demo.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AGS02MA │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AGS02MA.cpp │ ├── AGS02MA.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── AGS02MA_PPB │ │ │ └── AGS02MA_PPB.ino │ │ ├── AGS02MA_PPB_TIMING │ │ │ ├── AGS02MA_PPB_TIMING.ino │ │ │ ├── performance_0.3.0.txt │ │ │ ├── performance_0.3.1_10khz.txt │ │ │ └── performance_0.3.1_25khz.txt │ │ ├── AGS02MA_PPM │ │ │ └── AGS02MA_PPM.ino │ │ ├── AGS02MA_UGM3 │ │ │ └── AGS02MA_UGM3.ino │ │ ├── AGS02MA_calibrate │ │ │ └── AGS02MA_calibrate.ino │ │ ├── AGS02MA_calibrate_manual │ │ │ └── AGS02MA_calibrate_manual.ino │ │ ├── AGS02MA_get_registers │ │ │ ├── .arduino-ci.yml │ │ │ └── AGS02MA_get_registers.ino │ │ ├── AGS02MA_minimal │ │ │ └── AGS02MA_minimal.ino │ │ ├── AGS02MA_minimal_plotter │ │ │ └── AGS02MA_minimal_plotter.ino │ │ ├── AGS02MA_readRegister │ │ │ └── AGS02MA_readRegister.ino │ │ ├── AGS02MA_setAddress │ │ │ └── AGS02MA_setAddress.ino │ │ ├── AGS02MA_test │ │ │ └── AGS02MA_test.ino │ │ ├── AGS02MA_test_CRC8 │ │ │ ├── .arduino-ci.yml │ │ │ └── AGS02MA_test_CRC8.ino │ │ ├── issue │ │ │ └── issue.ino │ │ └── test_CRC8 │ │ │ ├── .arduino-ci.yml │ │ │ └── test_CRC8.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AGS2616 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AGS2616.cpp │ ├── AGS2616.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── documents │ │ ├── ags2616.pdf │ │ └── ags2616_english_by_google.pdf │ ├── examples │ │ ├── AGS2616_PPM │ │ │ └── AGS2616_PPM.ino │ │ ├── AGS2616_PPM_plotter │ │ │ └── AGS2616_PPM_plotter.ino │ │ ├── AGS2616_get_registers │ │ │ ├── .arduino-ci.yml │ │ │ └── AGS2616_get_registers.ino │ │ ├── AGS2616_raw_demo │ │ │ └── AGS2616_raw_demo.ino │ │ └── AGS2616_raw_plotter │ │ │ └── AGS2616_raw_plotter.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AGS3870 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AGS3870.cpp │ ├── AGS3870.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── documents │ │ └── ags3870-a1-20240313.pdf │ ├── examples │ │ ├── AGS3870_PPM │ │ │ └── AGS3870_PPM.ino │ │ ├── AGS3870_PPM_plotter │ │ │ └── AGS3870_PPM_plotter.ino │ │ ├── AGS3870_get_registers │ │ │ ├── .arduino-ci.yml │ │ │ └── AGS3870_get_registers.ino │ │ ├── AGS3870_raw_demo │ │ │ └── AGS3870_raw_demo.ino │ │ └── AGS3870_raw_plotter │ │ │ └── AGS3870_raw_plotter.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AGS3871 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AGS3871.cpp │ ├── AGS3871.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── documents │ │ ├── ags3871.pdf │ │ └── ags3871_english_by_google.pdf │ ├── examples │ │ ├── AGS3871_PPM │ │ │ └── AGS3871_PPM.ino │ │ ├── AGS3871_PPM_plotter │ │ │ └── AGS3871_PPM_plotter.ino │ │ ├── AGS3871_get_registers │ │ │ ├── .arduino-ci.yml │ │ │ └── AGS3871_get_registers.ino │ │ ├── AGS3871_raw_demo │ │ │ └── AGS3871_raw_demo.ino │ │ └── AGS3871_raw_plotter │ │ │ └── AGS3871_raw_plotter.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AM2315 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AM2315.cpp │ ├── AM2315.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── docs │ │ └── AM2315.pdf │ ├── examples │ │ ├── AM2315_Wire1 │ │ │ ├── .arduino-ci.yml │ │ │ └── AM2315_Wire1.ino │ │ ├── AM2315_offset │ │ │ └── AM2315_offset.ino │ │ ├── AM2315_performance │ │ │ └── AM2315_performance.ino │ │ └── AM2315_test │ │ │ └── AM2315_test.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AM2315C │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AM2315C.cpp │ ├── AM2315C.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── AM2315C │ │ │ └── AM2315C.ino │ │ ├── AM2315C_I2C_speed │ │ │ └── AM2315C_I2C_speed.ino │ │ ├── AM2315C_async │ │ │ └── AM2315C_async.ino │ │ ├── AM2315C_lcd │ │ │ ├── .arduino-ci.yml │ │ │ └── AM2315C_lcd.ino │ │ ├── AM2315C_offset │ │ │ └── AM2315C_offset.ino │ │ ├── AM2315C_plotter │ │ │ └── AM2315C_plotter.ino │ │ ├── AM2315C_read_status │ │ │ └── AM2315C_read_status.ino │ │ ├── AM2315C_test_Wire1 │ │ │ ├── .arduino-ci.yml │ │ │ └── AM2315C_test_Wire1.ino │ │ └── AM2315C_test_esp │ │ │ ├── .arduino-ci.yml │ │ │ └── AM2315C_test_esp.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AM232X │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AM232X.cpp │ ├── AM232X.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── AM2320 │ │ │ └── AM2320.ino │ │ ├── AM2320_ESP32 │ │ │ ├── .arduino-ci.yml │ │ │ └── AM2320_ESP32.ino │ │ ├── AM2320_test │ │ │ └── AM2320_test.ino │ │ ├── AM2322 │ │ │ └── AM2322.ino │ │ ├── AM2322_plotter │ │ │ └── AM2322_plotter.ino │ │ └── TCA9548_demo_AM2320 │ │ │ ├── .arduino-ci.yml │ │ │ └── TCA9548_demo_AM2320.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AMT25 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AMT25.cpp │ ├── AMT25.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── AMT25_HW_SPI │ │ │ └── AMT25_HW_SPI.ino │ │ ├── AMT25_HW_SPI_RPM │ │ │ └── AMT25_HW_SPI_RPM.ino │ │ ├── AMT25_HW_SPI_getTurns │ │ │ ├── AMT25_HW_SPI_getTurns.ino │ │ │ └── performance_0.1.0.txt │ │ ├── AMT25_HW_SPI_performance │ │ │ ├── AMT25_HW_SPI_performance.ino │ │ │ └── performance_0.1.0.txt │ │ └── AMT25_SW_SPI_performance │ │ │ ├── AMT25_SW_SPI_performance.ino │ │ │ └── performance_0.1.0.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── ANSI │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── ansi.cpp │ ├── ansi.h │ ├── examples │ │ ├── ansiDemo01 │ │ │ └── ansiDemo01.ino │ │ ├── ansiDemo02 │ │ │ └── ansiDemo02.ino │ │ ├── ansiTestPrint │ │ │ └── ansiTestPrint.ino │ │ ├── ansi_132_column │ │ │ └── ansi_132_column.ino │ │ ├── ansi_IO │ │ │ └── ansi_IO.ino │ │ ├── ansi_char_test │ │ │ └── ansi_char_test.ino │ │ ├── ansi_clearline │ │ │ └── ansi_clearline.ino │ │ ├── ansi_clock │ │ │ └── ansi_clock.ino │ │ ├── ansi_cursorHide │ │ │ └── ansi_cursorHide.ino │ │ ├── ansi_deviceType │ │ │ └── ansi_deviceType.ino │ │ ├── ansi_dht22 │ │ │ ├── .arduino-ci.yml │ │ │ └── ansi_dht22.ino │ │ ├── ansi_gotoXY │ │ │ └── ansi_gotoXY.ino │ │ ├── ansi_performance │ │ │ ├── ansi_performance.ino │ │ │ ├── performance_0.1.4.txt │ │ │ ├── performance_0.1.5.txt │ │ │ ├── performance_0.2.0.txt │ │ │ └── performance_0.3.0.txt │ │ └── ansi_screenSize │ │ │ └── ansi_screenSize.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── supportMatrix.md │ └── test │ │ └── unit_test_001.cpp ├── APDS9900 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── APDS9900.cpp │ ├── APDS9900.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── documents │ │ └── 005419_APDS-9900-Datasheet.pdf │ ├── examples │ │ ├── APDS9900_dump_registers │ │ │ ├── APDS9900_dump_registers.ino │ │ │ └── dump_registers_0.1.1.txt │ │ ├── APDS9900_minimal │ │ │ └── APDS9900_minimal.ino │ │ ├── APDS9900_performance │ │ │ ├── APDS9900_performance.ino │ │ │ └── performance_0.2.0.txt │ │ ├── APDS9900_proximity │ │ │ └── APDS9900_proximity.ino │ │ └── APDS9900_test │ │ │ └── APDS9900_test.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AS5600 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AS5600.cpp │ ├── AS5600.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── AS5600L_set_address │ │ │ └── AS5600L_set_address.ino │ │ ├── AS5600_I2C_frequency │ │ │ └── AS5600_I2C_frequency.ino │ │ ├── AS5600_angular_speed │ │ │ └── AS5600_angular_speed.ino │ │ ├── AS5600_angular_speed_RPM │ │ │ └── AS5600_angular_speed_RPM.ino │ │ ├── AS5600_burn_conf_mang │ │ │ └── AS5600_burn_conf_mang.ino │ │ ├── AS5600_burn_zpos │ │ │ └── AS5600_burn_zpos.ino │ │ ├── AS5600_demo │ │ │ └── AS5600_demo.ino │ │ ├── AS5600_demo_ESP32 │ │ │ ├── .arduino-ci.yml │ │ │ └── AS5600_demo_ESP32.ino │ │ ├── AS5600_demo_RP2040 │ │ │ ├── .arduino-ci.yml │ │ │ └── AS5600_demo_RP2040.ino │ │ ├── AS5600_demo_STM32 │ │ │ ├── .arduino-ci.yml │ │ │ └── AS5600_demo_STM32.ino │ │ ├── AS5600_demo_offset │ │ │ └── AS5600_demo_offset.ino │ │ ├── AS5600_demo_radians │ │ │ └── AS5600_demo_radians.ino │ │ ├── AS5600_demo_software_direction │ │ │ └── AS5600_demo_software_direction.ino │ │ ├── AS5600_demo_status │ │ │ └── AS5600_demo_status.ino │ │ ├── AS5600_demo_two_I2C │ │ │ ├── .arduino-ci.yml │ │ │ └── AS5600_demo_two_I2C.ino │ │ ├── AS5600_detect_type │ │ │ └── AS5600_detect_type.ino │ │ ├── AS5600_outmode_analog_100 │ │ │ └── AS5600_outmode_analog_100.ino │ │ ├── AS5600_outmode_analog_90 │ │ │ └── AS5600_outmode_analog_90.ino │ │ ├── AS5600_outmode_analog_pwm │ │ │ └── AS5600_outmode_analog_pwm.ino │ │ ├── AS5600_outmode_pwm_interrupt │ │ │ └── AS5600_outmode_pwm_interrupt.ino │ │ ├── AS5600_output_speedtest │ │ │ ├── .arduino-ci.yml │ │ │ └── AS5600_output_speedtest.ino │ │ ├── AS5600_plus_AS5600L │ │ │ └── AS5600_plus_AS5600L.ino │ │ ├── AS5600_position │ │ │ └── AS5600_position.ino │ │ ├── AS5600_position_speed │ │ │ ├── AS5600_position_speed.ino │ │ │ └── output_0.6.4_UNO.txt │ │ ├── AS5600_pwm_test │ │ │ └── AS5600_pwm_test.ino │ │ ├── AS5600_pwm_test2 │ │ │ └── AS5600_pwm_test2.ino │ │ └── AS5600_resetCumulativeCounter │ │ │ ├── .arduino-ci.yml │ │ │ └── AS5600_resetCumulativeCounter.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── notes_on_PWM.md │ └── test │ │ └── unit_test_001.cpp ├── AS7331 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AS7331.cpp │ ├── AS7331.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── AS7331_SYNS_IRQ │ │ │ └── AS7331_SYNS_IRQ.ino │ │ ├── AS7331_continuous_IRQ │ │ │ └── AS7331_continuous_IRQ.ino │ │ ├── AS7331_interactive │ │ │ └── AS7331_interactive.ino │ │ ├── AS7331_manual_IRQ │ │ │ └── AS7331_manual_IRQ.ino │ │ ├── AS7331_manual_POLL │ │ │ └── AS7331_manual_POLL.ino │ │ ├── AS7331_manual_POLL_Wire1 │ │ │ ├── .arduino-ci.yml │ │ │ └── AS7331_manual_POLL_Wire1.ino │ │ ├── AS7331_manual_POLL_array │ │ │ └── AS7331_manual_POLL_array.ino │ │ ├── AS7331_minimal │ │ │ └── AS7331_minimal.ino │ │ └── AS7331_performance │ │ │ ├── AS7331_performance.ino │ │ │ └── AS7331_performance_0.2.0.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── Adler │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── Adler.cpp │ ├── Adler.h │ ├── Adler16.cpp │ ├── Adler16.h │ ├── Adler32.cpp │ ├── Adler32.h │ ├── Adler64.cpp │ ├── Adler64.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── Adler16_performance │ │ │ ├── Adler16_performance.ino │ │ │ ├── Adler16_performance_0.1.0.txt │ │ │ ├── Adler16_performance_0.2.0.txt │ │ │ └── Adler16_performance_0.25.txt │ │ ├── Adler16_test │ │ │ ├── Adler16_test.ino │ │ │ └── output_0.1.0.txt │ │ ├── Adler32_performance │ │ │ ├── Adler32_performance.ino │ │ │ ├── Adler32_performance_0.1.0.txt │ │ │ ├── Adler32_performance_0.1.2.txt │ │ │ ├── Adler32_performance_0.2.0.txt │ │ │ ├── Adler32_performance_0.2.0_esp32.txt │ │ │ └── Adler32_performance_0.2.5.txt │ │ ├── Adler32_performance_addFast │ │ │ └── Adler32_performance_addFast.ino │ │ ├── Adler32_test │ │ │ └── Adler32_test.ino │ │ ├── Adler64_performance │ │ │ ├── Adler64_performance.ino │ │ │ └── Adler64_performance_0.3.0.txt │ │ ├── Adler64_test │ │ │ └── Adler64_test.ino │ │ ├── Adler_performance │ │ │ ├── Adler_performance.ino │ │ │ ├── performance_0.1.0.txt │ │ │ ├── performance_0.2.3.txt │ │ │ ├── performance_0.2.4.txt │ │ │ ├── performance_0.2.5.txt │ │ │ └── performance_0.3.0.txt │ │ └── Adler_test │ │ │ ├── Adler_test.ino │ │ │ ├── output_0.2.4.txt │ │ │ └── output_0.3.0.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ ├── unit_test_001.cpp │ │ ├── unit_test_Adler16.cpp │ │ └── unit_test_Adler32.cpp ├── AnalogKeypad │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AnalogKeypad.cpp │ ├── AnalogKeypad.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── analogKeypad │ │ │ └── analogKeypad.ino │ │ ├── analogKeypad_performance │ │ │ └── analogKeypad_performance.ino │ │ └── analogKeypad_values │ │ │ └── analogKeypad_values.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AnalogPin │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AnalogPin.cpp │ ├── AnalogPin.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── AnalogPin │ │ │ └── AnalogPin.ino │ │ ├── AnalogPin_performance │ │ │ ├── AnalogPin_performance.ino │ │ │ └── AnalogPin_performance_0.2.10.txt │ │ ├── AnalogPin_prescaler │ │ │ └── AnalogPin_prescaler.ino │ │ └── AnalogPin_volts │ │ │ └── AnalogPin_volts.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AnalogUVSensor │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AnalogUVSensor.cpp │ ├── AnalogUVSensor.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── analog_uv_sensor │ │ │ └── analog_uv_sensor.ino │ │ ├── uvi_color │ │ │ └── uvi_color.ino │ │ ├── uvi_demo │ │ │ └── uvi_demo.ino │ │ ├── uvi_demo_low_power │ │ │ └── uvi_demo_low_power.ino │ │ ├── uvi_plotter │ │ │ └── uvi_plotter.ino │ │ └── uvi_test │ │ │ └── uvi_test.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── Angle │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── Angle.cpp │ ├── Angle.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── Angle_performance │ │ │ ├── Angle_performance.ino │ │ │ ├── performance_0.1.14.txt │ │ │ └── performance_0.2.0.txt │ │ ├── format_angle │ │ │ └── format_angle.ino │ │ └── test_angle01 │ │ │ ├── output_0.2.1.txt │ │ │ └── test_angle01.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AngleConvertor │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AngleConvertor.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── AngleConverter_demo │ │ │ ├── AngleConverter_demo.ino │ │ │ ├── output_0.1.2.txt │ │ │ └── output_0.2.0.txt │ │ ├── AngleConverter_fast_factor │ │ │ ├── AngleConverter_fast_factor.ino │ │ │ └── output_0.2.2.txt │ │ ├── AngleConverter_performance │ │ │ ├── AngleConverter_performance.ino │ │ │ └── performance_0.1.2.txt │ │ └── AngleConverter_windrose │ │ │ └── AngleConverter_windrose.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AsyncAnalog │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AsyncAnalog.cpp │ ├── AsyncAnalog.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── asyncAnalogTest │ │ │ └── asyncAnalogTest.ino │ │ └── asyncAnalogTest2 │ │ │ └── asyncAnalogTest2.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp_no_valid_test ├── AtomicWeight │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AtomicWeight.cpp │ ├── AtomicWeight.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── acids.h │ ├── elements_float.h │ ├── elements_name.h │ ├── elements_uint16.h │ ├── examples │ │ ├── atomic_count_atomPercentage │ │ │ ├── atomic_count_atomPercentage.ino │ │ │ └── output_0.1.4.txt │ │ ├── atomic_count_split │ │ │ ├── atomic_count_split.ino │ │ │ └── performance_0.1.4.txt │ │ ├── atomic_grams_moles │ │ │ └── atomic_grams_moles.ino │ │ ├── atomic_weight_acids │ │ │ └── atomic_weight_acids.ino │ │ ├── atomic_weight_bases │ │ │ └── atomic_weight_bases.ino │ │ ├── atomic_weight_count_protons │ │ │ └── atomic_weight_count_protons.ino │ │ ├── atomic_weight_find │ │ │ └── atomic_weight_find.ino │ │ ├── atomic_weight_find_performance │ │ │ └── atomic_weight_find_performance.ino │ │ ├── atomic_weight_formula │ │ │ ├── atomic_weight_formula.ino │ │ │ └── output_0.1.1.txt │ │ ├── atomic_weight_massPercentage │ │ │ ├── atomic_weight_massPercentage.ino │ │ │ ├── output_0.1.3.txt │ │ │ └── output_0.2.2.txt │ │ ├── atomic_weight_minerals_0 │ │ │ └── atomic_weight_minerals_0.ino │ │ ├── atomic_weight_minerals_1 │ │ │ └── atomic_weight_minerals_1.ino │ │ ├── atomic_weight_minerals_2 │ │ │ └── atomic_weight_minerals_2.ino │ │ ├── atomic_weight_minerals_3 │ │ │ └── atomic_weight_minerals_3.ino │ │ ├── atomic_weight_minerals_4 │ │ │ └── atomic_weight_minerals_4.ino │ │ ├── atomic_weight_print │ │ │ ├── .arduino-ci.yml │ │ │ └── atomic_weight_print.ino │ │ ├── atomic_weight_split │ │ │ ├── atomic_weight_split.ino │ │ │ ├── performance_0.1.4.txt │ │ │ └── performance_0.3.2.txt │ │ ├── atomic_weight_test │ │ │ └── atomic_weight_test.ino │ │ ├── generate_uint16_table │ │ │ ├── elements_float.h │ │ │ └── generate_uint16_table.ino │ │ └── search_for_weight_factor │ │ │ ├── elements_float.h │ │ │ └── search_for_weight_factor.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── minerals.h │ └── test │ │ └── unit_test_001.cpp ├── AverageAngle │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── AverageAngle.cpp │ ├── AverageAngle.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── AverageAngle1 │ │ │ └── AverageAngle1.ino │ │ ├── AverageAngle2 │ │ │ └── AverageAngle2.ino │ │ ├── AverageAngle_getSum │ │ │ └── AverageAngle_getSum.ino │ │ ├── AverageAngle_performance │ │ │ ├── AverageAngle_performance.ino │ │ │ └── performance_0.2.3.txt │ │ └── AverageAngle_setType │ │ │ └── AverageAngle_setType.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── AvrHeap │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── avrheap.cpp │ ├── avrheap.h │ ├── examples │ │ ├── heapdemo │ │ │ └── heapdemo.ino │ │ ├── heapdemo1_pre_0.1.03 │ │ │ └── heapdemo1_pre_0.1.03.ino │ │ ├── heapdemo2 │ │ │ └── heapdemo2.ino │ │ └── readme.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp_no test_possible ├── BH1750FVI_RT │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── BH1750FVI.cpp │ ├── BH1750FVI.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── BH1750FVI_angle_measurement │ │ │ ├── BH1750FVI_angle_measurement.ino │ │ │ └── experimental.txt │ │ ├── BH1750FVI_async │ │ │ └── BH1750FVI_async.ino │ │ ├── BH1750FVI_cont_high_res │ │ │ └── BH1750FVI_cont_high_res.ino │ │ ├── BH1750FVI_cont_high_res_Wire1 │ │ │ ├── .arduino-ci.yml │ │ │ └── BH1750FVI_cont_high_res_Wire1.ino │ │ ├── BH1750FVI_cont_low_res │ │ │ └── BH1750FVI_cont_low_res.ino │ │ ├── BH1750FVI_setAngle │ │ │ └── BH1750FVI_setAngle.ino │ │ ├── BH1750FVI_setCorrectionFactor │ │ │ └── BH1750FVI_setCorrectionFactor.ino │ │ ├── BH1750FVI_setTemperature │ │ │ └── BH1750FVI_setTemperature.ino │ │ ├── BH1750FVI_setWaveLength │ │ │ └── BH1750FVI_setWaveLength.ino │ │ ├── BH1750FVI_single_shot_3_res │ │ │ └── BH1750FVI_single_shot_3_res.ino │ │ └── BH1750FVI_two_devices │ │ │ └── BH1750FVI_two_devices.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── BitArray │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── BitArray.cpp │ ├── BitArray.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── bitArrayDemo1 │ │ │ └── bitArrayDemo1.ino │ │ ├── bitArrayDemo2 │ │ │ ├── bitArrayDemo2.ino │ │ │ └── output_0.2.9.txt │ │ ├── bitArrayDiceDemo │ │ │ └── bitArrayDiceDemo.ino │ │ ├── bitArrayPerformance │ │ │ ├── .arduino-ci.yml │ │ │ ├── bitArrayPerformance.ino │ │ │ ├── performance_0.1.8.txt │ │ │ ├── performance_0.2.3.txt │ │ │ └── performance_0.2.9.txt │ │ ├── bitArrayToggle │ │ │ ├── bitArrayToggle.ino │ │ │ └── output_0.2.9.txt │ │ └── fibonacci │ │ │ └── fibonacci.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── BoolArray │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── BoolArray.cpp │ ├── BoolArray.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── boolArrayDemo0 │ │ │ ├── boolArrayDemo0.ino │ │ │ ├── output_2.3.txt │ │ │ ├── output_ESP32_0.3.1.txt │ │ │ └── output_UNOR3_0.3.0.txt │ │ └── boolArrayDemo2 │ │ │ ├── boolArrayDemo2.ino │ │ │ ├── performance_0.2.0.txt │ │ │ ├── performance_0.2.3.txt │ │ │ ├── performance_0.2.4.txt │ │ │ ├── performance_0.2.7.txt │ │ │ └── performance_0.3.0.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── CHT8305 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── CHT8305.cpp │ ├── CHT8305.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── CHT8305_getVoltage │ │ │ └── CHT8305_getVoltage.ino │ │ ├── CHT8305_minimal │ │ │ └── CHT8305_minimal.ino │ │ ├── CHT8305_performance │ │ │ ├── CHT8305_performance.ino │ │ │ └── performance_0.2.2.txt │ │ ├── CHT8305_plotter │ │ │ ├── CHT8305_plotter.ino │ │ │ └── Capture001.JPG │ │ ├── CHT8305_resolution │ │ │ └── CHT8305_resolution.ino │ │ └── CHT8305_status │ │ │ └── CHT8305_status.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── CHT8310 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── CHT8310.cpp │ ├── CHT8310.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── CHT8310_alert │ │ │ └── CHT8310_alert.ino │ │ ├── CHT8310_array │ │ │ └── CHT8310_array.ino │ │ ├── CHT8310_isConnected │ │ │ └── CHT8310_isConnected.ino │ │ ├── CHT8310_minimal │ │ │ └── CHT8310_minimal.ino │ │ ├── CHT8310_performance │ │ │ ├── CHT8310_performance.ino │ │ │ └── performance_0.2.0_ESP32 │ │ ├── CHT8310_read_separate │ │ │ └── CHT8310_read_separate.ino │ │ ├── CHT8310_setConvertRate │ │ │ └── CHT8310_setConvertRate.ino │ │ ├── CHT8310_softwareReset │ │ │ └── CHT8310_softwareReset.ino │ │ ├── CHT8310_test │ │ │ └── CHT8310_test.ino │ │ └── CHT8310_test_offset │ │ │ └── CHT8310_test_offset.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── CHT832X │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── CHT832X.cpp │ ├── CHT832X.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── CHT832X_asynchronous │ │ │ └── CHT832X_asynchronous.ino │ │ ├── CHT832X_crc8_check │ │ │ └── CHT832X_crc8_check.ino │ │ ├── CHT832X_isConnected │ │ │ └── CHT832X_isConnected.ino │ │ ├── CHT832X_minimal │ │ │ └── CHT832X_minimal.ino │ │ ├── CHT832X_performance │ │ │ ├── .arduino-ci.yml │ │ │ └── CHT832X_performance.ino │ │ ├── CHT832X_plotter │ │ │ └── CHT832X_plotter.ino │ │ ├── CHT832X_test_offset │ │ │ └── CHT832X_test_offset.ino │ │ └── CHT832X_verbose │ │ │ └── CHT832X_verbose.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── CRC │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── CRC12_test │ │ │ └── CRC12_test.ino │ │ ├── CRC16_test │ │ │ └── CRC16_test.ino │ │ ├── CRC16_test_modbus │ │ │ └── CRC16_test_modbus.ino │ │ ├── CRC32_performance │ │ │ ├── CRC32_performance.ino │ │ │ ├── CRC32_performance.md │ │ │ ├── performance_0.2.0.txt │ │ │ ├── performance_0.3.3.txt │ │ │ ├── performance_1.0.0.txt │ │ │ └── performance_1.0.2.txt │ │ ├── CRC32_test │ │ │ └── CRC32_test.ino │ │ ├── CRC64_test │ │ │ └── CRC64_test.ino │ │ ├── CRC8_test │ │ │ └── CRC8_test.ino │ │ ├── CRC8_test2 │ │ │ └── CRC8_test2.ino │ │ ├── CRC_include_test │ │ │ ├── CRC_include_test.ino │ │ │ ├── foo.cpp │ │ │ └── foo.h │ │ ├── CRC_performance │ │ │ └── CRC_performance.ino │ │ ├── CRC_reference_test │ │ │ └── CRC_reference_test.ino │ │ ├── CRC_test │ │ │ └── CRC_test.ino │ │ └── CRC_test2 │ │ │ └── CRC_test2.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── platformio.ini │ ├── src │ │ ├── CRC.cpp │ │ ├── CRC.h │ │ ├── CRC12.cpp │ │ ├── CRC12.h │ │ ├── CRC16.cpp │ │ ├── CRC16.h │ │ ├── CRC32.cpp │ │ ├── CRC32.h │ │ ├── CRC64.cpp │ │ ├── CRC64.h │ │ ├── CRC8.cpp │ │ ├── CRC8.h │ │ ├── CrcDefines.h │ │ ├── CrcFastReverse.cpp │ │ ├── CrcFastReverse.h │ │ ├── CrcParameters.h │ │ ├── FastCRC32.cpp │ │ └── FastCRC32.h │ └── test │ │ ├── unit_test_001.cpp │ │ ├── unit_test_crc12.cpp │ │ ├── unit_test_crc16.cpp │ │ ├── unit_test_crc32.cpp │ │ ├── unit_test_crc64.cpp │ │ └── unit_test_crc8.cpp ├── Complex │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── complex.cpp │ ├── complex.h │ ├── examples │ │ ├── array │ │ │ └── array.ino │ │ ├── complex │ │ │ ├── complex.ino │ │ │ ├── referenceOutput_0.2.0.txt │ │ │ └── referenceOutput_0.3.1.txt │ │ ├── const │ │ │ └── const.ino │ │ └── performance │ │ │ ├── performance.ino │ │ │ ├── preformanceOutput_0.2.0.txt │ │ │ └── preformanceOutput_0.3.1.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── Correlation │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── Correlation.cpp │ ├── Correlation.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── correlation_debugging │ │ │ └── correlation_debugging.ino │ │ ├── correlation_demo0 │ │ │ ├── correlation_demo0.ino │ │ │ └── output_UNO.txt │ │ ├── correlation_demo1 │ │ │ ├── correlation_demo1.ino │ │ │ └── output_UNO.txt │ │ ├── correlation_performance │ │ │ ├── correlation_performance.ino │ │ │ ├── output_UNO_0.1.3.txt │ │ │ ├── output_UNO_0.1.4.txt │ │ │ ├── output_UNO_0.2.0.txt │ │ │ ├── output_UNO_0.2.2.txt │ │ │ ├── output_UNO_0.3.0.txt │ │ │ └── output_UNO_0.3.3.txt │ │ ├── correlation_statistical │ │ │ └── correlation_statistical.ino │ │ ├── correlation_test │ │ │ └── correlation_test.ino │ │ └── demo_running_correlation │ │ │ └── demo_running_correlation.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── CountDown │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── CountDown.cpp │ ├── CountDown.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── countdown_DHMS │ │ │ └── countdown_DHMS.ino │ │ ├── countdown_adaptive_display │ │ │ └── countdown_adaptive_display.ino │ │ ├── countdown_demo1 │ │ │ └── countdown_demo1.ino │ │ ├── countdown_demo2 │ │ │ └── countdown_demo2.ino │ │ ├── countdown_overflow_test │ │ │ └── countdown_overflow_test.ino │ │ ├── countdown_restart │ │ │ └── countdown_restart.ino │ │ ├── countdown_resume │ │ │ └── countdown_resume.ino │ │ └── countdown_setResolution │ │ │ └── countdown_setResolution.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── Cozir │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── LICENSE │ ├── README.md │ ├── changelog.md │ ├── cozir.cpp │ ├── cozir.h │ ├── examples │ │ ├── Cozir_CO2_adaptive │ │ │ ├── .arduino-ci.yml │ │ │ └── Cozir_CO2_adaptive.ino │ │ ├── Cozir_CO2_only │ │ │ ├── .arduino-ci.yml │ │ │ └── Cozir_CO2_only.ino │ │ ├── Cozir_MEGA_3_channel_CO2 │ │ │ ├── .arduino-ci.yml │ │ │ └── Cozir_MEGA_3_channel_CO2.ino │ │ ├── Cozir_SWSerial_CO2_only │ │ │ ├── .arduino-ci.yml │ │ │ └── Cozir_SWSerial_CO2_only.ino │ │ ├── Cozir_SWSerial_echo │ │ │ ├── .arduino-ci.yml │ │ │ └── Cozir_SWSerial_echo.ino │ │ ├── Cozir_SWSerial_getVersion │ │ │ ├── .arduino-ci.yml │ │ │ └── Cozir_SWSerial_getVersion.ino │ │ ├── Cozir_SWSerial_interactive │ │ │ ├── .arduino-ci.yml │ │ │ └── Cozir_SWSerial_interactive.ino │ │ ├── Cozir_echo │ │ │ ├── .arduino-ci.yml │ │ │ └── Cozir_echo.ino │ │ ├── Cozir_getVersion │ │ │ ├── .arduino-ci.yml │ │ │ └── Cozir_getVersion.ino │ │ ├── Cozir_interactive │ │ │ ├── .arduino-ci.yml │ │ │ └── Cozir_interactive.ino │ │ ├── Cozir_parse_star │ │ │ ├── .arduino-ci.yml │ │ │ ├── Cozir_parse_star.ino │ │ │ └── todo.txt │ │ ├── Cozir_setDigiFilter │ │ │ ├── .arduino-ci.yml │ │ │ └── Cozir_setDigiFilter.ino │ │ ├── Cozir_setOutputFIelds │ │ │ ├── .arduino-ci.yml │ │ │ └── Cozir_setOutputFIelds.ino │ │ ├── Cozir_stream_CO2 │ │ │ ├── .arduino-ci.yml │ │ │ └── Cozir_stream_CO2.ino │ │ ├── Cozir_stream_parse │ │ │ ├── .arduino-ci.yml │ │ │ └── Cozir_stream_parse.ino │ │ └── Cozir_stream_parse_3LED │ │ │ ├── .arduino-ci.yml │ │ │ └── Cozir_stream_parse_3LED.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── Currency │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── currency.cpp │ ├── currency.h │ ├── examples │ │ ├── currency_performance │ │ │ ├── currency_performance.ino │ │ │ ├── performance_0.1.3.txt │ │ │ ├── performance_0.1.5.txt │ │ │ └── performance_0.2.0.txt │ │ ├── print_currency │ │ │ └── print_currency.ino │ │ └── print_currency_TLA │ │ │ └── print_currency_TLA.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── DAC53001 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── DAC53001.cpp │ ├── DAC53001.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── DAC53001_demo │ │ │ └── DAC53001_demo.ino │ │ ├── DAC53001_dump │ │ │ └── DAC53001_dump.ino │ │ └── DAC53001_setCurrentRange │ │ │ └── DAC53001_setCurrentRange.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── DAC8550 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── DAC8550.cpp │ ├── DAC8550.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── demo_hw_spi │ │ │ └── demo_hw_spi.ino │ │ ├── demo_powerdown │ │ │ └── demo_powerdown.ino │ │ ├── demo_sequential_write │ │ │ └── demo_sequential_write.ino │ │ ├── demo_sw_spi │ │ │ └── demo_sw_spi.ino │ │ └── readme.md │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── DAC8551 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── DAC8551.cpp │ ├── DAC8551.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── DAC8531_hw_spi │ │ │ ├── DAC8531_hw_spi.ino │ │ │ └── Scope image.png │ │ ├── DAC8551_ESP32_VSPI │ │ │ ├── .arduino-ci.yml │ │ │ └── DAC8551_ESP32_VSPI.ino │ │ ├── DAC8551_hw_spi │ │ │ └── DAC8551_hw_spi.ino │ │ ├── DAC8551_powerdown │ │ │ └── DAC8551_powerdown.ino │ │ └── DAC8551_sw_spi │ │ │ └── DAC8551_sw_spi.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── DAC8552 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── DAC8552.cpp │ ├── DAC8552.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── DAC8552_hw_spi │ │ │ └── DAC8552_hw_spi.ino │ │ ├── DAC8552_powerdown │ │ │ └── DAC8552_powerdown.ino │ │ ├── DAC8552_same_time_write │ │ │ └── DAC8552_same_time_write.ino │ │ ├── DAC8552_sequential_write │ │ │ └── DAC8552_sequential_write.ino │ │ ├── DAC8552_sw_spi │ │ │ └── DAC8552_sw_spi.ino │ │ └── DAC8552_sw_spi_performance │ │ │ └── DAC8552_sw_spi_performance.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── DAC8554 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── DAC8554.cpp │ ├── DAC8554.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── DAC8534_sw_spi │ │ │ └── DAC8534_sw_spi.ino │ │ ├── DAC8554_broadcast │ │ │ └── DAC8554_broadcast.ino │ │ ├── DAC8554_hw_spi │ │ │ └── DAC8554_hw_spi.ino │ │ ├── DAC8554_powerdown │ │ │ └── DAC8554_powerdown.ino │ │ ├── DAC8554_same_time_write │ │ │ └── DAC8554_same_time_write.ino │ │ ├── DAC8554_sequential_write │ │ │ └── DAC8554_sequential_write.ino │ │ └── DAC8554_sw_spi │ │ │ └── DAC8554_sw_spi.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── DAC8560 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── DAC8560.cpp │ ├── DAC8560.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── DAC8560_ESP32_VSPI │ │ │ ├── .arduino-ci.yml │ │ │ └── DAC8560_ESP32_VSPI.ino │ │ ├── DAC8560_hw_spi │ │ │ └── DAC8560_hw_spi.ino │ │ ├── DAC8560_powerdown │ │ │ └── DAC8560_powerdown.ino │ │ └── DAC8560_sw_spi │ │ │ └── DAC8560_sw_spi.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── DAC8571 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── DAC8571.cpp │ ├── DAC8571.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── DAC8571_demo_read │ │ │ └── DAC8571_demo_read.ino │ │ ├── DAC8571_demo_write │ │ │ └── DAC8571_demo_write.ino │ │ ├── DAC8571_demo_write_WIRE1 │ │ │ ├── .arduino-ci.yml │ │ │ └── DAC8571_demo_write_WIRE1.ino │ │ ├── DAC8571_demo_write_array │ │ │ └── DAC8571_demo_write_array.ino │ │ └── DAC8571_performance │ │ │ ├── DAC8571_performance.ino │ │ │ ├── output_0.1.0.txt │ │ │ └── output_0.1.1.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── DAC8574 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── DAC8574.cpp │ ├── DAC8574.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── DAC8574_demo_extended_address │ │ │ └── DAC8574_demo_extended_address.ino │ │ ├── DAC8574_demo_read │ │ │ └── DAC8574_demo_read.ino │ │ ├── DAC8574_demo_write │ │ │ └── DAC8574_demo_write.ino │ │ ├── DAC8574_demo_write_WIRE1 │ │ │ ├── .arduino-ci.yml │ │ │ └── DAC8574_demo_write_WIRE1.ino │ │ ├── DAC8574_demo_write_array │ │ │ └── DAC8574_demo_write_array.ino │ │ └── DAC8574_performance │ │ │ └── DAC8574_performance.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── DAMM │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── DAMM.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── damm_demo │ │ │ └── damm_demo.ino │ │ └── damm_performance │ │ │ ├── damm_performance.ino │ │ │ └── damm_performance_0.1.0.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── DCT532 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── DCT532.cpp │ ├── DCT532.h │ ├── LICENSE │ ├── README.md │ ├── documents │ │ ├── BA_DCT532-I2C_E_program_notes.pdf │ │ └── DB_DCT532_E.pdf │ ├── examples │ │ ├── DCT532_demo │ │ │ └── DCT532_demo.ino │ │ └── DCT532_performance │ │ │ └── DCT532_performance.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── DEVFULL │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── DEVFULL.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── DEVFULL_demo │ │ │ └── DEVFULL_demo.ino │ │ └── DEVFULL_performance │ │ │ ├── DEVFULL_performance.ino │ │ │ ├── performance_0.1.0.txt │ │ │ └── performance_0.1.2.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── DEVNULL │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── DEVNULL.cpp │ ├── DEVNULL.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── DEVNULL_demo │ │ │ └── DEVNULL_demo.ino │ │ └── DEVNULL_performance │ │ │ ├── DEVNULL_performance.ino │ │ │ ├── performance_0.1.1.txt │ │ │ ├── performance_0.1.2.txt │ │ │ └── performance_0.1.4.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── DEVRANDOM │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── DEVRANDOM.cpp │ ├── DEVRANDOM.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── DEVRANDOM_compile_time_random_seed │ │ │ └── DEVRANDOM_compile_time_random_seed.ino │ │ ├── DEVRANDOM_demo │ │ │ ├── DEVRANDOM_demo.ino │ │ │ └── output_0.2.0.txt │ │ ├── DEVRANDOM_password_generator │ │ │ └── DEVRANDOM_password_generator.ino │ │ ├── DEVRANDOM_plotter │ │ │ └── DEVRANDOM_plotter.ino │ │ └── DEVRANDOM_run_time_random_seed │ │ │ └── DEVRANDOM_run_time_random_seed.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── DHT12 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── DHT12.cpp │ ├── DHT12.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── DHT12 │ │ │ └── DHT12.ino │ │ ├── DHT12_plotter │ │ │ └── DHT12_plotter.ino │ │ ├── DHT12_test_RP2040 │ │ │ ├── .arduino-ci.yml │ │ │ └── DHT12_test_RP2040.ino │ │ └── DHT12_test_esp │ │ │ ├── .arduino-ci.yml │ │ │ └── DHT12_test_esp.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── DHT20 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── DHT20.cpp │ ├── DHT20.h │ ├── LICENSE │ ├── README.md │ ├── documents │ │ └── data sheet dht20 a1.pdf │ ├── examples │ │ ├── DHT20 │ │ │ ├── DHT20.ino │ │ │ ├── performance_0.1.2.txt │ │ │ ├── performance_0.1.3.txt │ │ │ ├── performance_0.1.4.txt │ │ │ └── performance_0.2.0.txt │ │ ├── DHT20_I2C_speed │ │ │ ├── DHT20_I2C_speed.ino │ │ │ └── performance_0.2.2.txt │ │ ├── DHT20_async │ │ │ └── DHT20_async.ino │ │ ├── DHT20_lcd │ │ │ ├── .arduino-ci.yml │ │ │ └── DHT20_lcd.ino │ │ ├── DHT20_offset │ │ │ └── DHT20_offset.ino │ │ ├── DHT20_plotter │ │ │ └── DHT20_plotter.ino │ │ ├── DHT20_read_status │ │ │ └── DHT20_read_status.ino │ │ ├── DHT20_test_esp │ │ │ ├── .arduino-ci.yml │ │ │ └── DHT20_test_esp.ino │ │ └── DHT20_test_rp2040 │ │ │ ├── .arduino-ci.yml │ │ │ └── DHT20_test_rp2040.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── DHT2pin │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── dht2pin.cpp │ ├── dht2pin.h │ ├── examples │ │ └── dht2pin │ │ │ └── dht2pin.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── readme.md │ └── test │ │ └── unit_test_001.cpp ├── DHTINT │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── dhtint.cpp │ ├── dhtint.h │ ├── examples │ │ ├── dhtint_adaptive_delay │ │ │ └── dhtint_adaptive_delay.ino │ │ ├── dhtint_array │ │ │ └── dhtint_array.ino │ │ ├── dhtint_debug │ │ │ └── dhtint_debug.ino │ │ ├── dhtint_endless │ │ │ └── dhtint_endless.ino │ │ ├── dhtint_endless_insideFunction │ │ │ └── dhtint_endless_insideFunction.ino │ │ ├── dhtint_getRaw │ │ │ └── dhtint_getRaw.ino │ │ ├── dhtint_minimum │ │ │ └── dhtint_minimum.ino │ │ ├── dhtint_minimum_insideFunction │ │ │ └── dhtint_minimum_insideFunction.ino │ │ ├── dhtint_powerDown │ │ │ └── dhtint_powerDown.ino │ │ ├── dhtint_pulse_diag │ │ │ └── dhtint_pulse_diag.ino │ │ ├── dhtint_runtime │ │ │ └── dhtint_runtime.ino │ │ ├── dhtint_setReadDelay │ │ │ └── dhtint_setReadDelay.ino │ │ ├── dhtint_suppressError │ │ │ └── dhtint_suppressError.ino │ │ ├── dhtint_test │ │ │ └── dhtint_test.ino │ │ ├── dhtint_waitForRead │ │ │ └── dhtint_waitForRead.ino │ │ └── dhtint_waitForRead_nonBlocking │ │ │ └── dhtint_waitForRead_nonBlocking.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── DHTNEW │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── dhtnew.cpp │ ├── dhtnew.h │ ├── examples │ │ ├── dhtnew_adaptive_delay │ │ │ └── dhtnew_adaptive_delay.ino │ │ ├── dhtnew_array │ │ │ └── dhtnew_array.ino │ │ ├── dhtnew_debug │ │ │ └── dhtnew_debug.ino │ │ ├── dhtnew_dht11 │ │ │ └── dhtnew_dht11.ino │ │ ├── dhtnew_dht22 │ │ │ ├── .arduino-ci.yml │ │ │ └── dhtnew_dht22.ino │ │ ├── dhtnew_endless │ │ │ └── dhtnew_endless.ino │ │ ├── dhtnew_endless_debug │ │ │ ├── .arduino-ci.yml │ │ │ └── dhtnew_endless_debug.ino │ │ ├── dhtnew_endless_insideFunction │ │ │ └── dhtnew_endless_insideFunction.ino │ │ ├── dhtnew_minimum │ │ │ └── dhtnew_minimum.ino │ │ ├── dhtnew_minimum_insideFunction │ │ │ └── dhtnew_minimum_insideFunction.ino │ │ ├── dhtnew_powerDown │ │ │ └── dhtnew_powerDown.ino │ │ ├── dhtnew_pulse_diag │ │ │ └── dhtnew_pulse_diag.ino │ │ ├── dhtnew_pulse_diag_ext │ │ │ ├── dhtnew_pulse_diag_ext.ino │ │ │ └── example_DHT22.txt │ │ ├── dhtnew_runtime │ │ │ └── dhtnew_runtime.ino │ │ ├── dhtnew_setReadDelay │ │ │ └── dhtnew_setReadDelay.ino │ │ ├── dhtnew_simple │ │ │ └── dhtnew_simple.ino │ │ ├── dhtnew_suppressError │ │ │ └── dhtnew_suppressError.ino │ │ ├── dhtnew_test │ │ │ └── dhtnew_test.ino │ │ ├── dhtnew_waitForRead │ │ │ └── dhtnew_waitForRead.ino │ │ └── dhtnew_waitForRead_nonBlocking │ │ │ └── dhtnew_waitForRead_nonBlocking.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── readme.md │ └── test │ │ └── unit_test_001.cpp ├── DHTlib │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── dht.cpp │ ├── dht.h │ ├── examples │ │ ├── dht11_test │ │ │ └── dht11_test.ino │ │ ├── dht12_test │ │ │ └── dht12_test.ino │ │ ├── dht21_test │ │ │ └── dht21_test.ino │ │ ├── dht22_in_function │ │ │ └── dht22_in_function.ino │ │ ├── dht22_test │ │ │ └── dht22_test.ino │ │ ├── dht22_test_noIRQ │ │ │ ├── dht22_test.pde.txt │ │ │ └── dht22_test_noIRQ.ino │ │ ├── dht33_test │ │ │ └── dht33_test.ino │ │ ├── dht44_test │ │ │ └── dht44_test.ino │ │ ├── dht_test1 │ │ │ └── dht_test1.ino │ │ └── dht_tuning │ │ │ └── dht_tuning.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── readme.md │ └── test │ │ └── unit_test_001.cpp_disabled_avr_specific ├── DHTstable │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── DHTStable.cpp │ ├── DHTStable.h │ ├── LICENSE │ ├── examples │ │ ├── dht11_test │ │ │ └── dht11_test.ino │ │ ├── dht11_two │ │ │ └── dht11_two.ino │ │ ├── dht12_test │ │ │ └── dht12_test.ino │ │ └── dht22_test │ │ │ └── dht22_test.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── readme.md │ └── test │ │ └── unit_test_001.cpp ├── DMM │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── DMM.cpp │ ├── DMM.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── DMM_ohm_demo │ │ │ └── DMM_ohm_demo.ino │ │ ├── Voltmeter_demo_millivolts │ │ │ └── Voltmeter_demo_millivolts.ino │ │ ├── Voltmeter_demo_noise │ │ │ └── Voltmeter_demo_noise.ino │ │ ├── Voltmeter_demo_volts │ │ │ └── Voltmeter_demo_volts.ino │ │ └── Voltmeter_demo_volts_gain │ │ │ └── Voltmeter_demo_volts_gain.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── DRV8825 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── DRV8825.cpp │ ├── DRV8825.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── DRV8825_minimal │ │ │ └── DRV8825_minimal.ino │ │ ├── DRV8825_performance │ │ │ ├── DRV8825_performance.ino │ │ │ └── performance_0.2.1.txt │ │ ├── DRV8825_reset_sleep │ │ │ └── DRV8825_reset_sleep.ino │ │ └── DRV8825_test │ │ │ └── DRV8825_test.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── DS1804 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── DS1804.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── DS1804_demo │ │ │ └── DS1804_demo.ino │ │ └── DS1804_save_EEPROM │ │ │ └── DS1804_save_EEPROM.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── DS1821 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── DS1821.cpp │ ├── DS1821.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── DS1821 │ │ │ └── DS1821.ino │ │ ├── DS1821_continuous │ │ │ └── DS1821_continuous.ino │ │ └── DS1821_thermostat_config │ │ │ └── DS1821_thermostat_config.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp_avr_specific ├── DS18B20_INT │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── DS18B20_INT │ │ │ └── DS18B20_INT.ino │ │ ├── DS18B20_INT_getTempCentiC │ │ │ └── DS18B20_INT_getTempCentiC.ino │ │ ├── DS18B20_getAddress │ │ │ └── DS18B20_getAddress.ino │ │ ├── DS18B20_minimum │ │ │ └── DS18B20_minimum.ino │ │ ├── DS18B20_performance │ │ │ └── DS18B20_performance.ino │ │ ├── DS18B20_simple │ │ │ └── DS18B20_simple.ino │ │ ├── DS18B20_two_sensors │ │ │ └── DS18B20_two_sensors.ino │ │ └── oneWireSearch │ │ │ └── oneWireSearch.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── src │ │ ├── DS18B20_INT.cpp │ │ └── DS18B20_INT.h │ └── test │ │ └── unit_test_001.cpp_avr_specific ├── DS18B20_RT │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── DS18B20_Kelvin │ │ │ └── DS18B20_Kelvin.ino │ │ ├── DS18B20_diagnose │ │ │ └── DS18B20_diagnose.ino │ │ ├── DS18B20_getAddress │ │ │ └── DS18B20_getAddress.ino │ │ ├── DS18B20_minimum │ │ │ └── DS18B20_minimum.ino │ │ ├── DS18B20_offset │ │ │ └── DS18B20_offset.ino │ │ ├── DS18B20_performance │ │ │ └── DS18B20_performance.ino │ │ ├── DS18B20_simple │ │ │ └── DS18B20_simple.ino │ │ ├── DS18B20_test │ │ │ └── DS18B20_test.ino │ │ ├── DS18B20_test_disconnect │ │ │ └── DS18B20_test_disconnect.ino │ │ ├── DS18B20_two_sensors │ │ │ └── DS18B20_two_sensors.ino │ │ ├── oneWireScanner │ │ │ └── oneWireScanner.ino │ │ └── oneWireSearch │ │ │ └── oneWireSearch.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── src │ │ ├── DS18B20.cpp │ │ └── DS18B20.h │ └── test │ │ └── unit_test_001.cpp_avr_specific ├── DS2401 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── DS2401.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── DS2401-compareUID │ │ │ └── DS2401-compareUID.ino │ │ ├── DS2401-getUID │ │ │ └── DS2401-getUID.ino │ │ ├── DS2401-getUID4 │ │ │ └── DS2401-getUID4.ino │ │ └── oneWireSearch │ │ │ └── oneWireSearch.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp_avr_specific ├── DS2438 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── DS2438.cpp │ ├── DS2438.h │ ├── LICENSE │ ├── README.md │ ├── documents │ │ └── ds2438.pdf │ ├── examples │ │ └── DS2438_demo │ │ │ └── DS2438_demo.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp_avr_specific ├── DS28CM00 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── DS28CM00.cpp │ ├── DS28CM00.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── DS28CM00_getUID │ │ │ └── DS28CM00_getUID.ino │ │ ├── DS28CM00_perf │ │ │ ├── DS28CM00_perf.ino │ │ │ └── testrun_2017-07-24.txt │ │ ├── DS28CM00_test │ │ │ ├── .arduino-ci.yml │ │ │ └── DS28CM00_test.ino │ │ └── DS28CM00_test_ESP │ │ │ ├── .arduino-ci.yml │ │ │ └── DS28CM00_test_ESP.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── DS3232 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── DS3232.cpp │ ├── DS3232.h │ ├── LICENSE │ ├── README.md │ ├── documents │ │ ├── DS3231.pdf │ │ └── DS3232.pdf │ ├── examples │ │ ├── DS3232_demo_getTemperature │ │ │ └── DS3232_demo_getTemperature.ino │ │ ├── DS3232_demo_performance │ │ │ └── DS3232_demo_performance.ino │ │ ├── DS3232_demo_read │ │ │ └── DS3232_demo_read.ino │ │ ├── DS3232_demo_read_minute │ │ │ └── DS3232_demo_read_minute.ino │ │ ├── DS3232_demo_write │ │ │ └── DS3232_demo_write.ino │ │ └── DS3232_test_SRAM │ │ │ └── DS3232_test_SRAM.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── DistanceTable │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── DistanceTable.cpp │ ├── DistanceTable.h │ ├── LICENSE │ ├── documents │ │ ├── note.txt │ │ ├── test_results_0.1.0.txt │ │ ├── test_results_0.1.1.txt │ │ ├── test_results_0.1.2.txt │ │ ├── test_results_0.1.3.txt │ │ └── test_results_0.1.4.txt │ ├── examples │ │ ├── distanceTable │ │ │ └── distanceTable.ino │ │ ├── distanceTable_column_functions │ │ │ └── distanceTable_column_functions.ino │ │ ├── distanceTable_pascal │ │ │ └── distanceTable_pascal.ino │ │ └── distanceTable_test │ │ │ ├── distanceTable_test.ino │ │ │ ├── performance_0.3.0.txt │ │ │ └── performance_0.3.1.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── readme.md │ └── test │ │ └── unit_test_001.cpp ├── ERCFS │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── ERCFS.cpp │ ├── ERCFS.h │ ├── LICENSE │ ├── README.md │ ├── documents │ │ └── ercf-spi.pdf │ ├── examples │ │ ├── ERCFS_HW_SPI │ │ │ └── ERCFS_HW_SPI.ino │ │ ├── ERCFS_HW_SPI_RPM │ │ │ └── ERCFS_HW_SPI_RPM.ino │ │ ├── ERCFS_HW_SPI_performance │ │ │ ├── ERCFS_HW_SPI_performance.ino │ │ │ └── performance_0.1.0.txt │ │ └── ERCFS_SW_SPI_performance │ │ │ ├── ERCFS_SW_SPI_performance.ino │ │ │ └── performance_0.1.0.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── FLE │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── FLE.cpp │ ├── FLE.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── fle_demo │ │ │ └── fle_demo.ino │ │ └── fle_mae_demo │ │ │ └── fle_mae_demo.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── FRAM_I2C │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── FRAM.cpp │ ├── FRAM.h │ ├── FRAM_MULTILANGUAGE.cpp │ ├── FRAM_MULTILANGUAGE.h │ ├── FRAM_MULTILANGUAGE.md │ ├── FRAM_RINGBUFFER.cpp │ ├── FRAM_RINGBUFFER.h │ ├── FRAM_RINGBUFFER.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── FRAM11_test │ │ │ └── FRAM11_test.ino │ │ ├── FRAM11_writeObject │ │ │ └── FRAM11_writeObject.ino │ │ ├── FRAM32_MB85RC1MT_test │ │ │ └── FRAM32_MB85RC1MT_test.ino │ │ ├── FRAM32_Performance │ │ │ ├── FRAM32_Performance.ino │ │ │ └── performance_0.4.0.txt │ │ ├── FRAM32_clear │ │ │ ├── FRAM32_clear.ino │ │ │ └── performance_clear_0.4.0.txt │ │ ├── FRAM32_writeObject │ │ │ └── FRAM32_writeObject.ino │ │ ├── FRAM9_test │ │ │ └── FRAM9_test.ino │ │ ├── FRAM_ATTINY85_COMPILE_TEST │ │ │ ├── .arduino-ci.yml │ │ │ └── FRAM_ATTINY85_COMPILE_TEST.ino │ │ ├── FRAM_ESP32_Wire1 │ │ │ ├── .arduino-ci.yml │ │ │ └── FRAM_ESP32_Wire1.ino │ │ ├── FRAM_RP2040 │ │ │ ├── .arduino-ci.yml │ │ │ └── FRAM_RP2040.ino │ │ ├── FRAM_clear │ │ │ ├── FRAM_clear.ino │ │ │ ├── performance_clear_0.3.4.txt │ │ │ └── performance_clear_0.4.0.txt │ │ ├── FRAM_hexdump │ │ │ └── FRAM_hexdump.ino │ │ ├── FRAM_logging │ │ │ └── FRAM_logging.ino │ │ ├── FRAM_multilanguage │ │ │ └── FRAM_multilanguage.ino │ │ ├── FRAM_multilanguage_elements │ │ │ ├── FRAM_multilanguage_elements.ino │ │ │ └── elements_name.h │ │ ├── FRAM_multilanguage_read │ │ │ └── FRAM_multilanguage_read.ino │ │ ├── FRAM_multilanguage_write │ │ │ └── FRAM_multilanguage_write.ino │ │ ├── FRAM_readLine │ │ │ └── FRAM_readLine.ino │ │ ├── FRAM_readObject │ │ │ └── FRAM_readObject.ino │ │ ├── FRAM_readUntil │ │ │ └── FRAM_readUntil.ino │ │ ├── FRAM_ringbuffer │ │ │ └── FRAM_ringbuffer.ino │ │ ├── FRAM_ringbuffer_II │ │ │ └── FRAM_ringbuffer_II.ino │ │ ├── FRAM_sleep │ │ │ └── FRAM_sleep.ino │ │ ├── FRAM_writeObject │ │ │ └── FRAM_writeObject.ino │ │ ├── FRAM_writeObject_array │ │ │ └── FRAM_writeObject_array.ino │ │ ├── testFRAM │ │ │ ├── output_0.4.0.txt │ │ │ └── testFRAM.ino │ │ └── testFRAMPerformance │ │ │ ├── performance_0.3.4.txt │ │ │ ├── performance_0.3.5.txt │ │ │ ├── performance_0.3.6.txt │ │ │ ├── performance_0.4.0.txt │ │ │ └── testFRAMPerformance.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── FastMap │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── FastMap.cpp │ ├── FastMap.h │ ├── LICENSE │ ├── examples │ │ ├── constrainedMapDemo │ │ │ └── constrainedMapDemo.ino │ │ ├── fastMapDemo │ │ │ └── fastMapDemo.ino │ │ ├── fastMapDemo2 │ │ │ └── fastMapDemo2.ino │ │ ├── fastMapDemo3 │ │ │ └── fastMapDemo3.ino │ │ ├── fastMapDemo4 │ │ │ └── fastMapDemo4.ino │ │ ├── fastMapDouble │ │ │ └── fastMapDouble.ino │ │ └── fastMap_performance_test │ │ │ ├── fastMap_performance_test.ino │ │ │ ├── performance_0.4.1_ESP32.txt │ │ │ └── performance_0.4.1_UNO.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── readme.md │ └── test │ │ └── unit_test_001.cpp ├── FastShiftIn │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── FastShiftIn.cpp │ ├── FastShiftIn.h │ ├── LICENSE │ ├── examples │ │ ├── fastShiftIn │ │ │ └── fastShiftIn.ino │ │ ├── fastShiftIn_readLSBFIRST │ │ │ └── fastShiftIn_readLSBFIRST.ino │ │ ├── fastShiftIn_readMSBFIRST │ │ │ └── fastShiftIn_readMSBFIRST.ino │ │ ├── fastShiftIn_test │ │ │ ├── fastShiftIn_test.ino │ │ │ ├── performance_0.2.3.txt │ │ │ ├── performance_0.3.0.txt │ │ │ ├── performance_0.3.2.txt │ │ │ └── performance_0.4.0.txt │ │ └── fastShiftIn_test_read │ │ │ └── fastShiftIn_test_read.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── performance.txt │ ├── readme.md │ └── test │ │ └── unit_test_001.cpp ├── FastShiftInOut │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── FastShiftInOut.cpp │ ├── FastShiftInOut.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── FastShiftInOut_demo │ │ │ └── FastShiftInOut_demo.ino │ │ └── FastShiftInOut_performance │ │ │ ├── FastShiftInOut_performance.ino │ │ │ ├── performance_0.1.0.txt │ │ │ ├── performance_0.1.1.txt │ │ │ ├── performance_0.1.2.txt │ │ │ ├── performance_0.1.3.txt │ │ │ ├── performance_0.2.0.txt │ │ │ └── performance_0.2.1.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── FastShiftOut │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── Examples │ │ ├── FastShiftOut_demo │ │ │ ├── FastShiftOut_demo.ino │ │ │ └── performance_0.3.1.txt │ │ ├── FastShiftOut_scope_test │ │ │ └── FastShiftOut_scope_test.ino │ │ └── FastShiftOut_test │ │ │ ├── FastShiftOut_test.ino │ │ │ ├── performance_0.3.3.txt │ │ │ ├── performance_0.4.0.txt │ │ │ └── performance_0.4.1.txt │ ├── FastShiftOut.cpp │ ├── FastShiftOut.h │ ├── LICENSE │ ├── PerformanceNotes.txt │ ├── README.md │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── FastTrig │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── CMakeLists.txt │ ├── FastTrig.cpp │ ├── FastTrig.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── fastTrig_atan_performance │ │ │ ├── fastTrig_atan_performance.ino │ │ │ ├── performance_0.3.3.txt │ │ │ └── performance_0.3.4.txt │ │ ├── fastTrig_generate_tables │ │ │ └── fastTrig_generate_tables.ino │ │ ├── fastTrig_hypot_accuracy │ │ │ └── fastTrig_hypot_accuracy.ino │ │ ├── fastTrig_hypot_performance │ │ │ └── fastTrig_hypot_performance.ino │ │ ├── fastTrig_isincos │ │ │ └── fastTrig_isincos.ino │ │ ├── fastTrig_isincos256 │ │ │ └── fastTrig_isincos256.ino │ │ ├── fastTrig_optimize │ │ │ └── fastTrig_optimize.ino │ │ ├── fastTrig_playground │ │ │ └── fastTrig_playground.ino │ │ ├── fastTrig_plot │ │ │ └── fastTrig_plot.ino │ │ ├── fastTrig_test1 │ │ │ ├── fastTrig_test1.ino │ │ │ ├── performance_0.2.1.txt │ │ │ └── performance_0.3.4.txt │ │ ├── fastTrig_test2 │ │ │ └── fastTrig_test2.ino │ │ └── fastTrig_test_arc │ │ │ └── fastTrig_test_arc.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── Fletcher │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── Fletcher.cpp │ ├── Fletcher.h │ ├── Fletcher16.cpp │ ├── Fletcher16.h │ ├── Fletcher32.cpp │ ├── Fletcher32.h │ ├── Fletcher64.cpp │ ├── Fletcher64.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── Fletcher16_echo │ │ │ └── Fletcher16_echo.ino │ │ ├── Fletcher16_performance │ │ │ ├── Fletcher16_performance.ino │ │ │ ├── performance_0.1.6_avr.txt │ │ │ └── performance_0.1.6_esp32.txt │ │ ├── Fletcher16_restart │ │ │ └── Fletcher16_restart.ino │ │ ├── Fletcher16_test │ │ │ └── Fletcher16_test.ino │ │ ├── Fletcher32_performance │ │ │ ├── Fletcher32_performance.ino │ │ │ ├── performance_0.1.10_avr.txt │ │ │ ├── performance_0.1.3_esp32.txt │ │ │ ├── performance_0.1.4_esp32.txt │ │ │ ├── performance_0.1.6_avr.txt │ │ │ └── performance_0.1.6_esp32.txt │ │ ├── Fletcher32_test │ │ │ └── Fletcher32_test.ino │ │ ├── Fletcher64_performance │ │ │ ├── Fletcher64_performance.ino │ │ │ ├── performance_0.1.6_avr.txt │ │ │ └── performance_0.1.6_esp32.txt │ │ ├── Fletcher64_test │ │ │ └── Fletcher64_test.ino │ │ ├── Fletcher_performance │ │ │ ├── Fletcher_performance.ino │ │ │ ├── performance_0.1.0.txt │ │ │ ├── performance_0.1.1.txt │ │ │ ├── performance_0.1.3_esp32.txt │ │ │ ├── performance_0.1.4.txt │ │ │ ├── performance_0.1.4_esp32.txt │ │ │ ├── performance_0.1.6.txt │ │ │ └── performance_0.1.6_esp32.txt │ │ ├── Fletcher_random_stream_performance │ │ │ └── Fletcher_random_stream_performance.ino │ │ ├── Fletcher_test │ │ │ └── Fletcher_test.ino │ │ └── Fletcher_test_continuous │ │ │ └── Fletcher_test_continuous.ino │ ├── extras │ │ └── Fletcher_compare_implementations │ │ │ ├── Fletcher_bit_shift.h │ │ │ ├── Fletcher_compare_implementations.ino │ │ │ ├── Fletcher_if_statement.h │ │ │ ├── Fletcher_next.h │ │ │ ├── Fletcher_overflow.h │ │ │ ├── Fletcher_v0.1.3.h │ │ │ ├── Fletcher_v0.1.4.h │ │ │ ├── Fletcher_v0.1.5.h │ │ │ ├── Fletcher_v0.1.6.h │ │ │ └── basic.h │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── Fraction │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── examples │ │ ├── FractionFindSum │ │ │ └── FractionFindSum.ino │ │ ├── FractionMediant │ │ │ └── FractionMediant.ino │ │ ├── FractionPower2 │ │ │ └── FractionPower2.ino │ │ ├── Fraction_accuracy │ │ │ ├── Fraction_accuracy.ino │ │ │ └── accuracy_0.3.0.txt │ │ ├── Fraction_fast │ │ │ └── Fraction_fast.ino │ │ ├── Fraction_full_scan │ │ │ └── Fraction_full_scan.ino │ │ ├── Fraction_performance │ │ │ ├── Fraction_performance.ino │ │ │ ├── performance_0.1.15.txt │ │ │ ├── performance_0.2.0.txt │ │ │ └── performance_0.3.0.txt │ │ ├── Fraction_setDenominator │ │ │ └── Fraction_setDenominator.ino │ │ ├── fractionExerciser │ │ │ └── fractionExerciser.ino │ │ ├── fractionTest01 │ │ │ └── fractionTest01.ino │ │ ├── fraction_array │ │ │ └── fraction_array.ino │ │ ├── fraction_extensive │ │ │ └── fraction_extensive.ino │ │ ├── fraction_linear_search │ │ │ └── fraction_linear_search.ino │ │ ├── fraction_sizeof │ │ │ └── fraction_sizeof.ino │ │ └── fraction_sqrts │ │ │ └── fraction_sqrts.ino │ ├── fraction.cpp │ ├── fraction.h │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── readme.md │ └── test │ │ └── unit_test_001.cpp ├── FunctionGenerator │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── FunctionGenerator.h │ ├── LICENSE │ ├── examples │ │ ├── funcGenFreeWavePlotter │ │ │ └── funcGenFreeWavePlotter.ino │ │ ├── functionGenerator │ │ │ └── functionGenerator.ino │ │ ├── functionGeneratorDuoPlot │ │ │ └── functionGeneratorDuoPlot.ino │ │ ├── functionGeneratorPerformance │ │ │ ├── functionGeneratorPerformance.ino │ │ │ ├── performance_0.2.4.txt │ │ │ ├── performance_0.2.5.txt │ │ │ ├── performance_0.2.7.txt │ │ │ └── performance_0.3.0.txt │ │ ├── functionGeneratorPlotter │ │ │ └── functionGeneratorPlotter.ino │ │ ├── functionGenerator_MCP4725 │ │ │ └── functionGenerator_MCP4725.ino │ │ ├── functionGenerator_double_MCP4725 │ │ │ └── functionGenerator_double_MCP4725.ino │ │ └── generateFreeWave │ │ │ └── generateFreeWave.ino │ ├── functionGenerator.cpp │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── readme.md │ └── test │ │ └── unit_test_001.cpp ├── GAMMA │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── GammaErrorAnalysis │ │ │ ├── GammaErrorAnalysis.ino │ │ │ ├── error_analysis_0.2.2.txt │ │ │ └── error_analysis_0.3.0.txt │ │ ├── GammaPerformance │ │ │ ├── GammaPerformance.ino │ │ │ ├── performance_0.2.1.txt │ │ │ ├── performance_0.2.2.txt │ │ │ ├── performance_0.3.0.txt │ │ │ ├── performance_0.3.2.txt │ │ │ └── performance_0.4.0.txt │ │ ├── Gamma_test_negative │ │ │ └── Gamma_test_negative.ino │ │ ├── gammaFast │ │ │ └── gammaFast.ino │ │ ├── gammaTest │ │ │ └── gammaTest.ino │ │ ├── gammaTest2 │ │ │ └── gammaTest2.ino │ │ └── gamma_dump_array │ │ │ └── gamma_dump_array.ino │ ├── gamma.cpp │ ├── gamma.h │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── GST │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── GST.cpp │ ├── GST.h │ ├── LICENSE │ ├── README.md │ ├── changelog.md │ ├── examples │ │ ├── GST_add_runtime │ │ │ └── GST_add_runtime.ino │ │ └── GST_test │ │ │ └── GST_test.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── GY521 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── GY521.cpp │ ├── GY521.h │ ├── GY521_registers.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── GY521_angle │ │ │ └── GY521_angle.ino │ │ ├── GY521_performance │ │ │ └── GY521_performance.ino │ │ ├── GY521_performance_calibrate │ │ │ └── GY521_performance_calibrate.ino │ │ ├── GY521_pitch_roll_yaw │ │ │ └── GY521_pitch_roll_yaw.ino │ │ ├── GY521_raw_cooked │ │ │ └── GY521_raw_cooked.ino │ │ ├── GY521_readCalibration_1 │ │ │ └── GY521_readCalibration_1.ino │ │ ├── GY521_readCalibration_2 │ │ │ └── GY521_readCalibration_2.ino │ │ ├── GY521_test_1 │ │ │ └── GY521_test_1.ino │ │ ├── GY521_test_2 │ │ │ └── GY521_test_2.ino │ │ └── GY521_two_sensors │ │ │ └── GY521_two_sensors.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── Gauss │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── Gauss.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── Gauss_BMI │ │ │ └── Gauss_BMI.ino │ │ ├── Gauss_DS18B20 │ │ │ ├── .arduino-ci.yml │ │ │ └── Gauss_DS18B20.ino │ │ ├── Gauss_HX711 │ │ │ ├── .arduino-ci.yml │ │ │ └── Gauss_HX711.ino │ │ ├── Gauss_performance │ │ │ ├── Gauss_performance.ino │ │ │ ├── performance_0.1.0.txt │ │ │ ├── performance_0.1.1.txt │ │ │ └── performance_0.2.0.txt │ │ ├── Gauss_test │ │ │ └── Gauss_test.ino │ │ ├── Gauss_test_bell_curve │ │ │ └── Gauss_test_bell_curve.ino │ │ └── Gauss_test_dump │ │ │ └── Gauss_test_dump.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── HC4051 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── HC4051.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── HC4051_demo │ │ │ └── HC4051_demo.ino │ │ ├── HC4051_ghost_channels │ │ │ └── HC4051_ghost_channels.ino │ │ └── HC4051_performance │ │ │ ├── HC4051_performance.ino │ │ │ └── output_0.2.0.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── HC4052 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── HC4052.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── HC4052_demo │ │ │ └── HC4052_demo.ino │ │ └── HC4052_performance │ │ │ ├── HC4052_performance.ino │ │ │ ├── performance_0.1.3.txt │ │ │ └── performance_0.2.0.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── HC4053 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── HC4053.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── HC4053_demo │ │ │ └── HC4053_demo.ino │ │ └── HC4053_performance │ │ │ ├── HC4053_performance.ino │ │ │ └── output_0.2.0.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── HC4067 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── HC4067.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── HC4067_16_buttons │ │ │ └── HC4067_16_buttons.ino │ │ ├── HC4067_4_channel_plotter │ │ │ └── HC4067_4_channel_plotter.ino │ │ ├── HC4067_demo │ │ │ └── HC4067_demo.ino │ │ ├── HC4067_performance │ │ │ ├── HC4067_performance.ino │ │ │ ├── output_0.1.0.txt │ │ │ ├── output_0.1.1.txt │ │ │ └── output_0.2.0.txt │ │ ├── HC4067_test │ │ │ └── HC4067_test.ino │ │ └── HC4067_write │ │ │ └── HC4067_write.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── HT16K33 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── HT16K33.cpp │ ├── HT16K33.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── demo1 │ │ │ └── demo1.ino │ │ ├── demo2 │ │ │ └── demo2.ino │ │ ├── demo3 │ │ │ └── demo3.ino │ │ ├── demo_VU │ │ │ └── demo_VU.ino │ │ ├── demo_cache │ │ │ └── demo_cache.ino │ │ ├── demo_displayInt │ │ │ └── demo_displayInt.ino │ │ ├── demo_displayRaw │ │ │ └── demo_displayRaw.ino │ │ ├── demo_displayTime │ │ │ └── demo_displayTime.ino │ │ ├── demo_displayUnit │ │ │ └── demo_displayUnit.ino │ │ ├── demo_dual1 │ │ │ └── demo_dual1.ino │ │ ├── demo_scrolling │ │ │ └── demo_scrolling.ino │ │ ├── demo_temperature_humidity │ │ │ ├── .arduino-ci.yml │ │ │ └── demo_temperature_humidity.ino │ │ ├── test_fixedPoint │ │ │ └── test_fixedPoint.ino │ │ ├── test_float_decimals │ │ │ └── test_float_decimals.ino │ │ ├── test_out_of_range │ │ │ └── test_out_of_range.ino │ │ └── test_printfloat │ │ │ └── test_printfloat.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── HX710AB │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── HX710AB.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── HX710A_demo │ │ │ └── HX710A_demo.ino │ │ ├── HX710A_differential_only │ │ │ └── HX710A_differential_only.ino │ │ ├── HX710B_demo │ │ │ └── HX710B_demo.ino │ │ ├── HX710B_performance │ │ │ ├── HX710B_performance.ino │ │ │ ├── performance_0.1.0.txt │ │ │ ├── performance_0.1.1.txt │ │ │ └── performance_0.2.0.txt │ │ ├── HX710B_plotter │ │ │ └── HX710B_plotter.ino │ │ └── HX710B_plotter_async │ │ │ └── HX710B_plotter_async.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── HX711 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG..md │ ├── HX711.cpp │ ├── HX711.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── HX_calibration │ │ │ └── HX_calibration.ino │ │ ├── HX_delta_scale │ │ │ └── HX_delta_scale.ino │ │ ├── HX_get_noise_statistics │ │ │ ├── .arduino-ci.yml │ │ │ └── HX_get_noise_statistics.ino │ │ ├── HX_grocery_scale │ │ │ └── HX_grocery_scale.ino │ │ ├── HX_is_ready │ │ │ └── HX_is_ready.ino │ │ ├── HX_kitchen_scale │ │ │ └── HX_kitchen_scale.ino │ │ ├── HX_loadcell_array │ │ │ └── HX_loadcell_array.ino │ │ ├── HX_morse_experimental │ │ │ └── HX_morse_experimental.ino │ │ ├── HX_performance │ │ │ ├── HX_performance.ino │ │ │ ├── performance_0.3.1.txt │ │ │ ├── performance_0.3.2.txt │ │ │ └── performance_0.3.4.txt │ │ ├── HX_performance2 │ │ │ ├── HX_performance2.ino │ │ │ ├── performance_0.2.3.txt │ │ │ ├── performance_0.3.0.txt │ │ │ └── performance_0.3.6.txt │ │ ├── HX_plotter │ │ │ └── HX_plotter.ino │ │ ├── HX_plotter_multimap │ │ │ ├── .arduino-ci.yml │ │ │ └── HX_plotter_multimap.ino │ │ ├── HX_read_median │ │ │ └── HX_read_median.ino │ │ ├── HX_read_median_average │ │ │ └── HX_read_median_average.ino │ │ ├── HX_set_mode │ │ │ └── HX_set_mode.ino │ │ └── HX_set_persistent │ │ │ ├── .arduino-ci.yml │ │ │ └── HX_set_persistent.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── HX711_MP │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG..md │ ├── HX711_MP.cpp │ ├── HX711_MP.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── HX_MP_calibrate │ │ │ └── HX_MP_calibrate.ino │ │ ├── HX_MP_performance │ │ │ └── HX_MP_performance.ino │ │ ├── HX_MP_performance2 │ │ │ └── HX_MP_performance2.ino │ │ ├── HX_MP_plotter │ │ │ └── HX_MP_plotter.ino │ │ └── HX_MP_runtime_calibration │ │ │ └── HX_MP_runtime_calibration.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── HeartBeat │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── HeartBeat.cpp │ ├── HeartBeat.h │ ├── Heart_Beat.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── HeartBeat_ACS712_demo │ │ │ └── HeartBeat_ACS712_demo.ino │ │ ├── HeartBeat_SRF05_demo │ │ │ └── HeartBeat_SRF05_demo.ino │ │ ├── HeartBeat_array │ │ │ └── HeartBeat_array.ino │ │ ├── HeartBeat_dutyCycle │ │ │ └── HeartBeat_dutyCycle.ino │ │ ├── HeartBeat_errorcode │ │ │ └── HeartBeat_errorcode.ino │ │ ├── HeartBeat_errorcode_SL │ │ │ └── HeartBeat_errorcode_SL.ino │ │ ├── HeartBeat_random │ │ │ └── HeartBeat_random.ino │ │ ├── HeartBeat_simple │ │ │ └── HeartBeat_simple.ino │ │ ├── HeartBeat_sinus │ │ │ └── HeartBeat_sinus.ino │ │ └── Heart_Beat_ESP │ │ │ └── Heart_Beat_ESP.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── Histogram │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── examples │ │ ├── hist_array │ │ │ └── hist_array.ino │ │ ├── hist_find_performance │ │ │ ├── AVR_UNO.txt │ │ │ └── hist_find_performance.ino │ │ ├── hist_pointer │ │ │ └── hist_pointer.ino │ │ ├── hist_test │ │ │ └── hist_test.ino │ │ ├── hist_test_big │ │ │ └── hist_test_big.ino │ │ ├── hist_test_cdf │ │ │ └── hist_test_cdf.ino │ │ ├── hist_test_graph │ │ │ └── hist_test_graph.ino │ │ ├── hist_test_level │ │ │ └── hist_test_level.ino │ │ ├── hist_test_performance │ │ │ ├── hist_test_performance.ino │ │ │ ├── performance_0.3.2.txt │ │ │ └── performance_0.3.3.txt │ │ ├── hist_test_plotter │ │ │ └── hist_test_plotter.ino │ │ ├── hist_test_pmf │ │ │ └── hist_test_pmf.ino │ │ └── hist_test_val │ │ │ └── hist_test_val.ino │ ├── histogram.cpp │ ├── histogram.h │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── readme.md │ └── test │ │ └── unit_test_001.cpp ├── I2CKeyPad │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── I2CKeyPad .cpp │ ├── I2CKeyPad.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── I2CKeypad_interrupts_1 │ │ │ └── I2CKeypad_interrupts_1.ino │ │ ├── I2Ckeypad_5x3 │ │ │ └── I2Ckeypad_5x3.ino │ │ ├── I2Ckeypad_6x2 │ │ │ └── I2Ckeypad_6x2.ino │ │ ├── I2Ckeypad_8x1 │ │ │ └── I2Ckeypad_8x1.ino │ │ ├── I2Ckeypad_Wire1_ESP32 │ │ │ ├── .arduino-ci.yml │ │ │ └── I2Ckeypad_Wire1_ESP32.ino │ │ ├── I2Ckeypad_demo01 │ │ │ └── I2Ckeypad_demo01.ino │ │ ├── I2Ckeypad_demo02 │ │ │ └── I2Ckeypad_demo02.ino │ │ ├── I2Ckeypad_demo03 │ │ │ └── I2Ckeypad_demo03.ino │ │ ├── I2Ckeypad_keymap │ │ │ └── I2Ckeypad_keymap.ino │ │ ├── I2Ckeypad_keymap_calculator │ │ │ └── I2Ckeypad_keymap_calculator.ino │ │ ├── I2Ckeypad_keymap_demo2 │ │ │ └── I2Ckeypad_keymap_demo2.ino │ │ ├── I2Ckeypad_long_press │ │ │ └── I2Ckeypad_long_press.ino │ │ ├── I2Ckeypad_readKeyUntil │ │ │ └── I2Ckeypad_readKeyUntil.ino │ │ └── I2Ckeypad_readKeyUntil_KM │ │ │ └── I2Ckeypad_readKeyUntil_KM.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── I2CKeyPad8x8 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── I2CKeyPad8x8.cpp │ ├── I2CKeyPad8x8.h │ ├── LICENSE │ ├── README.md │ ├── documents │ │ ├── pcf8575.pdf │ │ └── tca8418.pdf │ ├── examples │ │ └── I2Ckeypad8x8_demo01 │ │ │ ├── I2Ckeypad8x8_demo01.ino │ │ │ └── performance_0.1.0.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── I2C_24LC1025 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG..md │ ├── I2C_24LC1025.cpp │ ├── I2C_24LC1025.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── 24LC1025_format │ │ │ └── 24LC1025_format.ino │ │ ├── 24LC1025_test │ │ │ └── 24LC1025_test.ino │ │ ├── 24LC1025_test_ESP32 │ │ │ ├── .arduino-ci.yml │ │ │ └── 24LC1025_test_ESP32.ino │ │ ├── 24LC1025_test_RP2040 │ │ │ ├── .arduino-ci.yml │ │ │ └── 24LC1025_test_RP2040.ino │ │ ├── 24LC1025_test_Wire1 │ │ │ ├── .arduino-ci.yml │ │ │ └── 24LC1025_test_Wire1.ino │ │ └── 24LC1025_test_read │ │ │ └── 24LC1025_test_read.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── I2C_ASDX │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG..md │ ├── I2C_ASDX.cpp │ ├── I2C_ASDX.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── asdx_isConnected │ │ │ └── asdx_isConnected.ino │ │ ├── asdx_minimal │ │ │ └── asdx_minimal.ino │ │ ├── asdx_performance │ │ │ └── asdx_performance.ino │ │ └── asdx_timed_read │ │ │ └── asdx_timed_read.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── I2C_CAT24M01 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG..md │ ├── I2C_CAT24M01.cpp │ ├── I2C_CAT24M01.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── CAT24M01_format │ │ │ └── CAT24M01_format.ino │ │ ├── CAT24M01_test │ │ │ └── CAT24M01_test.ino │ │ ├── CAT24M01_test_ESP32 │ │ │ ├── .arduino-ci.yml │ │ │ └── CAT24M01_test_ESP32.ino │ │ ├── CAT24M01_test_RP2040 │ │ │ ├── .arduino-ci.yml │ │ │ └── CAT24M01_test_RP2040.ino │ │ ├── CAT24M01_test_Wire1 │ │ │ ├── .arduino-ci.yml │ │ │ └── CAT24M01_test_Wire1.ino │ │ └── CAT24M01_test_read │ │ │ └── CAT24M01_test_read.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── I2C_EEPROM │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── I2C_eeprom.cpp │ ├── I2C_eeprom.h │ ├── I2C_eeprom_cyclic_store.h │ ├── LICENSE │ ├── README_cyclic_store.md │ ├── examples │ │ ├── I2C_eeprom_cyclic_store │ │ │ └── I2C_eeprom_cyclic_store.ino │ │ ├── I2C_eeprom_determineSize │ │ │ └── I2C_eeprom_determineSize.ino │ │ ├── I2C_eeprom_determineSizeNoWrite │ │ │ └── I2C_eeprom_determineSizeNoWrite.ino │ │ ├── I2C_eeprom_format │ │ │ └── I2C_eeprom_format.ino │ │ ├── I2C_eeprom_struct │ │ │ └── I2C_eeprom_struct.ino │ │ ├── I2C_eeprom_test │ │ │ └── I2C_eeprom_test.ino │ │ ├── I2C_eeprom_test_performance │ │ │ └── I2C_eeprom_test_performance.ino │ │ ├── I2C_eeprom_update │ │ │ └── I2C_eeprom_update.ino │ │ ├── I2C_eeprom_updateBlock │ │ │ ├── 1.4.2_test_run_avr.txt │ │ │ └── I2C_eeprom_updateBlock.ino │ │ ├── I2C_eeprom_verify │ │ │ ├── I2C_eeprom_verify.ino │ │ │ ├── performance_1.6.1.txt │ │ │ └── performance_1.8.2.txt │ │ ├── I2C_eeprom_verifyBlock │ │ │ └── I2C_eeprom_verifyBlock.ino │ │ └── I2C_small_eeprom_test │ │ │ └── I2C_small_eeprom_test.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── readme.md │ └── test │ │ ├── unit_test_001.cpp │ │ ├── unit_test_cyclic_store.cpp │ │ └── unit_test_page_size.cpp ├── I2C_LCD │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── I2C_LCD.cpp │ ├── I2C_LCD.h │ ├── I2C_LCD_custom_chars.h │ ├── I2C_LCD_special_chars.h │ ├── I2C_LCD_spectrum_chars.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── I2C_LCD_custom_chars │ │ │ └── I2C_LCD_custom_chars.ino │ │ ├── I2C_LCD_custom_chars_dice │ │ │ └── I2C_LCD_custom_chars_dice.ino │ │ ├── I2C_LCD_custom_chars_pixel │ │ │ └── I2C_LCD_custom_chars_pixel.ino │ │ ├── I2C_LCD_demo │ │ │ ├── .arduino-ci.yml │ │ │ └── I2C_LCD_demo.ino │ │ ├── I2C_LCD_demo_80chars │ │ │ └── I2C_LCD_demo_80chars.ino │ │ ├── I2C_LCD_demo_Wire1 │ │ │ ├── .arduino-ci.yml │ │ │ └── I2C_LCD_demo_Wire1.ino │ │ ├── I2C_LCD_demo_alignment │ │ │ └── I2C_LCD_demo_alignment.ino │ │ ├── I2C_LCD_demo_clock │ │ │ └── I2C_LCD_demo_clock.ino │ │ ├── I2C_LCD_demo_special_intensity │ │ │ └── I2C_LCD_demo_special_intensity.ino │ │ ├── I2C_LCD_demo_spectrum_1 │ │ │ └── I2C_LCD_demo_spectrum_1.ino │ │ ├── I2C_LCD_demo_spectrum_column │ │ │ ├── AKA_skyline.txt │ │ │ └── I2C_LCD_demo_spectrum_column.ino │ │ ├── I2C_LCD_demo_spectrum_row │ │ │ └── I2C_LCD_demo_spectrum_row.ino │ │ ├── I2C_LCD_media_player_chars │ │ │ └── I2C_LCD_media_player_chars.ino │ │ ├── I2C_LCD_minimal │ │ │ └── I2C_LCD_minimal.ino │ │ ├── I2C_LCD_mirror_digits │ │ │ └── I2C_LCD_mirror_digits.ino │ │ ├── I2C_LCD_multi_LCD │ │ │ └── I2C_LCD_multi_LCD.ino │ │ ├── I2C_LCD_performance │ │ │ ├── I2C_LCD_performance.ino │ │ │ ├── performance_0.1.0.txt │ │ │ ├── performance_0.1.1.txt │ │ │ ├── performance_0.1.4.txt │ │ │ ├── performance_0.2.0.txt │ │ │ ├── performance_0.2.1.txt │ │ │ ├── performance_0.2.1_ESP32.txt │ │ │ └── performance_0.2.5.txt │ │ ├── I2C_LCD_special_chars │ │ │ └── I2C_LCD_special_chars.ino │ │ ├── I2C_LCD_test │ │ │ └── I2C_LCD_test.ino │ │ ├── I2C_LCD_test_F_macro │ │ │ └── I2C_LCD_test_F_macro.ino │ │ ├── I2C_LCD_test_backspace │ │ │ └── I2C_LCD_test_backspace.ino │ │ ├── I2C_LCD_test_formfeed │ │ │ └── I2C_LCD_test_formfeed.ino │ │ ├── I2C_LCD_test_newline │ │ │ └── I2C_LCD_test_newline.ino │ │ ├── I2C_LCD_test_tab │ │ │ └── I2C_LCD_test_tab.ino │ │ ├── I2C_LCD_upsideDown_digits │ │ │ └── I2C_LCD_upsideDown_digits.ino │ │ └── I2C_LCD_weather_forcast │ │ │ └── I2C_LCD_weather_forcast.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── I2C_SCANNER │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── I2C_SCANNER.cpp │ ├── I2C_SCANNER.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── I2C_scanner_count │ │ │ └── I2C_scanner_count.ino │ │ ├── I2C_scanner_getWirePortCount │ │ │ └── I2C_scanner_getWirePortCount.ino │ │ ├── I2C_scanner_minimal │ │ │ └── I2C_scanner_minimal.ino │ │ ├── I2C_scanner_multi_speed │ │ │ └── I2C_scanner_multi_speed.ino │ │ ├── I2C_scanner_ping_count │ │ │ └── I2C_scanner_ping_count.ino │ │ └── I2C_scanner_simple │ │ │ └── I2C_scanner_simple.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── I2C_SOFTRESET │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── I2C_SoftReset.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ └── I2CSR_minimal │ │ │ ├── .arduino-ci.yml │ │ │ └── I2CSR_minimal.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── IEEE754tools │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── IEEE754tools.h │ ├── LICENSE │ ├── examples │ │ ├── FastNegate │ │ │ ├── FastNegate.ino │ │ │ └── output_0.2.6.txt │ │ ├── IEEE754_equal │ │ │ └── IEEE754_equal.ino │ │ └── float2double │ │ │ └── float2double.ino │ ├── library.json │ ├── library.properties │ ├── readme.md │ └── test │ │ └── unit_test_001.cpp ├── INA219 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── INA219.cpp │ ├── INA219.h │ ├── INA_comparison_table.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── INA219_array │ │ │ └── INA219_array.ino │ │ ├── INA219_connected │ │ │ └── INA219_connected.ino │ │ ├── INA219_demo │ │ │ └── INA219_demo.ino │ │ ├── INA219_get_settings │ │ │ └── INA219_get_settings.ino │ │ ├── INA219_minimal │ │ │ └── INA219_minimal.ino │ │ └── INA219_test_I2C │ │ │ └── INA219_test_I2C.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── INA226 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── INA226.cpp │ ├── INA226.h │ ├── INA_comparison_table.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── INA226_array │ │ │ └── INA226_array.ino │ │ ├── INA226_calibrate │ │ │ └── INA226_calibrate.ino │ │ ├── INA226_compare_normalize │ │ │ └── INA226_compare_normalize.ino │ │ ├── INA226_demo │ │ │ ├── .arduino-ci.yml │ │ │ └── INA226_demo.ino │ │ ├── INA226_demo_2 │ │ │ └── INA226_demo_2.ino │ │ ├── INA226_demo_alert │ │ │ └── INA226_demo_alert.ino │ │ ├── INA226_demo_plotter │ │ │ └── INA226_demo_plotter.ino │ │ ├── INA226_dump_registers │ │ │ └── INA226_dump_registers.ino │ │ ├── INA226_multi_device │ │ │ └── INA226_multi_device.ino │ │ ├── INA226_pointer │ │ │ └── INA226_pointer.ino │ │ ├── INA226_setBusVoltageConversionTime │ │ │ └── INA226_setBusVoltageConversionTime.ino │ │ ├── INA226_setMaxCurrentShunt │ │ │ └── INA226_setMaxCurrentShunt.ino │ │ ├── INA226_setShuntVoltageConversionTime │ │ │ └── INA226_setShuntVoltageConversionTime.ino │ │ ├── INA226_set_average │ │ │ └── INA226_set_average.ino │ │ └── INA226_test_I2C │ │ │ └── INA226_test_I2C.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── INA228 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── INA228.cpp │ ├── INA228.h │ ├── INA_comparison_table.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── INA228_demo │ │ │ └── INA228_demo.ino │ │ ├── INA228_demo_energy_charge │ │ │ └── INA228_demo_energy_charge.ino │ │ ├── INA228_demo_two_devices │ │ │ └── INA228_demo_two_devices.ino │ │ ├── INA228_dump_config │ │ │ ├── INA228_dump_config.ino │ │ │ └── dump_config.txt │ │ ├── INA228_meta_data │ │ │ └── INA228_meta_data.ino │ │ └── INA228_performance │ │ │ ├── INA228_performance.ino │ │ │ ├── performance_0.1.2.txt │ │ │ ├── performance_0.1.4.txt │ │ │ └── performance_0.1.5.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── INA229 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── INA229.cpp │ ├── INA229.h │ ├── INA_comparison_table.md │ ├── LICENSE │ ├── README.md │ ├── documents │ │ └── ina229.pdf │ ├── examples │ │ ├── INA229_demo │ │ │ └── INA229_demo.ino │ │ ├── INA229_demo_energy_charge │ │ │ └── INA229_demo_energy_charge.ino │ │ ├── INA229_demo_two_devices │ │ │ └── INA229_demo_two_devices.ino │ │ ├── INA229_dump_config │ │ │ ├── INA229_dump_config.ino │ │ │ └── dump_config.txt │ │ ├── INA229_meta_data │ │ │ └── INA229_meta_data.ino │ │ └── INA229_performance │ │ │ ├── INA229_performance.ino │ │ │ ├── performance_0.1.0_HWSPI.txt │ │ │ ├── performance_0.1.0_SWSPI.txt │ │ │ ├── performance_0.1.1_HWSPI.txt │ │ │ ├── performance_0.1.1_SWSPI.txt │ │ │ ├── performance_0.3.0_HWSPI.txt │ │ │ ├── performance_0.3.0_SWSPI.txt │ │ │ ├── performance_0.4.1_HWSPI.txt │ │ │ └── performance_0.4.1_SWSPI.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── INA236 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── INA236.cpp │ ├── INA236.h │ ├── INA_comparison_table.md │ ├── LICENSE │ ├── README.md │ ├── documentation │ │ └── ina236.pdf │ ├── examples │ │ ├── INA236_array │ │ │ └── INA236_array.ino │ │ ├── INA236_compare_normalize │ │ │ └── INA236_compare_normalize.ino │ │ ├── INA236_demo │ │ │ ├── .arduino-ci.yml │ │ │ └── INA236_demo.ino │ │ ├── INA236_demo_2 │ │ │ └── INA236_demo_2.ino │ │ ├── INA236_demo_alert │ │ │ └── INA236_demo_alert.ino │ │ ├── INA236_demo_plotter │ │ │ └── INA236_demo_plotter.ino │ │ ├── INA236_dump_registers │ │ │ └── INA236_dump_registers.ino │ │ ├── INA236_multi_device │ │ │ └── INA236_multi_device.ino │ │ ├── INA236_setBusVoltageConversionTime │ │ │ └── INA236_setBusVoltageConversionTime.ino │ │ ├── INA236_setMaxCurrentShunt │ │ │ └── INA236_setMaxCurrentShunt.ino │ │ ├── INA236_setShuntVoltageConversionTime │ │ │ └── INA236_setShuntVoltageConversionTime.ino │ │ ├── INA236_set_average │ │ │ └── INA236_set_average.ino │ │ └── INA236_test_I2C │ │ │ └── INA236_test_I2C.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── INA239 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── INA239.cpp │ ├── INA239.h │ ├── INA_comparison_table.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── INA239_demo │ │ │ └── INA239_demo.ino │ │ ├── INA239_demo_two_devices │ │ │ └── INA239_demo_two_devices.ino │ │ ├── INA239_dump_config │ │ │ ├── INA239_dump_config.ino │ │ │ └── dump_config.txt │ │ ├── INA239_meta_data │ │ │ └── INA239_meta_data.ino │ │ └── INA239_performance │ │ │ ├── INA239_performance.ino │ │ │ ├── performance_0.1.0.txt │ │ │ └── performance_0.1.1.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── INA260 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── INA260.cpp │ ├── INA260.h │ ├── INA_comparison_table.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── INA260_array │ │ │ └── INA260_array.ino │ │ ├── INA260_demo │ │ │ ├── .arduino-ci.yml │ │ │ └── INA260_demo.ino │ │ ├── INA260_demo_2 │ │ │ └── INA260_demo_2.ino │ │ ├── INA260_demo_alert │ │ │ └── INA260_demo_alert.ino │ │ ├── INA260_demo_plotter │ │ │ └── INA260_demo_plotter.ino │ │ ├── INA260_dump_registers │ │ │ └── INA260_dump_registers.ino │ │ ├── INA260_multi_device │ │ │ └── INA260_multi_device.ino │ │ ├── INA260_setBusVoltageConversionTime │ │ │ └── INA260_setBusVoltageConversionTime.ino │ │ ├── INA260_setShuntCurrentConversionTime │ │ │ └── INA260_setShuntCurrentConversionTime.ino │ │ ├── INA260_set_average │ │ │ └── INA260_set_average.ino │ │ └── INA260_test_I2C │ │ │ └── INA260_test_I2C.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── INA3221_RT │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── INA3221.cpp │ ├── INA3221.h │ ├── INA_comparison_table.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── INA3221_array │ │ │ ├── .arduino-ci.yml │ │ │ └── INA3221_array.ino │ │ ├── INA3221_demo │ │ │ └── INA3221_demo.ino │ │ ├── INA3221_performance │ │ │ ├── INA3221_performance.ino │ │ │ └── performance_0.2.0.txt │ │ ├── INA3221_test_BCVT │ │ │ └── INA3221_test_BCVT.ino │ │ ├── INA3221_test_average │ │ │ └── INA3221_test_average.ino │ │ └── INA3221_tests │ │ │ └── INA3221_tests.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── Interval │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── Interval.cpp │ ├── Interval.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ └── interval_demo │ │ │ └── interval_demo.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── KT0803 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── KT0803K_minimal │ │ │ └── KT0803K_minimal.ino │ │ ├── KT0803K_presets │ │ │ └── KT0803K_presets.ino │ │ ├── KT0803K_setFrequency │ │ │ └── KT0803K_setFrequency.ino │ │ ├── KT0803_minimal │ │ │ └── KT0803_minimal.ino │ │ ├── KT0803_setFrequency │ │ │ └── KT0803_setFrequency.ino │ │ ├── KT0803_sweep_2_seconds │ │ │ └── KT0803_sweep_2_seconds.ino │ │ └── KT0803_up_down │ │ │ └── KT0803_up_down.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── src │ │ ├── KT0803.cpp │ │ └── KT0803.h ├── Kelvin2RGB │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── Kelvin2RGB.cpp │ ├── Kelvin2RGB.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── Kelvin2RGB565_diff_hex │ │ │ └── Kelvin2RGB565_diff_hex.ino │ │ ├── Kelvin2RGB_diff_hex │ │ │ └── Kelvin2RGB_diff_hex.ino │ │ ├── Kelvin2RGB_difference │ │ │ └── Kelvin2RGB_difference.ino │ │ ├── Kelvin2RGB_table │ │ │ └── Kelvin2RGB_table.ino │ │ └── Kelvin2RGB_timing │ │ │ ├── Kelvin2RGB_timing.ino │ │ │ ├── performance_0.1.5.txt │ │ │ └── performance_0.1.6.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── Kurtosis │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── Kurtosis.h │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── kurtosis_demo │ │ │ └── kurtosis_demo.ino │ │ ├── kurtosis_histogram │ │ │ └── kurtosis_histogram.ino │ │ ├── kurtosis_performance │ │ │ ├── kurtosis_performance.ino │ │ │ ├── performance_0.1.0.txt │ │ │ ├── performance_0.1.1.txt │ │ │ └── performance_0.1.3.txt │ │ └── kurtosis_stand_alone │ │ │ └── kurtosis_stand_alone.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── L9110 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── L9110.h │ ├── LICENSE │ ├── README.md │ ├── documents │ │ ├── HG7881 31591mpsch.pdf │ │ ├── datasheet-l9110.pdf │ │ ├── l293.pdf │ │ └── l298.pdf │ ├── examples │ │ └── L9110_demo │ │ │ └── L9110_demo.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── LTC2485 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── LTC2485.cpp │ ├── LTC2485.h │ ├── README.md │ ├── examples │ │ ├── LTC2485_connect │ │ │ └── LTC2485_connect.ino │ │ ├── LTC2485_getADC │ │ │ └── LTC2485_getADC.ino │ │ ├── LTC2485_internal_temp_volt │ │ │ └── LTC2485_internal_temp_volt.ino │ │ ├── LTC2485_nolib │ │ │ └── LTC2485_nolib.ino │ │ ├── LTC2485_performance │ │ │ └── LTC2485_performance.ino │ │ ├── LTC2485_plot_microVolts │ │ │ └── LTC2485_plot_microVolts.ino │ │ ├── LTC2485_plotter │ │ │ └── LTC2485_plotter.ino │ │ └── LTC2485_reject_50Hz │ │ │ └── LTC2485_reject_50Hz.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── LTC2991 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── LTC2991.cpp │ ├── LTC2991.h │ ├── README.md │ ├── examples │ │ ├── LTC2991_PWM │ │ │ └── LTC2991_PWM.ino │ │ ├── LTC2991_demo │ │ │ └── LTC2991_demo.ino │ │ ├── LTC2991_internal_temp_volt │ │ │ └── LTC2991_internal_temp_volt.ino │ │ ├── LTC2991_read_temperature │ │ │ └── LTC2991_read_temperature.ino │ │ ├── LTC2991_read_voltage │ │ │ └── LTC2991_read_voltage.ino │ │ └── LTC2991_test_conversion │ │ │ └── LTC2991_test_conversion.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── LTR390_DFR │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── LTR390_DFR.h │ ├── README.md │ ├── examples │ │ ├── LTR390_ALS_demo │ │ │ └── LTR390_ALS_demo.ino │ │ ├── LTR390_UV_demo │ │ │ └── LTR390_UV_demo.ino │ │ ├── LTR390_dump_registers │ │ │ └── LTR390_dump_registers.ino │ │ └── LTR390_getLux │ │ │ └── LTR390_getLux.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── LTR390_RT │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── LTR390.h │ ├── README.md │ ├── examples │ │ ├── LTR390_ALS_demo │ │ │ └── LTR390_ALS_demo.ino │ │ ├── LTR390_UV_demo │ │ │ └── LTR390_UV_demo.ino │ │ ├── LTR390_dump_registers │ │ │ └── LTR390_dump_registers.ino │ │ ├── LTR390_getLUX │ │ │ └── LTR390_getLUX.ino │ │ └── LTR390_getUVIndex │ │ │ └── LTR390_getUVIndex.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── LUHN │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── LUHN.cpp │ ├── LUHN.h │ ├── README.md │ ├── examples │ │ ├── luhn_check │ │ │ ├── luhn_check.ino │ │ │ └── output_0.2.2.txt │ │ ├── luhn_check_stream │ │ │ ├── luhn_check_stream.ino │ │ │ └── output_0.2.0.txt │ │ ├── luhn_generate │ │ │ ├── luhn_generate.ino │ │ │ └── output_0.2.2.txt │ │ └── luhn_isValid │ │ │ ├── luhn_isValid.ino │ │ │ └── output_0.2.2.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── LineFormatter │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── LineFormatter.cpp │ ├── LineFormatter.h │ ├── README.md │ ├── examples │ │ ├── LineFormatter_Ethernet │ │ │ ├── .arduino-ci.yml │ │ │ └── LineFormatter_Ethernet.ino │ │ ├── LineFormatter_SDcard │ │ │ ├── .arduino-ci.yml │ │ │ └── LineFormatter_SDcard.ino │ │ ├── LineFormatter_histogram │ │ │ └── LineFormatter_histogram.ino │ │ ├── LineFormatter_test_getTabs │ │ │ ├── .arduino-ci.yml │ │ │ └── LineFormatter_test_getTabs.ino │ │ ├── LineFormatter_test_repeat │ │ │ └── LineFormatter_test_repeat.ino │ │ ├── LineFormatter_test_rmTab │ │ │ └── LineFormatter_test_rmTab.ino │ │ ├── LineFormatter_test_setTabs │ │ │ ├── .arduino-ci.yml │ │ │ └── LineFormatter_test_setTabs.ino │ │ └── LineFormatter_test_table │ │ │ ├── .arduino-ci.yml │ │ │ └── LineFormatter_test_table.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── Logistic │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── Logistic.h │ ├── README.md │ ├── examples │ │ ├── Logistic_bifurcation │ │ │ └── Logistic_bifurcation.ino │ │ ├── Logistic_bifurcation_2 │ │ │ └── Logistic_bifurcation_2.ino │ │ ├── Logistic_demo │ │ │ └── Logistic_demo.ino │ │ ├── Logistic_find_period │ │ │ └── Logistic_find_period.ino │ │ └── Logistic_repeat │ │ │ └── Logistic_repeat.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── M5ANGLE8 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── M5ANGLE8_analogRead10 │ │ │ └── M5ANGLE8_analogRead10.ino │ │ ├── M5ANGLE8_analogRead12 │ │ │ └── M5ANGLE8_analogRead12.ino │ │ ├── M5ANGLE8_analogRead4 │ │ │ └── M5ANGLE8_analogRead4.ino │ │ ├── M5ANGLE8_analogRead8 │ │ │ └── M5ANGLE8_analogRead8.ino │ │ ├── M5ANGLE8_analogRead8_reverse │ │ │ └── M5ANGLE8_analogRead8_reverse.ino │ │ ├── M5ANGLE8_led_demo │ │ │ └── M5ANGLE8_led_demo.ino │ │ ├── M5ANGLE8_led_follow_demo │ │ │ └── M5ANGLE8_led_follow_demo.ino │ │ ├── M5ANGLE8_performance │ │ │ ├── M5ANGLE8_performance.ino │ │ │ └── performance_0.2.0.txt │ │ ├── M5ANGLE8_selectorRead │ │ │ └── M5ANGLE8_selectorRead.ino │ │ └── M5ANGLE8_wire1_esp32 │ │ │ ├── .arduino-ci.yml │ │ │ └── M5ANGLE8_wire1_esp32.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── m5angle8.cpp │ ├── m5angle8.h │ └── test │ │ └── unit_test_001.cpp ├── M5ROTATE8 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── datasheet │ │ ├── 8Encoder_I2C_Protocol_V1.pdf │ │ └── 8Encoder_I2C_Protocol_V2.pdf │ ├── examples │ │ ├── M5ROTATE88_performance │ │ │ ├── M5ROTATE88_performance.ino │ │ │ └── performance_0.2.0.txt │ │ ├── M5ROTATE8_abs_counter │ │ │ └── M5ROTATE8_abs_counter.ino │ │ ├── M5ROTATE8_address_change │ │ │ └── M5ROTATE8_address_change.ino │ │ ├── M5ROTATE8_button_mask │ │ │ └── M5ROTATE8_button_mask.ino │ │ ├── M5ROTATE8_button_toggle_count │ │ │ └── M5ROTATE8_button_toggle_count.ino │ │ ├── M5ROTATE8_encoder_mask │ │ │ └── M5ROTATE8_encoder_mask.ino │ │ ├── M5ROTATE8_led_demo │ │ │ └── M5ROTATE8_led_demo.ino │ │ ├── M5ROTATE8_rel_counter │ │ │ └── M5ROTATE8_rel_counter.ino │ │ └── M5ROTATE8_set_abs_counter │ │ │ └── M5ROTATE8_set_abs_counter.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── m5rotate8.cpp │ ├── m5rotate8.h │ └── test │ │ └── unit_test_001.cpp ├── M62429 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── M62429.cpp │ ├── M62429.h │ ├── README.md │ ├── examples │ │ ├── M62429_RAW_performance │ │ │ ├── M62429_RAW_performance.ino │ │ │ ├── performance_0.3.5.txt │ │ │ └── performance_0.3.8.txt │ │ ├── M62429_demo │ │ │ └── M62429_demo.ino │ │ ├── M62429_interactive │ │ │ └── M62429_interactive.ino │ │ └── M62429_performance │ │ │ ├── M62429_performance.ino │ │ │ ├── performance_0.3.0.txt │ │ │ ├── performance_0.3.1.txt │ │ │ ├── performance_0.3.2.txt │ │ │ ├── performance_0.3.3.txt │ │ │ └── performance_0.3.8.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── MATRIX7219 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── MATRIX7219.cpp │ ├── MATRIX7219.h │ ├── README.md │ ├── examples │ │ ├── MATRIX7219_VU_METER │ │ │ └── MATRIX7219_VU_METER.ino │ │ ├── MATRIX7219_clock │ │ │ └── MATRIX7219_clock.ino │ │ ├── MATRIX7219_demo │ │ │ └── MATRIX7219_demo.ino │ │ ├── MATRIX7219_display_on_off │ │ │ └── MATRIX7219_display_on_off.ino │ │ ├── MATRIX7219_performance │ │ │ ├── MATRIX7219_performance.ino │ │ │ ├── performance_0.1.0.txt │ │ │ └── performance_0.1.1.txt │ │ └── MATRIX7219_queens │ │ │ └── MATRIX7219_queens.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── MAX14661 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── MAX14661.cpp │ ├── MAX14661.h │ ├── README.md │ ├── documents │ │ └── MAX14661.pdf │ ├── examples │ │ ├── MAX14661_MUX │ │ │ └── MAX14661_MUX.ino │ │ ├── MAX14661_MUX_debug │ │ │ └── MAX14661_MUX_debug.ino │ │ ├── MAX14661_PAIR │ │ │ └── MAX14661_PAIR.ino │ │ ├── MAX14661_SHADOW │ │ │ └── MAX14661_SHADOW.ino │ │ ├── MAX14661_isConnected │ │ │ └── MAX14661_isConnected.ino │ │ └── MAX14661_performance │ │ │ ├── MAX14661_performance.ino │ │ │ └── performance_0.3.0.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── MAX31850 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── MAX31850.cpp │ ├── MAX31850.h │ ├── README.md │ ├── examples │ │ ├── MAX31850_getAddress │ │ │ └── MAX31850_getAddress.ino │ │ ├── MAX31850_minimum │ │ │ └── MAX31850_minimum.ino │ │ ├── MAX31850_test_disconnect │ │ │ └── MAX31850_test_disconnect.ino │ │ ├── MAX31850_two_sensors │ │ │ └── MAX31850_two_sensors.ino │ │ └── oneWireSearch │ │ │ └── oneWireSearch.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp_avr_specific ├── MAX31855_RT │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── MAX31855.cpp │ ├── MAX31855.h │ ├── README.md │ ├── examples │ │ ├── Demo_getRawData │ │ │ └── Demo_getRawData.ino │ │ ├── max31855_ESP32_HSPI │ │ │ ├── .arduino-ci.yml │ │ │ └── max31855_ESP32_HSPI.ino │ │ ├── max31855_ESP32_VSPI │ │ │ ├── .arduino-ci.yml │ │ │ └── max31855_ESP32_VSPI.ino │ │ ├── max31855_array │ │ │ └── max31855_array.ino │ │ ├── max31855_demo0 │ │ │ └── max31855_demo0.ino │ │ ├── max31855_demo1 │ │ │ └── max31855_demo1.ino │ │ ├── max31855_demo2 │ │ │ └── max31855_demo2.ino │ │ ├── max31855_demo3 │ │ │ └── max31855_demo3.ino │ │ ├── max31855_demo4 │ │ │ └── max31855_demo4.ino │ │ ├── max31855_demo5 │ │ │ └── max31855_demo5.ino │ │ ├── max31855_demo6 │ │ │ └── max31855_demo6.ino │ │ ├── max31855_hwSPI │ │ │ └── max31855_hwSPI.ino │ │ ├── max31855_swSPI │ │ │ └── max31855_swSPI.ino │ │ └── max31855_test_error │ │ │ └── max31855_test_error.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── MAX44007 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── Max44007.cpp │ ├── Max44007.h │ ├── README.md │ ├── examples │ │ ├── max44007_interrupt │ │ │ └── max44007_interrupt.ino │ │ ├── max44007_performance │ │ │ └── max44007_performance.ino │ │ ├── max44007_setAutomaticMode │ │ │ └── max44007_setAutomaticMode.ino │ │ ├── max44007_setContinuousMode │ │ │ └── max44007_setContinuousMode.ino │ │ ├── max44007_setManualMode │ │ │ └── max44007_setManualMode.ino │ │ ├── max44007_test01 │ │ │ └── max44007_test01.ino │ │ ├── max44007_test02 │ │ │ ├── .arduino-ci.yml │ │ │ └── max44007_test02.ino │ │ ├── max44007_test_manualmode │ │ │ └── max44007_test_manualmode.ino │ │ └── max44007_two_sensors │ │ │ └── max44007_two_sensors.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── MAX471_RT │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── MAX471.cpp │ ├── MAX471.h │ ├── README.md │ ├── examples │ │ ├── MAX471_demo │ │ │ └── MAX471_demo.ino │ │ └── MAX471_plotter │ │ │ └── MAX471_plotter.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── MAX520 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── MAX520.cpp │ ├── MAX520.h │ ├── README.md │ ├── examples │ │ ├── MAX520_demo │ │ │ └── MAX520_demo.ino │ │ ├── MAX520_demo_read │ │ │ └── MAX520_demo_read.ino │ │ ├── MAX520_demo_write │ │ │ └── MAX520_demo_write.ino │ │ ├── MAX521_demo │ │ │ └── MAX521_demo.ino │ │ └── MAX521_performance │ │ │ └── MAX521_performance.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── MAX6675 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── MAX6675.cpp │ ├── MAX6675.h │ ├── README.md │ ├── documents │ │ ├── Capture.PNG │ │ └── MAX6675.pdf │ ├── examples │ │ ├── Demo_getRawData │ │ │ └── Demo_getRawData.ino │ │ ├── MAX6675_array │ │ │ └── MAX6675_array.ino │ │ ├── MAX6675_test │ │ │ └── MAX6675_test.ino │ │ ├── MAX6675_test_HWSPI │ │ │ └── MAX6675_test_HWSPI.ino │ │ └── MAX6675_test_plotter │ │ │ └── MAX6675_test_plotter.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── MCP23008 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── CMakeLists.txt │ ├── LICENSE │ ├── MCP23008.cpp │ ├── MCP23008.h │ ├── MCP23x08_registers.h │ ├── README.md │ ├── documents │ │ ├── 20001952C.pdf │ │ └── MCP23008 I2C to General Parallel IO .pdf │ ├── examples │ │ ├── MCP23008_I2C_Keypad_4x4_read │ │ │ └── MCP23008_I2C_Keypad_4x4_read.ino │ │ ├── MCP23008_digitalRead │ │ │ └── MCP23008_digitalRead.ino │ │ ├── MCP23008_digitalWrite │ │ │ └── MCP23008_digitalWrite.ino │ │ ├── MCP23008_performance │ │ │ └── MCP23008_performance.ino │ │ └── MCP23008_test │ │ │ └── MCP23008_test.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── MCP23017_RT │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── CMakeLists.txt │ ├── LICENSE │ ├── MCP23017.cpp │ ├── MCP23017.h │ ├── MCP23x17_registers.h │ ├── README.md │ ├── examples │ │ ├── MCP23017_begin │ │ │ └── MCP23017_begin.ino │ │ ├── MCP23017_digitalRead │ │ │ └── MCP23017_digitalRead.ino │ │ ├── MCP23017_digitalWrite │ │ │ └── MCP23017_digitalWrite.ino │ │ ├── MCP23017_performance │ │ │ └── MCP23017_performance.ino │ │ └── MCP23017_test │ │ │ └── MCP23017_test.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── MCP23S08 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── MCP23S08.cpp │ ├── MCP23S08.h │ ├── MCP23x08_registers.h │ ├── README.md │ ├── documents │ │ ├── 20001952C.pdf │ │ └── MCP23008 I2C to General Parallel IO .pdf │ ├── examples │ │ ├── MCP23S08_digitalRead │ │ │ └── MCP23S08_digitalRead.ino │ │ ├── MCP23S08_digitalWrite │ │ │ └── MCP23S08_digitalWrite.ino │ │ └── MCP23S08_performance │ │ │ ├── MCP23S08_performance.ino │ │ │ ├── performance_0.1.0.md │ │ │ ├── performance_0.1.1.md │ │ │ └── performance_0.4.1.md │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── MCP23S17 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── MCP23S17.cpp │ ├── MCP23S17.h │ ├── MCP23x17_registers.h │ ├── README.md │ ├── documents │ │ ├── MCP23017_REV_D.pdf │ │ └── MCP23x17_REV_C.pdf │ ├── examples │ │ ├── MCP23S17_digitalRead │ │ │ └── MCP23S17_digitalRead.ino │ │ ├── MCP23S17_digitalWrite │ │ │ └── MCP23S17_digitalWrite.ino │ │ ├── MCP23S17_four_ADDRESS_array │ │ │ └── MCP23S17_four_ADDRESS_array.ino │ │ ├── MCP23S17_performance │ │ │ ├── MCP23S17_performance.ino │ │ │ ├── performance_0.1.0.md │ │ │ ├── performance_0.1.1.md │ │ │ ├── performance_0.2.2.md │ │ │ ├── performance_0.2.4.md │ │ │ ├── performance_0.5.2.UNO.md │ │ │ └── performance_0.5.3.UNO.md │ │ ├── MCP23S17_test │ │ │ └── MCP23S17_test.ino │ │ ├── MCP23S17_test_connection │ │ │ └── MCP23S17_test_connection.ino │ │ ├── MCP23S17_test_led_bar │ │ │ └── MCP23S17_test_led_bar.ino │ │ ├── MCP23S17_two_ADDRESS │ │ │ └── MCP23S17_two_ADDRESS.ino │ │ └── MCP23S17_two_SELECT │ │ │ └── MCP23S17_two_SELECT.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── MCP330X │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── MCP330X.cpp │ ├── MCP330X.h │ ├── README.md │ ├── examples │ │ ├── MCP3302_diffRead │ │ │ └── MCP3302_diffRead.ino │ │ ├── MCP3302_performance │ │ │ ├── MCP3302_performance.ino │ │ │ ├── performance_0.1.0.txt │ │ │ └── performance_0.2.0.txt │ │ ├── MCP3302_read │ │ │ └── MCP3302_read.ino │ │ ├── MCP3304_diffRead │ │ │ └── MCP3304_diffRead.ino │ │ ├── MCP3304_read │ │ │ └── MCP3304_read.ino │ │ └── test_value │ │ │ └── test_value.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── MCP3424 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── MCP3424.cpp │ ├── MCP3424.h │ ├── README.md │ ├── examples │ │ ├── MCP3421_performance │ │ │ ├── MCP3421_performance.ino │ │ │ └── performance_0.1.3.txt │ │ ├── MCP3421_plotter_millivolts │ │ │ └── MCP3421_plotter_millivolts.ino │ │ ├── MCP3421_test │ │ │ └── MCP3421_test.ino │ │ ├── MCP3424_performance │ │ │ └── MCP3424_performance.ino │ │ ├── MCP3424_plotter_millivolts │ │ │ └── MCP3424_plotter_millivolts.ino │ │ ├── MCP3424_test │ │ │ └── MCP3424_test.ino │ │ └── MCP3428_setChannel │ │ │ └── MCP3428_setChannel.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── MCP4261 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── MCP4261.cpp │ ├── MCP4261.h │ ├── README.md │ ├── documents │ │ ├── MCP4151_MIC.pdf │ │ └── MCP4261.pdf │ ├── examples │ │ ├── MCP4261_demo │ │ │ └── MCP4261_demo.ino │ │ ├── MCP4261_demo_eeprom │ │ │ └── MCP4261_demo_eeprom.ino │ │ ├── MCP4261_demo_read │ │ │ └── MCP4261_demo_read.ino │ │ ├── MCP4261_demo_tcon │ │ │ └── MCP4261_demo_tcon.ino │ │ ├── MCP4261_performance │ │ │ ├── MCP4261_performance.ino │ │ │ ├── performance_0.1.0.txt │ │ │ └── performance_0.2.0.txt │ │ └── MCP4261_register_read │ │ │ ├── .arduino-ci.yml │ │ │ └── MCP4261_register_read.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── MCP4725 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── MCP4725.cpp │ ├── MCP4725.h │ ├── README.md │ ├── examples │ │ ├── MCP4725_minimal │ │ │ └── MCP4725_minimal.ino │ │ ├── MCP4725_wave_generator │ │ │ └── MCP4725_wave_generator.ino │ │ ├── MCP4725_wave_generator_II │ │ │ └── MCP4725_wave_generator_II.ino │ │ ├── MCP4725_wave_generator_RP2040 │ │ │ ├── .arduino-ci.yml │ │ │ └── MCP4725_wave_generator_RP2040.ino │ │ ├── mcp4725_isConnected │ │ │ └── mcp4725_isConnected.ino │ │ ├── mcp4725_keypad │ │ │ ├── .arduino-ci.yml │ │ │ ├── mcp4725_keypad.ino │ │ │ └── measure.ods │ │ ├── mcp4725_multiple │ │ │ └── mcp4725_multiple.ino │ │ ├── mcp4725_multiple_minimal │ │ │ └── mcp4725_multiple_minimal.ino │ │ ├── mcp4725_test │ │ │ └── mcp4725_test.ino │ │ ├── mcp4725_voltage │ │ │ └── mcp4725_voltage.ino │ │ └── smooth2Value │ │ │ └── smooth2Value.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── MCP9808_RT │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── mcp9808_ESP32_Wire1 │ │ │ ├── .arduino-ci.yml │ │ │ └── mcp9808_ESP32_Wire1.ino │ │ ├── mcp9808_minimum │ │ │ └── mcp9808_minimum.ino │ │ ├── mcp9808_offset │ │ │ └── mcp9808_offset.ino │ │ ├── mcp9808_performance │ │ │ └── mcp9808_performance.ino │ │ ├── mcp9808_setResolution │ │ │ └── mcp9808_setResolution.ino │ │ ├── mcp9808_test │ │ │ └── mcp9808_test.ino │ │ ├── mcp9808_test_alert │ │ │ └── mcp9808_test_alert.ino │ │ ├── mcp9808_test_alert_irq │ │ │ └── mcp9808_test_alert_irq.ino │ │ └── mcp9808_test_alert_polling │ │ │ └── mcp9808_test_alert_polling.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── mcp9808.cpp │ ├── mcp9808.h │ └── test │ │ └── unit_test_001.cpp ├── MCP_ADC │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── MCP_ADC.cpp │ ├── MCP_ADC.h │ ├── README.md │ ├── examples │ │ ├── MCP3002_analogRead │ │ │ └── MCP3002_analogRead.ino │ │ ├── MCP3002_deltaRead │ │ │ └── MCP3002_deltaRead.ino │ │ ├── MCP3002_differentialRead │ │ │ └── MCP3002_differentialRead.ino │ │ ├── MCP3008_analogRead │ │ │ └── MCP3008_analogRead.ino │ │ ├── MCP3008_analogRead_ESP32_HWSPI │ │ │ ├── .arduino-ci.yml │ │ │ └── MCP3008_analogRead_ESP32_HWSPI.ino │ │ ├── MCP3008_analogRead_ESP32_SWSPI │ │ │ ├── .arduino-ci.yml │ │ │ └── MCP3008_analogRead_ESP32_SWSPI.ino │ │ ├── MCP3008_deltaRead │ │ │ └── MCP3008_deltaRead.ino │ │ ├── MCP3008_differentialRead │ │ │ └── MCP3008_differentialRead.ino │ │ ├── MCP3201_analogRead │ │ │ └── MCP3201_analogRead.ino │ │ ├── MCP3208_performance │ │ │ ├── MCP3208_performance.ino │ │ │ ├── performance_0.1.9.md │ │ │ ├── performance_0.1.9_raw_AVR.txt │ │ │ └── readADC_vs_readADCMultiple.md │ │ └── MCP_ADC_performance │ │ │ ├── MCP_ADC_performance.ino │ │ │ ├── performance_0.1.9.txt │ │ │ └── performance_0.3.0.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── MCP_DAC │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── MCP_DAC.cpp │ ├── MCP_DAC.h │ ├── README.md │ ├── examples │ │ ├── MCP4911_test │ │ │ └── MCP4911_test.ino │ │ ├── MCP4921_VSPI │ │ │ ├── .arduino-ci.yml │ │ │ └── MCP4921_VSPI.ino │ │ ├── MCP4921_standalone │ │ │ └── MCP4921_standalone.ino │ │ ├── MCP4921_test │ │ │ └── MCP4921_test.ino │ │ ├── MCP4921_wave_generator │ │ │ └── MCP4921_wave_generator.ino │ │ ├── MCP4921_wave_generator_ESP32 │ │ │ ├── .arduino-ci.yml │ │ │ └── MCP4921_wave_generator_ESP32.ino │ │ ├── MCP4921_wave_generator_RP2040 │ │ │ ├── .arduino-ci.yml │ │ │ └── MCP4921_wave_generator_RP2040.ino │ │ ├── MCP4922_standalone │ │ │ └── MCP4922_standalone.ino │ │ └── readme.md │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── MCP_POT │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── MCP_POT.cpp │ ├── MCP_POT.h │ ├── README.md │ ├── examples │ │ ├── MCP_POT_demo │ │ │ ├── MCP_POT_demo.ino │ │ │ └── output_0.1.0.txt │ │ ├── MCP_POT_performance │ │ │ ├── MCP_POT_performance.ino │ │ │ └── output_0.2.1.txt │ │ ├── MCP_POT_serial │ │ │ └── MCP_POT_serial.ino │ │ └── MCP_POT_triangle │ │ │ └── MCP_POT_triangle.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── MHZCO2 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── MHZCO2.cpp │ ├── MHZCO2.h │ ├── README.md │ ├── examples │ │ ├── MHZCO2_PWM │ │ │ └── MHZCO2_PWM.ino │ │ ├── MHZCO2_PWM_highres │ │ │ └── MHZCO2_PWM_highres.ino │ │ ├── MHZCO2_analog │ │ │ └── MHZCO2_analog.ino │ │ ├── MHZCO2_serial1 │ │ │ ├── .arduino-ci.yml │ │ │ └── MHZCO2_serial1.ino │ │ ├── MHZCO2_serial1_plotter │ │ │ ├── .arduino-ci.yml │ │ │ └── MHZCO2_serial1_plotter.ino │ │ ├── MHZCO2_sw_serial │ │ │ ├── .arduino-ci.yml │ │ │ └── MHZCO2_sw_serial.ino │ │ └── MHZCO2_sw_serial_timeout │ │ │ ├── .arduino-ci.yml │ │ │ └── MHZCO2_sw_serial_timeout.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── MINMAX │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── MINMAX.cpp │ ├── MINMAX.h │ ├── README.md │ ├── examples │ │ ├── minmax_autoreset │ │ │ └── minmax_autoreset.ino │ │ ├── minmax_callback │ │ │ └── minmax_callback.ino │ │ ├── minmax_dampening │ │ │ └── minmax_dampening.ino │ │ ├── minmax_demo │ │ │ └── minmax_demo.ino │ │ ├── minmax_new │ │ │ └── minmax_new.ino │ │ └── minmax_setResetDefaults │ │ │ └── minmax_setResetDefaults.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── ML8511 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── ML8511.cpp │ ├── ML8511.h │ ├── examples │ │ ├── ML8511_DUV_index │ │ │ └── ML8511_DUV_index.ino │ │ ├── ML8511_cumulative_joule │ │ │ └── ML8511_cumulative_joule.ino │ │ ├── ML8511_determine_DUV_factor │ │ │ └── ML8511_determine_DUV_factor.ino │ │ ├── ML8511_enable │ │ │ └── ML8511_enable.ino │ │ ├── ML8511_low_power │ │ │ └── ML8511_low_power.ino │ │ ├── ML8511_minimal │ │ │ └── ML8511_minimal.ino │ │ └── ML8511_setVoltsPerStep │ │ │ └── ML8511_setVoltsPerStep.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── readme.md │ └── test │ │ └── unit_test_001.cpp ├── MS4525DO_RT │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG..md │ ├── LICENSE │ ├── MS4525DO.cpp │ ├── MS4525DO.h │ ├── README.md │ ├── documents │ │ └── ENG_DS_MS4525DO_B11.pdf │ ├── examples │ │ ├── MS4525DO_isConnected │ │ │ └── MS4525DO_isConnected.ino │ │ ├── MS4525DO_minimal │ │ │ └── MS4525DO_minimal.ino │ │ ├── MS4525DO_performance │ │ │ └── MS4525DO_performance.ino │ │ ├── MS4525DO_raw_data │ │ │ └── MS4525DO_raw_data.ino │ │ └── MS4525DO_timed_read │ │ │ └── MS4525DO_timed_read.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── MS5611 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── MS5611.cpp │ ├── MS5611.h │ ├── README.md │ ├── examples │ │ ├── MS5607_minimal │ │ │ └── MS5607_minimal.ino │ │ ├── MS5611_PROM_dump │ │ │ └── MS5611_PROM_dump.ino │ │ ├── MS5611_adjust_pressure_math │ │ │ └── MS5611_adjust_pressure_math.ino │ │ ├── MS5611_altitude │ │ │ └── MS5611_altitude.ino │ │ ├── MS5611_detector │ │ │ └── MS5611_detector.ino │ │ ├── MS5611_deviceID │ │ │ └── MS5611_deviceID.ino │ │ ├── MS5611_minimal │ │ │ └── MS5611_minimal.ino │ │ ├── MS5611_minimal_ESP32 │ │ │ ├── .arduino-ci.yml │ │ │ └── MS5611_minimal_ESP32.ino │ │ ├── MS5611_minimal_RP2040 │ │ │ ├── .arduino-ci.yml │ │ │ └── MS5611_minimal_RP2040.ino │ │ ├── MS5611_performance │ │ │ └── MS5611_performance.ino │ │ ├── MS5611_performance_all │ │ │ └── MS5611_performance_all.ino │ │ ├── MS5611_read_Pascal │ │ │ └── MS5611_read_Pascal.ino │ │ ├── MS5611_test │ │ │ └── MS5611_test.ino │ │ ├── MS5611_test_offset │ │ │ └── MS5611_test_offset.ino │ │ ├── MS5611_test_plotter │ │ │ └── MS5611_test_plotter.ino │ │ └── MS5611_test_two │ │ │ └── MS5611_test_two.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── MS5611_SPI │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── MS5611_SPI.cpp │ ├── MS5611_SPI.h │ ├── README.md │ ├── examples │ │ ├── MS5611_deviceID │ │ │ └── MS5611_deviceID.ino │ │ ├── MS5611_minimal │ │ │ └── MS5611_minimal.ino │ │ ├── MS5611_performance │ │ │ └── MS5611_performance.ino │ │ ├── MS5611_performance_all │ │ │ └── MS5611_performance_all.ino │ │ ├── MS5611_test │ │ │ ├── .arduino-ci.yml │ │ │ └── MS5611_test.ino │ │ ├── MS5611_test_offset │ │ │ └── MS5611_test_offset.ino │ │ └── MS5611_test_plotter │ │ │ └── MS5611_test_plotter.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── MS5837 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── MS5837.cpp │ ├── MS5837.h │ ├── README.md │ ├── examples │ │ ├── MS5803_demo │ │ │ └── MS5803_demo.ino │ │ ├── MS5837_02_demo │ │ │ └── MS5837_02_demo.ino │ │ ├── MS5837_30_demo │ │ │ └── MS5837_30_demo.ino │ │ ├── MS5837_demo_meta_data │ │ │ └── MS5837_demo_meta_data.ino │ │ ├── MS5837_performance │ │ │ ├── MS5837_performance.ino │ │ │ ├── performance_0.2.0.txt │ │ │ └── performance_0.3.1.txt │ │ ├── MS5837_plotter │ │ │ └── MS5837_plotter.ino │ │ ├── MS5837_plotter_median_avg │ │ │ ├── .arduino-ci.yml │ │ │ └── MS5837_plotter_median_avg.ino │ │ ├── MS5837_plotter_min_max │ │ │ └── MS5837_plotter_min_max.ino │ │ └── MS5837_test_mathMode │ │ │ └── MS5837_test_mathMode.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── MSP300 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── MSP300.cpp │ ├── MSP300.h │ ├── README.md │ ├── examples │ │ ├── MSP300_demo │ │ │ └── MSP300_demo.ino │ │ ├── MSP300_demo_pressure_only │ │ │ └── MSP300_demo_pressure_only.ino │ │ ├── MSP300_fast_pressure │ │ │ └── MSP300_fast_pressure.ino │ │ └── MSP300_performance │ │ │ └── MSP300_performance.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── MT8870 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── MT8870.cpp │ ├── MT8870.h │ ├── README.md │ ├── examples │ │ └── MT8870_demo │ │ │ └── MT8870_demo.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── MTP40C │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── MTP40C.cpp │ ├── MTP40C.h │ ├── README.md │ ├── examples │ │ ├── MTP40C_CRC_test │ │ │ └── MTP40C_CRC_test.ino │ │ ├── MTP40C_getAddress │ │ │ ├── .arduino-ci.yml │ │ │ └── MTP40C_getAddress.ino │ │ ├── MTP40C_getCO2 │ │ │ ├── .arduino-ci.yml │ │ │ └── MTP40C_getCO2.ino │ │ ├── MTP40C_getCO2_SW_SERIAL │ │ │ ├── .arduino-ci.yml │ │ │ └── MTP40C_getCO2_SW_SERIAL.ino │ │ ├── MTP40C_getCO2_plotter │ │ │ ├── .arduino-ci.yml │ │ │ └── MTP40C_getCO2_plotter.ino │ │ ├── MTP40C_getPressureReference │ │ │ ├── .arduino-ci.yml │ │ │ └── MTP40C_getPressureReference.ino │ │ ├── MTP40C_selfCalibration │ │ │ ├── .arduino-ci.yml │ │ │ └── MTP40C_selfCalibration.ino │ │ ├── MTP40C_setPressureReference │ │ │ ├── .arduino-ci.yml │ │ │ └── MTP40C_setPressureReference.ino │ │ ├── MTP40C_singlePointCorrection │ │ │ ├── .arduino-ci.yml │ │ │ └── MTP40C_singlePointCorrection.ino │ │ ├── MTP40D_I2C_demo │ │ │ └── MTP40D_I2C_demo.ino │ │ ├── MTP40D_PWM_demo │ │ │ └── MTP40D_PWM_demo.ino │ │ ├── MTP40D_PWM_demo_test │ │ │ └── MTP40D_PWM_demo_test.ino │ │ └── MTP40_scanner │ │ │ ├── .arduino-ci.yml │ │ │ └── MTP40_scanner.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── MTP40F │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── MTP40F.cpp │ ├── MTP40F.h │ ├── README.md │ ├── examples │ │ ├── MTP40F_I2C_demo │ │ │ └── MTP40F_I2C_demo.ino │ │ ├── MTP40F_PWM_demo │ │ │ └── MTP40F_PWM_demo.ino │ │ ├── MTP40F_PWM_demo_test │ │ │ └── MTP40F_PWM_demo_test.ino │ │ ├── MTP40F_getCO2 │ │ │ ├── .arduino-ci.yml │ │ │ └── MTP40F_getCO2.ino │ │ ├── MTP40F_getCO2_SW_SERIAL │ │ │ ├── .arduino-ci.yml │ │ │ └── MTP40F_getCO2_SW_SERIAL.ino │ │ ├── MTP40F_getCO2_plotter │ │ │ ├── .arduino-ci.yml │ │ │ └── MTP40F_getCO2_plotter.ino │ │ ├── MTP40F_getPressureReference │ │ │ ├── .arduino-ci.yml │ │ │ └── MTP40F_getPressureReference.ino │ │ ├── MTP40F_selfCalibration │ │ │ ├── .arduino-ci.yml │ │ │ └── MTP40F_selfCalibration.ino │ │ ├── MTP40F_setPressureReference │ │ │ ├── .arduino-ci.yml │ │ │ └── MTP40F_setPressureReference.ino │ │ └── MTP40F_singlePointCorrection │ │ │ ├── .arduino-ci.yml │ │ │ └── MTP40F_singlePointCorrection.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── MathHelpers │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── MathHelpers.h │ ├── examples │ │ ├── binhex_test │ │ │ └── binhex_test.ino │ │ └── mathHelperTest │ │ │ └── mathHelperTest.ino │ ├── keywords.txt │ ├── library.json │ └── library.properties ├── Max44009 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── Max44009.h │ ├── examples │ │ ├── max44009_interrupt │ │ │ └── max44009_interrupt.ino │ │ ├── max44009_performance │ │ │ └── max44009_performance.ino │ │ ├── max44009_setAutomaticMode │ │ │ └── max44009_setAutomaticMode.ino │ │ ├── max44009_setContinuousMode │ │ │ └── max44009_setContinuousMode.ino │ │ ├── max44009_setManualMode │ │ │ └── max44009_setManualMode.ino │ │ ├── max44009_test01 │ │ │ └── max44009_test01.ino │ │ ├── max44009_test02 │ │ │ ├── .arduino-ci.yml │ │ │ └── max44009_test02.ino │ │ ├── max44009_test_manualmode │ │ │ └── max44009_test_manualmode.ino │ │ └── max44009_two_sensors │ │ │ └── max44009_two_sensors.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── max44009.cpp │ ├── readme.md │ └── test │ │ └── unit_test_001.cpp ├── Metronome │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── Metronome.h │ ├── README.md │ ├── examples │ │ ├── Metronome_potmeter │ │ │ └── Metronome_potmeter.ino │ │ ├── Metronome_simple │ │ │ └── Metronome_simple.ino │ │ └── Metronome_tick_tock │ │ │ └── Metronome_tick_tock.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── MiniMP3 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── MiniMP3.cpp │ ├── MiniMP3.h │ ├── README.md │ ├── examples │ │ ├── MINIMP3_random │ │ │ ├── .arduino-ci.yml │ │ │ └── MINIMP3_random.ino │ │ ├── MINIMP3_test │ │ │ ├── .arduino-ci.yml │ │ │ └── MINIMP3_test.ino │ │ ├── MINIMP3_test_HW_serial │ │ │ ├── .arduino-ci.yml │ │ │ └── MINIMP3_test_HW_serial.ino │ │ ├── MINIMP3_test_SWSerialOut │ │ │ ├── .arduino-ci.yml │ │ │ └── MINIMP3_test_SWSerialOut.ino │ │ └── MINIMP3_test_SW_serial │ │ │ ├── .arduino-ci.yml │ │ │ └── MINIMP3_test_SW_serial.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── MultiMap │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── MultiMap.h │ ├── README.md │ ├── examples │ │ ├── multimap_2d │ │ │ └── multimap_2d.ino │ │ ├── multimap_BS_compare │ │ │ ├── multimap_BS_compare.ino │ │ │ └── output_0.2.1.txt │ │ ├── multimap_NTC │ │ │ └── multimap_NTC.ino │ │ ├── multimap_NTC_int_FAIL │ │ │ └── multimap_NTC_int_FAIL.ino │ │ ├── multimap_demo │ │ │ └── multimap_demo.ino │ │ ├── multimap_distance │ │ │ └── multimap_distance.ino │ │ ├── multimap_distance_two_types │ │ │ ├── multimap_distance_two_types.ino │ │ │ └── output_0.2.0.txt │ │ ├── multimap_functions │ │ │ └── multimap_functions.ino │ │ ├── multimap_reverse_log │ │ │ └── multimap_reverse_log.ino │ │ └── multimap_timing │ │ │ ├── multimap_timing.ino │ │ │ └── output_0.2.1.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── Multiplex │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── Multiplex.cpp │ ├── Multiplex.h │ ├── README.md │ ├── examples │ │ ├── Multiplex_enable_stream │ │ │ └── Multiplex_enable_stream.ino │ │ ├── Multiplex_hardwareSerial │ │ │ ├── .arduino-ci.yml │ │ │ └── Multiplex_hardwareSerial.ino │ │ ├── Multiplex_softwareSerial │ │ │ ├── .arduino-ci.yml │ │ │ └── Multiplex_softwareSerial.ino │ │ ├── Multiplex_softwareSerial_SDcard │ │ │ ├── .arduino-ci.yml │ │ │ └── Multiplex_softwareSerial_SDcard.ino │ │ ├── Multiplex_softwareSerial_count │ │ │ ├── .arduino-ci.yml │ │ │ └── Multiplex_softwareSerial_count.ino │ │ ├── Multiplex_softwareSerial_enabledany │ │ │ ├── .arduino-ci.yml │ │ │ └── Multiplex_softwareSerial_enabledany.ino │ │ ├── Multiplex_softwareSerial_remove │ │ │ ├── .arduino-ci.yml │ │ │ └── Multiplex_softwareSerial_remove.ino │ │ └── Multiplex_test │ │ │ └── Multiplex_test.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── NeumannCorrector │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── NeumannCorrector.h │ ├── README.md │ ├── examples │ │ ├── NC_001 │ │ │ └── NC_001.ino │ │ ├── NC_performance │ │ │ ├── NC_performance.ino │ │ │ ├── output_0.1.1.txt │ │ │ └── output_0.1.2.txt │ │ ├── NC_ratio │ │ │ └── NC_ratio.ino │ │ └── NeumannCorrector │ │ │ └── NeumannCorrector.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── NibbleArray │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── nibbleArray_demo │ │ │ └── nibbleArray_demo.ino │ │ └── nibbleArray_performance │ │ │ ├── nibbleArray_performance.ino │ │ │ ├── performance_0.2.2.txt │ │ │ └── performance_0.2.5.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── nibbleArray.cpp │ ├── nibbleArray.h │ └── test │ │ └── unit_test_001.cpp ├── OUTPIN │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── OUTPIN.h │ ├── README.md │ ├── examples │ │ ├── OUTPIN_performance │ │ │ ├── OUTPIN_performance.ino │ │ │ └── performance_0.1.0.txt │ │ ├── OUTPIN_pulseHighNops │ │ │ ├── OUTPIN_pulseHighNops.ino │ │ │ └── output_0.1.0.txt │ │ ├── OUTPIN_pulseHighNops_measure │ │ │ └── OUTPIN_pulseHighNops_measure.ino │ │ ├── OUTPIN_set │ │ │ └── OUTPIN_set.ino │ │ └── OUTPIN_toggle │ │ │ └── OUTPIN_toggle.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── PCA9549 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── PCA9549.cpp │ ├── PCA9549.h │ ├── README.md │ ├── documents │ │ └── PCA9549.pdf │ ├── examples │ │ └── PCA9549_demo │ │ │ └── PCA9549_demo.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── PCA9551 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── PCA9551.cpp │ ├── PCA9551.h │ ├── README.md │ ├── examples │ │ ├── PCA9551_PWM │ │ │ └── PCA9551_PWM.ino │ │ ├── PCA9551_blink │ │ │ └── PCA9551_blink.ino │ │ ├── PCA9551_digitalRead │ │ │ └── PCA9551_digitalRead.ino │ │ ├── PCA9551_test01 │ │ │ └── PCA9551_test01.ino │ │ ├── PCA9551_test02 │ │ │ └── PCA9551_test02.ino │ │ └── PCA9551_test_registers │ │ │ └── PCA9551_test_registers.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── PCA9552 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── PCA9552.cpp │ ├── PCA9552.h │ ├── README.md │ ├── examples │ │ ├── PCA9552_PWM │ │ │ └── PCA9552_PWM.ino │ │ ├── PCA9552_blink │ │ │ └── PCA9552_blink.ino │ │ ├── PCA9552_digitalRead │ │ │ └── PCA9552_digitalRead.ino │ │ ├── PCA9552_test01 │ │ │ └── PCA9552_test01.ino │ │ ├── PCA9552_test02 │ │ │ └── PCA9552_test02.ino │ │ └── PCA9552_test_registers │ │ │ └── PCA9552_test_registers.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── PCA9553 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── PCA9553.cpp │ ├── PCA9553.h │ ├── README.md │ ├── examples │ │ ├── PCA9553_PWM │ │ │ └── PCA9553_PWM.ino │ │ ├── PCA9553_blink │ │ │ └── PCA9553_blink.ino │ │ ├── PCA9553_digitalRead │ │ │ └── PCA9553_digitalRead.ino │ │ ├── PCA9553_test01 │ │ │ └── PCA9553_test01.ino │ │ ├── PCA9553_test02 │ │ │ └── PCA9553_test02.ino │ │ └── PCA9553_test_registers │ │ │ └── PCA9553_test_registers.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── PCA9632 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── PCA9632.cpp │ ├── PCA9632.h │ ├── README.md │ ├── examples │ │ ├── PCA9632_simple │ │ │ └── PCA9632_simple.ino │ │ └── PCA9632_test │ │ │ └── PCA9632_test.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── PCA9634 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── PCA9634.cpp │ ├── PCA9634.h │ ├── README.md │ ├── documents │ │ ├── Datasheet.PCA9634.pdf │ │ ├── PCA9635.pdf │ │ ├── PCA9635_2021.07.27.pdf │ │ └── PCA9685.pdf │ ├── examples │ │ ├── PCA9634_OE_control │ │ │ └── PCA9634_OE_control.ino │ │ ├── PCA9634_shift_rotate │ │ │ └── PCA9634_shift_rotate.ino │ │ ├── PCA9634_software_reset │ │ │ └── PCA9634_software_reset.ino │ │ ├── PCA9634_test01 │ │ │ └── PCA9634_test01.ino │ │ └── PCA9634_test_multiple │ │ │ └── PCA9634_test_multiple.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── PCA9635 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── PCA9635.cpp │ ├── PCA9635.h │ ├── README.md │ ├── examples │ │ ├── PCA9635_OE_control │ │ │ └── PCA9635_OE_control.ino │ │ ├── PCA9635_performance │ │ │ └── PCA9635_performance.ino │ │ ├── PCA9635_shift_rotate │ │ │ └── PCA9635_shift_rotate.ino │ │ ├── PCA9635_test01 │ │ │ └── PCA9635_test01.ino │ │ └── PCA9635_test_multiple │ │ │ └── PCA9635_test_multiple.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── PCA9671 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── PCA9671.cpp │ ├── PCA9671.h │ ├── README.md │ ├── examples │ │ ├── PCA9671_Wire1 │ │ │ ├── .arduino-ci.yml │ │ │ └── PCA9671_Wire1.ino │ │ ├── PCA9671_array │ │ │ └── PCA9671_array.ino │ │ ├── PCA9671_deviceId │ │ │ └── PCA9671_deviceId.ino │ │ ├── PCA9671_isConnected │ │ │ └── PCA9671_isConnected.ino │ │ ├── PCA9671_performance │ │ │ └── PCA9671_performance.ino │ │ ├── PCA9671_select │ │ │ └── PCA9671_select.ino │ │ ├── PCA9671_test │ │ │ └── PCA9671_test.ino │ │ ├── PCA9671_test1 │ │ │ └── PCA9671_test1.ino │ │ └── PCA9671_test2 │ │ │ └── PCA9671_test2.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── PCA9685_RT │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── PCA9685.cpp │ ├── PCA9685.h │ ├── README.md │ ├── examples │ │ ├── PCA9685_OE_control │ │ │ └── PCA9685_OE_control.ino │ │ ├── PCA9685_allOFF_test │ │ │ └── PCA9685_allOFF_test.ino │ │ ├── PCA9685_digitalWrite_test │ │ │ └── PCA9685_digitalWrite_test.ino │ │ ├── PCA9685_maxPWM_test │ │ │ └── PCA9685_maxPWM_test.ino │ │ ├── PCA9685_setFrequency_offset │ │ │ └── PCA9685_setFrequency_offset.ino │ │ ├── PCA9685_setFrequency_test │ │ │ └── PCA9685_setFrequency_test.ino │ │ ├── PCA9685_test01 │ │ │ ├── .arduino-ci.yml │ │ │ └── PCA9685_test01.ino │ │ └── PCA9685_test02 │ │ │ └── PCA9685_test02.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── PCA9698_RT │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── PCA9698.cpp │ ├── PCA9698.h │ ├── README.md │ ├── examples │ │ └── PCA9698_demo │ │ │ └── PCA9698_demo.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── PCF85263 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── PCF85263.cpp │ ├── PCF85263.h │ ├── README.md │ ├── examples │ │ ├── PCF85263_demo │ │ │ └── PCF85263_demo.ino │ │ ├── PCF85263_read │ │ │ └── PCF85263_read.ino │ │ └── PCF85263_write │ │ │ └── PCF85263_write.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── PCF8574 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── PCF8574.cpp │ ├── PCF8574.h │ ├── README.md │ ├── docs │ │ ├── PCF8574_I2C_busExpander_Oct_2005.pdf │ │ ├── pcf8574_sept_2024.pdf │ │ └── pcf8574a_aug_2021.pdf │ ├── examples │ │ ├── PCF8574_Wire1 │ │ │ ├── .arduino-ci.yml │ │ │ └── PCF8574_Wire1.ino │ │ ├── PCF8574_Wire2 │ │ │ ├── .arduino-ci.yml │ │ │ └── PCF8574_Wire2.ino │ │ ├── PCF8574_interrupt │ │ │ └── PCF8574_interrupt.ino │ │ ├── PCF8574_interrupt_advanced │ │ │ └── PCF8574_interrupt_advanced.ino │ │ ├── PCF8574_isConnected │ │ │ └── PCF8574_isConnected.ino │ │ ├── PCF8574_performance │ │ │ ├── PCF8574_performance.ino │ │ │ └── performance_0.3.5.txt │ │ ├── PCF8574_rotaryEncoder │ │ │ └── PCF8574_rotaryEncoder.ino │ │ ├── PCF8574_select │ │ │ └── PCF8574_select.ino │ │ ├── PCF8574_test │ │ │ └── PCF8574_test.ino │ │ ├── PCF8574_test1 │ │ │ └── PCF8574_test1.ino │ │ ├── PCF8574_test2 │ │ │ └── PCF8574_test2.ino │ │ ├── PCF8574_test_ESP32 │ │ │ ├── .arduino-ci.yml │ │ │ └── PCF8574_test_ESP32.ino │ │ ├── PCF8574_test_RP2040 │ │ │ ├── .arduino-ci.yml │ │ │ └── PCF8574_test_RP2040.ino │ │ ├── PCF8574_writeArray │ │ │ └── PCF8574_writeArray.ino │ │ ├── buttonRead │ │ │ └── buttonRead.ino │ │ └── buttonRead8 │ │ │ └── buttonRead8.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── PCF8575 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── PCF8575.cpp │ ├── PCF8575.h │ ├── README.md │ ├── documents │ │ ├── PCF8575C.PDF │ │ └── pcf8575.pdf │ ├── examples │ │ ├── PCF8575_Wire1 │ │ │ ├── .arduino-ci.yml │ │ │ └── PCF8575_Wire1.ino │ │ ├── PCF8575_array │ │ │ └── PCF8575_array.ino │ │ ├── PCF8575_interrupt │ │ │ └── PCF8575_interrupt.ino │ │ ├── PCF8575_interrupt_advanced │ │ │ └── PCF8575_interrupt_advanced.ino │ │ ├── PCF8575_isConnected │ │ │ └── PCF8575_isConnected.ino │ │ ├── PCF8575_performance │ │ │ └── PCF8575_performance.ino │ │ ├── PCF8575_select │ │ │ └── PCF8575_select.ino │ │ ├── PCF8575_test │ │ │ └── PCF8575_test.ino │ │ ├── PCF8575_test1 │ │ │ └── PCF8575_test1.ino │ │ └── PCF8575_test2 │ │ │ └── PCF8575_test2.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── PCF8591 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── PCF8591.cpp │ ├── PCF8591.h │ ├── README.md │ ├── examples │ │ ├── PCF8591_demo │ │ │ └── PCF8591_demo.ino │ │ ├── PCF8591_incremental_read │ │ │ └── PCF8591_incremental_read.ino │ │ └── PCF8591_performance │ │ │ └── PCF8591_performance.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── PCR │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── PCR.h │ ├── README.md │ ├── examples │ │ ├── PCR_demo_DS18B20 │ │ │ ├── .arduino-ci.yml │ │ │ └── PCR_demo_DS18B20.ino │ │ ├── PCR_demo_MAX31855 │ │ │ ├── .arduino-ci.yml │ │ │ └── PCR_demo_MAX31855.ino │ │ ├── PCR_demo_aquarium │ │ │ └── PCR_demo_aquarium.ino │ │ ├── PCR_demo_array │ │ │ └── PCR_demo_array.ino │ │ ├── PCR_demo_basic │ │ │ └── PCR_demo_basic.ino │ │ ├── PCR_demo_extended │ │ │ └── PCR_demo_extended.ino │ │ └── PCR_runtime_change │ │ │ └── PCR_runtime_change.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── PCT2075 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── PCT2075.cpp │ ├── PCT2075.h │ ├── README.md │ ├── examples │ │ ├── PCT2075_fan_control │ │ │ └── PCT2075_fan_control.ino │ │ ├── PCT2075_heater_control │ │ │ └── PCT2075_heater_control.ino │ │ ├── PCT2075_minimal │ │ │ └── PCT2075_minimal.ino │ │ ├── PCT2075_sample_delay │ │ │ └── PCT2075_sample_delay.ino │ │ └── PCT2075_shutdown │ │ │ └── PCT2075_shutdown.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── PERIPUMP │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── PERIPUMP.cpp │ ├── PERIPUMP.h │ ├── README.md │ ├── examples │ │ ├── peripump_demo │ │ │ └── peripump_demo.ino │ │ ├── peripump_forward_backward │ │ │ └── peripump_forward_backward.ino │ │ ├── peripump_percentage │ │ │ └── peripump_percentage.ino │ │ ├── peripump_runtime │ │ │ └── peripump_runtime.ino │ │ ├── peripump_servo │ │ │ └── peripump_servo.ino │ │ └── peripump_slow_start_stop │ │ │ └── peripump_slow_start_stop.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp_wont_run ├── PID_RT │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── PID_RT.cpp │ ├── PID_RT.h │ ├── README.md │ ├── examples │ │ ├── PID_basic │ │ │ └── PID_basic.ino │ │ └── PID_simulated_heater │ │ │ ├── .arduino-ci.yml │ │ │ └── PID_simulated_heater.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── PIR │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── PIR.cpp │ ├── PIR.h │ ├── README.md │ ├── examples │ │ ├── PIR_demo │ │ │ └── PIR_demo.ino │ │ ├── PIR_demo_add_array │ │ │ └── PIR_demo_add_array.ino │ │ ├── PIR_demo_lastValue │ │ │ └── PIR_demo_lastValue.ino │ │ └── PIR_performance │ │ │ ├── PIR_performance.ino │ │ │ ├── performance_0.1.2.txt │ │ │ └── performance_0.2.0.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── PIR8575 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── PIR8575.h │ ├── README.md │ ├── examples │ │ ├── PIR8575_Wire1 │ │ │ ├── .arduino-ci.yml │ │ │ └── PIR8575_Wire1.ino │ │ └── PIR8575_test │ │ │ └── PIR8575_test.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── PPD71 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── PPD71.h │ ├── README.md │ ├── examples │ │ ├── PPD71_Average │ │ │ └── PPD71_Average.ino │ │ ├── PPD71_Meta │ │ │ └── PPD71_Meta.ino │ │ └── PPD71_PulseRatio │ │ │ └── PPD71_PulseRatio.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── PT2314 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── PT2314.cpp │ ├── PT2314.h │ ├── README.md │ ├── documents │ │ ├── 1804132330_PTC-Princeton-Tech-PT7314E_C126414.pdf │ │ ├── 1809172020_PTC-Princeton-Tech-PT7313E_C126404.pdf │ │ ├── 1809291610_PTC-Princeton-Tech-PT2314E_C90034.pdf │ │ └── PT2314_3.pdf │ ├── examples │ │ ├── PT2314_demo │ │ │ └── PT2314_demo.ino │ │ └── PT7313_demo │ │ │ └── PT7313_demo.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── Par27979 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── Par27979.h │ ├── examples │ │ ├── PAR27979_SWSerialOut │ │ │ ├── .arduino-ci.yml │ │ │ └── PAR27979_SWSerialOut.ino │ │ ├── PAR27979_demo │ │ │ ├── .arduino-ci.yml │ │ │ └── PAR27979_demo.ino │ │ └── PAR27979_demo2 │ │ │ └── PAR27979_demo2.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── readme.md │ └── test │ │ └── unit_test_001.cpp ├── ParPrinter │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── ParPrinter.cpp │ ├── ParPrinter.h │ ├── library.json │ ├── library.properties │ └── replaced by parallelPrinter.txt ├── ParallelPrinter │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── ParallelPrinter.cpp │ ├── ParallelPrinter.h │ ├── README.md │ ├── examples │ │ ├── ParallelPrinter_test │ │ │ └── ParallelPrinter_test.ino │ │ ├── PrinterSimulator │ │ │ └── PrinterSimulator.ino │ │ └── Serial2ParallelPrinter │ │ │ └── Serial2ParallelPrinter.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── PinInGroup │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── PinInGroup.cpp │ ├── PinInGroup.h │ ├── README.md │ ├── examples │ │ └── testPinInGroup │ │ │ └── testPinInGroup.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── PinOutGroup │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── PinOutGroup.cpp │ ├── PinOutGroup.h │ ├── README.md │ ├── examples │ │ ├── led13 │ │ │ └── led13.ino │ │ ├── sevenSegment │ │ │ └── sevenSegment.ino │ │ ├── testPinOutGroup │ │ │ └── testPinOutGroup.ino │ │ └── trafficLight │ │ │ └── trafficLight.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── Prandom │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── Prandom.cpp │ ├── Prandom.h │ ├── README.md │ ├── examples │ │ ├── test_random_timing │ │ │ ├── test_random_timing.ino │ │ │ └── timing_0.1.7.txt │ │ └── test_range │ │ │ └── test_range.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── PrintCharArray │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── PrintCharArray.h │ ├── examples │ │ ├── printCharArray1 │ │ │ └── printCharArray1.ino │ │ ├── printCharArray2 │ │ │ └── printCharArray2.ino │ │ ├── printCharArray2_template │ │ │ └── printCharArray2_template.ino │ │ ├── printCharArray3 │ │ │ └── printCharArray3.ino │ │ ├── printCharArray4 │ │ │ ├── output 0.4.0.txt │ │ │ └── printCharArray4.ino │ │ ├── printCharArray4_template │ │ │ ├── output 0.4.0.txt │ │ │ └── printCharArray4_template.ino │ │ └── printCharArrayDynamicSize │ │ │ └── printCharArrayDynamicSize.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── readme.md │ └── test │ │ └── unit_test_001.cpp ├── PrintSize │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── PrintSize.h │ ├── examples │ │ ├── PrintSize1 │ │ │ └── PrintSize1.ino │ │ ├── PrintSize_centring │ │ │ └── PrintSize_centring.ino │ │ ├── PrintSize_printf │ │ │ ├── .arduino-ci.yml │ │ │ └── PrintSize_printf.ino │ │ └── PrintSize_total │ │ │ └── PrintSize_total.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── readme.md │ └── test │ │ └── unit_test_001.cpp ├── PrintString │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── PrintString.h │ ├── README.md │ ├── examples │ │ └── printString │ │ │ └── printString.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── PulseDivider │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── PulseDivider.h │ ├── README.md │ ├── examples │ │ ├── PulseDivider_demo │ │ │ └── PulseDivider_demo.ino │ │ ├── PulseDivider_multi │ │ │ └── PulseDivider_multi.ino │ │ ├── PulseDivider_multi_performance │ │ │ └── PulseDivider_multi_performance.ino │ │ ├── PulseDivider_same_input │ │ │ └── PulseDivider_same_input.ino │ │ └── frequencyMultiplier │ │ │ └── frequencyMultiplier.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── PulsePattern │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── PulsePattern.cpp │ ├── PulsePattern.h │ ├── README.md │ ├── examples │ │ ├── SOS_demo2 │ │ │ └── SOS_demo2.ino │ │ ├── SOS_demo2_once │ │ │ └── SOS_demo2_once.ino │ │ ├── pattern_recorder │ │ │ └── pattern_recorder.ino │ │ ├── pulse_measure │ │ │ └── pulse_measure.ino │ │ ├── pulse_sender │ │ │ └── pulse_sender.ino │ │ ├── random_pattern │ │ │ └── random_pattern.ino │ │ └── siren_pattern │ │ │ └── siren_pattern.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp_to_avr_specific ├── RLCBuffer │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── RLCBuffer.h │ ├── examples │ │ ├── RLCBuffer_demo │ │ │ └── RLCBuffer_demo.ino │ │ └── RLCBuffer_performance │ │ │ ├── RLCBuffer_performance.ino │ │ │ └── RLCBuffer_performance.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── RS485 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── ASCII_CONTROL.h │ ├── CHANGELOG.md │ ├── LICENSE │ ├── MESSAGES.MD │ ├── README.md │ ├── RS485.cpp │ ├── RS485.h │ ├── examples │ │ ├── RS485_MEGA_master_send_receive │ │ │ ├── .arduino-ci.yml │ │ │ └── RS485_MEGA_master_send_receive.ino │ │ ├── RS485_MEGA_slave_send_receive │ │ │ ├── .arduino-ci.yml │ │ │ └── RS485_MEGA_slave_send_receive.ino │ │ ├── RS485_SWS_master_send_receive │ │ │ ├── .arduino-ci.yml │ │ │ └── RS485_SWS_master_send_receive.ino │ │ ├── RS485_SWS_slave_send_receive │ │ │ ├── .arduino-ci.yml │ │ │ └── RS485_SWS_slave_send_receive.ino │ │ ├── RS485_master_ACK_NACK │ │ │ └── RS485_master_ACK_NACK.ino │ │ ├── RS485_master_controller │ │ │ └── RS485_master_controller.ino │ │ ├── RS485_master_send_receive │ │ │ └── RS485_master_send_receive.ino │ │ ├── RS485_performance │ │ │ └── RS485_performance.ino │ │ ├── RS485_simple_master │ │ │ └── RS485_simple_master.ino │ │ ├── RS485_simple_slave │ │ │ └── RS485_simple_slave.ino │ │ ├── RS485_slave_ACK_NACK │ │ │ └── RS485_slave_ACK_NACK.ino │ │ ├── RS485_slave_controller │ │ │ ├── .arduino-ci.yml │ │ │ └── RS485_slave_controller.ino │ │ ├── RS485_slave_send_receive │ │ │ └── RS485_slave_send_receive.ino │ │ └── RS485_sniffer │ │ │ └── RS485_sniffer.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── Radar │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── examples │ │ └── radarDemo │ │ │ └── radarDemo.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── radar.cpp │ ├── radar.h │ ├── readme.md │ └── test │ │ └── unit_test_001.cpp ├── RunAvgWeight │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── RunAvgWeight.cpp │ ├── RunAvgWeight.h │ ├── examples │ │ ├── raw_demo_equal_weight │ │ │ └── raw_demo_equal_weight.ino │ │ ├── raw_performance │ │ │ ├── performance_0.2.0.txt │ │ │ └── raw_performance.ino │ │ └── raw_test │ │ │ └── raw_test.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── RunningAverage │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── RunningAverage.cpp │ ├── RunningAverage.h │ ├── examples │ │ ├── fillValue │ │ │ └── fillValue.ino │ │ ├── ra_300 │ │ │ └── ra_300.ino │ │ ├── ra_300_last │ │ │ └── ra_300_last.ino │ │ ├── ra_FastAverageTest │ │ │ └── ra_FastAverageTest.ino │ │ ├── ra_MinMaxBufferTest │ │ │ └── ra_MinMaxBufferTest.ino │ │ ├── ra_MinMaxTest │ │ │ └── ra_MinMaxTest.ino │ │ ├── ra_array │ │ │ └── ra_array.ino │ │ ├── ra_fillValue_test │ │ │ └── ra_fillValue_test.ino │ │ ├── ra_getAverageSubset │ │ │ └── ra_getAverageSubset.ino │ │ ├── ra_getCoefficientOfVariation │ │ │ └── ra_getCoefficientOfVariation.ino │ │ ├── ra_getValue │ │ │ └── ra_getValue.ino │ │ ├── ra_hour │ │ │ └── ra_hour.ino │ │ ├── ra_partial │ │ │ └── ra_partial.ino │ │ ├── ra_performance │ │ │ ├── performance_0.3.0.txt │ │ │ ├── performance_0.4.0.txt │ │ │ ├── performance_0.4.3.txt │ │ │ ├── performance_0.4.5.txt │ │ │ ├── performance_0.4.6.txt │ │ │ └── ra_performance.ino │ │ ├── ra_test │ │ │ └── ra_test.ino │ │ ├── ra_two_sensors │ │ │ └── ra_two_sensors.ino │ │ └── ra_two_step │ │ │ └── ra_two_step.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── RunningMedian │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── RunningMedian.cpp │ ├── RunningMedian.h │ ├── examples │ │ ├── RunningMedian │ │ │ └── RunningMedian.ino │ │ ├── RunningMedian2 │ │ │ └── RunningMedian2.ino │ │ ├── RunningMedianQuantileTest │ │ │ └── RunningMedianQuantileTest.ino │ │ ├── RunningMedianTest1 │ │ │ └── RunningMedianTest1.ino │ │ ├── RunningMedian_array │ │ │ └── RunningMedian_array.ino │ │ ├── RunningMedian_array_pointer │ │ │ └── RunningMedian_array_pointer.ino │ │ ├── RunningMedian_getMedianAverage │ │ │ └── RunningMedian_getMedianAverage.ino │ │ ├── RunningMedian_large │ │ │ └── RunningMedian_large.ino │ │ └── RunningMedian_performance │ │ │ ├── RunningMedian_performance.ino │ │ │ ├── performance_0.3.10.txt │ │ │ ├── performance_0.3.6.txt │ │ │ ├── performance_0.3.7.txt │ │ │ └── performance_0.3.8.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── SD2405 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── SD2405.cpp │ ├── SD2405.h │ ├── examples │ │ ├── SD2405_demo_dump │ │ │ └── SD2405_demo_dump.ino │ │ ├── SD2405_demo_performance │ │ │ └── SD2405_demo_performance.ino │ │ ├── SD2405_demo_read │ │ │ └── SD2405_demo_read.ino │ │ ├── SD2405_demo_read_minute │ │ │ └── SD2405_demo_read_minute.ino │ │ ├── SD2405_demo_write │ │ │ └── SD2405_demo_write.ino │ │ └── SD2405_test_SRAM │ │ │ └── SD2405_test_SRAM.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── SGP30 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── SGP30.cpp │ ├── SGP30.h │ ├── examples │ │ ├── SGP30_I2C_performance │ │ │ └── SGP30_I2C_performance.ino │ │ ├── SGP30_baseline │ │ │ └── SGP30_baseline.ino │ │ ├── SGP30_demo │ │ │ └── SGP30_demo.ino │ │ ├── SGP30_demo_H2_Ethanol │ │ │ └── SGP30_demo_H2_Ethanol.ino │ │ ├── SGP30_demo_async │ │ │ └── SGP30_demo_async.ino │ │ ├── SGP30_demo_error │ │ │ └── SGP30_demo_error.ino │ │ ├── SGP30_demo_lora │ │ │ ├── .arduino-ci.yml │ │ │ └── SGP30_demo_lora.ino │ │ ├── SGP30_minimal │ │ │ └── SGP30_minimal.ino │ │ ├── SGP30_setHumidity │ │ │ └── SGP30_setHumidity.ino │ │ └── TCA9548_demo_SGP30 │ │ │ ├── .arduino-ci.yml │ │ │ └── TCA9548_demo_SGP30.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── SHEX │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── SHEX.cpp │ ├── SHEX.h │ ├── examples │ │ ├── SHEXA_demo │ │ │ └── SHEXA_demo.ino │ │ ├── SHEX_demo │ │ │ └── SHEX_demo.ino │ │ ├── SHEX_echo │ │ │ └── SHEX_echo.ino │ │ └── SHEX_vtab │ │ │ └── SHEX_vtab.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── SHT2x │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── SHT2x.cpp │ ├── SHT2x.h │ ├── examples │ │ ├── SHT2x_EID_firmware │ │ │ └── SHT2x_EID_firmware.ino │ │ ├── SHT2x_I2Cspeed │ │ │ └── SHT2x_I2Cspeed.ino │ │ ├── SHT2x_battery_check │ │ │ └── SHT2x_battery_check.ino │ │ ├── SHT2x_demo │ │ │ └── SHT2x_demo.ino │ │ ├── SHT2x_demo_ESP32 │ │ │ ├── .arduino-ci.yml │ │ │ └── SHT2x_demo_ESP32.ino │ │ ├── SHT2x_demo_ESP32_2 │ │ │ ├── .arduino-ci.yml │ │ │ └── SHT2x_demo_ESP32_2.ino │ │ ├── SHT2x_demo_async │ │ │ └── SHT2x_demo_async.ino │ │ ├── SHT2x_demo_async_HT │ │ │ └── SHT2x_demo_async_HT.ino │ │ ├── SHT2x_heater │ │ │ └── SHT2x_heater.ino │ │ ├── SHT2x_heaterLevel │ │ │ └── SHT2x_heaterLevel.ino │ │ ├── SHT2x_isConnected │ │ │ └── SHT2x_isConnected.ino │ │ ├── SHT2x_lastRead │ │ │ └── SHT2x_lastRead.ino │ │ ├── SHT2x_nolib │ │ │ └── SHT2x_nolib.ino │ │ ├── SHT2x_rawValues │ │ │ └── SHT2x_rawValues.ino │ │ ├── SHT2x_resolution │ │ │ └── SHT2x_resolution.ino │ │ ├── SHT2x_resolution_test │ │ │ └── SHT2x_resolution_test.ino │ │ ├── SHT2x_test_CRC │ │ │ ├── .arduino-ci.yml │ │ │ └── SHT2x_test_CRC.ino │ │ └── Si70xx_demo_async_fast_HT │ │ │ └── Si70xx_demo_async_fast_HT.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── SHT31 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── SHT31.cpp │ ├── SHT31.h │ ├── examples │ │ ├── SHT31_I2Cspeed │ │ │ └── SHT31_I2Cspeed.ino │ │ ├── SHT31_async │ │ │ └── SHT31_async.ino │ │ ├── SHT31_demo │ │ │ └── SHT31_demo.ino │ │ ├── SHT31_demo_plotter │ │ │ └── SHT31_demo_plotter.ino │ │ ├── SHT31_getSerialNumber │ │ │ └── SHT31_getSerialNumber.ino │ │ ├── SHT31_heater │ │ │ └── SHT31_heater.ino │ │ ├── SHT31_isConnected │ │ │ └── SHT31_isConnected.ino │ │ ├── SHT31_lastRead │ │ │ └── SHT31_lastRead.ino │ │ ├── SHT31_rawValues │ │ │ └── SHT31_rawValues.ino │ │ ├── SHT31_slowRead │ │ │ └── SHT31_slowRead.ino │ │ ├── SHT31_two_I2C │ │ │ ├── .arduino-ci.yml │ │ │ └── SHT31_two_I2C.ino │ │ └── SHT31_two_I2C_array │ │ │ ├── .arduino-ci.yml │ │ │ └── SHT31_two_I2C_array.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── SHT31_SW │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ ├── scripts │ │ │ └── patch_arduino_ci.sh │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── SHT31_SW.cpp │ ├── SHT31_SW.h │ ├── examples │ │ ├── SHT31_I2Cspeed │ │ │ ├── SHT31_I2Cspeed.ino │ │ │ └── performance_0.3.0.txt │ │ ├── SHT31_async │ │ │ └── SHT31_async.ino │ │ ├── SHT31_demo │ │ │ └── SHT31_demo.ino │ │ ├── SHT31_heater │ │ │ └── SHT31_heater.ino │ │ ├── SHT31_isConnected │ │ │ └── SHT31_isConnected.ino │ │ ├── SHT31_lastRead │ │ │ └── SHT31_lastRead.ino │ │ ├── SHT31_rawValues │ │ │ └── SHT31_rawValues.ino │ │ └── SHT31_slowRead │ │ │ └── SHT31_slowRead.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── SHT31_SWW │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── SHT31_SWW.cpp │ ├── SHT31_SWW.h │ ├── examples │ │ ├── SHT31_I2Cspeed │ │ │ └── SHT31_I2Cspeed.ino │ │ ├── SHT31_async │ │ │ └── SHT31_async.ino │ │ ├── SHT31_demo │ │ │ └── SHT31_demo.ino │ │ ├── SHT31_heater │ │ │ └── SHT31_heater.ino │ │ ├── SHT31_isConnected │ │ │ └── SHT31_isConnected.ino │ │ ├── SHT31_lastRead │ │ │ └── SHT31_lastRead.ino │ │ ├── SHT31_rawValues │ │ │ └── SHT31_rawValues.ino │ │ └── SHT31_slowRead │ │ │ └── SHT31_slowRead.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── SHT4x │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── SHT4x.cpp │ ├── SHT4x.h │ ├── examples │ │ ├── SHT4x_I2Cspeed │ │ │ └── SHT4x_I2Cspeed.ino │ │ ├── SHT4x_async │ │ │ └── SHT4x_async.ino │ │ ├── SHT4x_demo │ │ │ └── SHT4x_demo.ino │ │ ├── SHT4x_demo_plotter │ │ │ └── SHT4x_demo_plotter.ino │ │ ├── SHT4x_getSerialNumber │ │ │ └── SHT4x_getSerialNumber.ino │ │ ├── SHT4x_heater │ │ │ └── SHT4x_heater.ino │ │ ├── SHT4x_isConnected │ │ │ └── SHT4x_isConnected.ino │ │ ├── SHT4x_lastRead │ │ │ └── SHT4x_lastRead.ino │ │ ├── SHT4x_rawValues │ │ │ └── SHT4x_rawValues.ino │ │ ├── SHT4x_two_I2C │ │ │ ├── .arduino-ci.yml │ │ │ └── SHT4x_two_I2C.ino │ │ └── SHT4x_two_I2C_array │ │ │ ├── .arduino-ci.yml │ │ │ └── SHT4x_two_I2C_array.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── SHT85 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── SHT85.cpp │ ├── SHT85.h │ ├── examples │ │ ├── SHT85_I2C_speed │ │ │ └── SHT85_I2C_speed.ino │ │ ├── SHT85_demo │ │ │ └── SHT85_demo.ino │ │ ├── SHT85_demo_async │ │ │ └── SHT85_demo_async.ino │ │ ├── SHT85_demo_offset │ │ │ └── SHT85_demo_offset.ino │ │ ├── SHT85_demo_plotter │ │ │ └── SHT85_demo_plotter.ino │ │ ├── SHT85_multiplex │ │ │ ├── .arduino-ci.yml │ │ │ └── SHT85_multiplex.ino │ │ └── sht30_test_address │ │ │ └── sht30_test_address.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── SIMON │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── SIMON_letters │ │ │ └── SIMON_letters.ino │ │ ├── SIMON_performance │ │ │ ├── SIMON_performance.ino │ │ │ └── performance_0.1.2.txt │ │ ├── SIMON_pincode │ │ │ └── SIMON_pincode.ino │ │ └── SIMON_test │ │ │ └── SIMON_test.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── simon.cpp │ ├── simon.h │ └── test │ │ └── unit_test_001.cpp ├── SMC │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── SMC.h │ ├── examples │ │ └── SMC_DHT22_FAN │ │ │ ├── .arduino-ci.yml │ │ │ └── SMC_DHT22_FAN.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── SRF05 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── SRF05.cpp │ ├── SRF05.h │ ├── examples │ │ ├── SRF05_calculateSpeedOfSound │ │ │ └── SRF05_calculateSpeedOfSound.ino │ │ ├── SRF05_demo │ │ │ └── SRF05_demo.ino │ │ ├── SRF05_demo_average │ │ │ └── SRF05_demo_average.ino │ │ ├── SRF05_demo_continuous │ │ │ └── SRF05_demo_continuous.ino │ │ ├── SRF05_demo_median │ │ │ └── SRF05_demo_median.ino │ │ ├── SRF05_demo_running_average │ │ │ └── SRF05_demo_running_average.ino │ │ ├── SRF05_demo_single_pin │ │ │ └── SRF05_demo_single_pin.ino │ │ └── SRF05_determine_speed_of_sound │ │ │ └── SRF05_determine_speed_of_sound.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── SWSPI │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── SWSPI.h │ ├── examples │ │ ├── SWSPI_performance │ │ │ └── SWSPI_performance.ino │ │ ├── SWSPI_test │ │ │ └── SWSPI_test.ino │ │ └── SWSPI_test_input │ │ │ ├── SWSPI_test_input.ino │ │ │ └── output_0.1.1.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── SWSerialOut │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG..md │ ├── LICENSE │ ├── README.md │ ├── SWSerialOut.h │ ├── examples │ │ ├── SWSO_ESP32_listener │ │ │ ├── .arduino-ci.yml │ │ │ └── SWSO_ESP32_listener.ino │ │ ├── SWSO_minimal │ │ │ └── SWSO_minimal.ino │ │ ├── SWSO_test_ESP32 │ │ │ ├── .arduino-ci.yml │ │ │ └── SWSO_test_ESP32.ino │ │ └── SWSO_test_UNO │ │ │ ├── .arduino-ci.yml │ │ │ └── SWSO_test_UNO.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── Set │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── Set.cpp │ ├── Set.h │ ├── examples │ │ ├── allTest │ │ │ ├── allTest.ino │ │ │ └── output_0.2.8.txt │ │ ├── equalTest │ │ │ └── equalTest.ino │ │ ├── interSectionTest │ │ │ └── interSectionTest.ino │ │ ├── iterationTest │ │ │ └── iterationTest.ino │ │ ├── randomFromSet │ │ │ └── randomFromSet.ino │ │ ├── subsetTest │ │ │ └── subsetTest.ino │ │ └── timingTest │ │ │ ├── output_0.2.8.txt │ │ │ └── timingTest.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── Soundex │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── Soundex.cpp │ ├── Soundex.h │ ├── examples │ │ ├── soundex_performance │ │ │ ├── performance_0.1.3.txt │ │ │ └── soundex_performance.ino │ │ ├── soundex_soundex16 │ │ │ ├── output_0.1.3.txt │ │ │ └── soundex_soundex16.ino │ │ └── soundex_test │ │ │ ├── output_0.1.2.txt │ │ │ ├── output_0.1.3.txt │ │ │ └── soundex_test.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── SparseArray │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── SparseArray.cpp │ ├── SparseArray.h │ ├── examples │ │ ├── sparse_array_demo │ │ │ └── sparse_array_demo.ino │ │ ├── sparse_array_max │ │ │ └── sparse_array_max.ino │ │ └── sparse_array_performance │ │ │ ├── performance_0.1.0.txt │ │ │ └── sparse_array_performance.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── SparseMatrix │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── SparseMatrix.cpp │ ├── SparseMatrix.h │ ├── examples │ │ ├── sparse_matrix_2D_histogram │ │ │ └── sparse_matrix_2D_histogram.ino │ │ ├── sparse_matrix_boundingBox │ │ │ └── sparse_matrix_boundingBox.ino │ │ ├── sparse_matrix_demo │ │ │ └── sparse_matrix_demo.ino │ │ ├── sparse_matrix_max │ │ │ └── sparse_matrix_max.ino │ │ ├── sparse_matrix_performance │ │ │ ├── .arduino-ci.yml │ │ │ ├── performance_0.1.0.txt │ │ │ ├── performance_0.1.1.txt │ │ │ ├── performance_0.1.2.txt │ │ │ ├── performance_0.1.3.txt │ │ │ ├── performance_0.2.0.txt │ │ │ └── sparse_matrix_performance.ino │ │ └── sparse_matrix_traverse │ │ │ └── sparse_matrix_traverse.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── Statistic │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── FAQ.md │ ├── LICENSE │ ├── README.md │ ├── Statistic.h │ ├── examples │ │ ├── Average │ │ │ ├── Average.ino │ │ │ ├── performance.0.3.4.txt │ │ │ ├── performance.0.4.0.txt │ │ │ ├── performance.0.4.3.txt │ │ │ └── performance.1.0.5.txt │ │ ├── StatisticArray │ │ │ └── StatisticArray.ino │ │ ├── TimingTest │ │ │ ├── TimingTest.ino │ │ │ ├── performance_0.4.0.txt │ │ │ ├── performance_0.4.4.txt │ │ │ └── performance_1.0.0.txt │ │ ├── statistic_add_overflow │ │ │ └── statistic_add_overflow.ino │ │ ├── statistic_range_middle │ │ │ ├── output_1.0.5.txt │ │ │ └── statistic_range_middle.ino │ │ └── statistic_test │ │ │ └── statistic_test.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── Stopwatch_RT │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── StopWatch.cpp │ ├── StopWatch.h │ ├── examples │ │ ├── sample │ │ │ └── sample.ino │ │ ├── sample2 │ │ │ └── sample2.ino │ │ ├── stopwatch_demo │ │ │ └── stopwatch_demo.ino │ │ ├── stopwatch_printable │ │ │ └── stopwatch_printable.ino │ │ └── stopwatch_resolution │ │ │ └── stopwatch_resolution.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── Student │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── Student.cpp │ ├── Student.h │ ├── StudentTable.h │ ├── examples │ │ └── Student_test │ │ │ ├── Student_test.ino │ │ │ └── output_0.1.1.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── TCA9548 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── TCA9548.cpp │ ├── TCA9548.h │ ├── examples │ │ ├── PCA9543_demo │ │ │ └── PCA9543_demo.ino │ │ ├── PCA9545_demo │ │ │ └── PCA9545_demo.ino │ │ ├── PCA9546_demo │ │ │ └── PCA9546_demo.ino │ │ ├── TCA9548_demo_AM2320 │ │ │ ├── .arduino-ci.yml │ │ │ └── TCA9548_demo_AM2320.ino │ │ ├── TCA9548_find │ │ │ └── TCA9548_find.ino │ │ ├── tca9548_demo │ │ │ └── tca9548_demo.ino │ │ └── tca9548_search_device │ │ │ └── tca9548_search_device.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── TCA9554 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── TCA9554.cpp │ ├── TCA9554.h │ ├── examples │ │ ├── TCA9534_digitalRead │ │ │ └── TCA9534_digitalRead.ino │ │ ├── TCA9534_digitalWrite │ │ │ └── TCA9534_digitalWrite.ino │ │ ├── TCA9554_digitalRead │ │ │ └── TCA9554_digitalRead.ino │ │ ├── TCA9554_digitalWrite │ │ │ └── TCA9554_digitalWrite.ino │ │ ├── TCA9554_getType │ │ │ └── TCA9554_getType.ino │ │ ├── TCA9554_interrupt │ │ │ └── TCA9554_interrupt.ino │ │ └── TCA9554_setPolarity │ │ │ └── TCA9554_setPolarity.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── TCA9555 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── TCA9555.cpp │ ├── TCA9555.h │ ├── documents │ │ ├── tca9535.pdf │ │ └── tca9555.pdf │ ├── examples │ │ ├── TCA9535_digitalRead │ │ │ └── TCA9535_digitalRead.ino │ │ ├── TCA9535_digitalWrite │ │ │ └── TCA9535_digitalWrite.ino │ │ ├── TCA9555_blink │ │ │ └── TCA9555_blink.ino │ │ ├── TCA9555_digitalRead │ │ │ └── TCA9555_digitalRead.ino │ │ ├── TCA9555_digitalWrite │ │ │ └── TCA9555_digitalWrite.ino │ │ ├── TCA9555_getType │ │ │ └── TCA9555_getType.ino │ │ ├── TCA9555_interrupt │ │ │ └── TCA9555_interrupt.ino │ │ ├── TCA9555_performance │ │ │ ├── TCA9555_performance.ino │ │ │ └── TCA9555_performance_0.4.3.txt │ │ └── TCA9555_setPolarity │ │ │ └── TCA9555_setPolarity.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── TCRT5000 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── TCRT5000.h │ ├── examples │ │ └── TCRT5000_demo │ │ │ └── TCRT5000_demo.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── TCS3210 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── TCS3210.cpp │ ├── TCS3210.h │ ├── documents │ │ └── tcs3200-e11.pdf │ ├── examples │ │ ├── TCS3210_demo_duration │ │ │ └── TCS3210_demo_duration.ino │ │ ├── TCS3210_demo_frequency │ │ │ └── TCS3210_demo_frequency.ino │ │ └── TCS3210_demo_percentage │ │ │ └── TCS3210_demo_percentage.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── TEMT6000 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── TEMT6000.h │ ├── examples │ │ ├── TEMT6000_demo │ │ │ └── TEMT6000_demo.ino │ │ └── TEMT6000_lux_angle │ │ │ └── TEMT6000_lux_angle.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── TLC5917 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── TLC5917.cpp │ ├── TLC5917.h │ ├── examples │ │ ├── TLC5917_NightRider │ │ │ └── TLC5917_NightRider.ino │ │ ├── TLC5917_demo │ │ │ └── TLC5917_demo.ino │ │ ├── TLC5917_demo_gain │ │ │ └── TLC5917_demo_gain.ino │ │ ├── TLC5917_demo_setChannel │ │ │ └── TLC5917_demo_setChannel.ino │ │ ├── TLC5917_gain_table │ │ │ ├── TLC5917_gain_table.ino │ │ │ └── TLC5917_gain_table.txt │ │ ├── TLC5917_performance │ │ │ ├── TLC5917_performance.ino │ │ │ ├── performance_0.1.0.txt │ │ │ ├── performance_0.1.1.txt │ │ │ ├── performance_0.1.2.txt │ │ │ ├── performance_0.2.0.txt │ │ │ └── performance_0.2.1.txt │ │ └── TLC5917_test_setCurrentGain │ │ │ └── TLC5917_test_setCurrentGain.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── TLC5947 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── TLC5947.cpp │ ├── TLC5947.h │ ├── examples │ │ ├── TLC5947_Daisy_Chain │ │ │ └── TLC5947_Daisy_Chain.ino │ │ ├── TLC5947_NightRider │ │ │ └── TLC5947_NightRider.ino │ │ ├── TLC5947_clock │ │ │ └── TLC5947_clock.ino │ │ ├── TLC5947_demo │ │ │ └── TLC5947_demo.ino │ │ ├── TLC5947_percentage │ │ │ └── TLC5947_percentage.ino │ │ └── TLC5947_performance │ │ │ ├── TLC5947_performance.ino │ │ │ ├── performance_0.1.2.txt │ │ │ ├── performance_0.2.0.txt │ │ │ └── performance_0.3.0.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── TLCBuffer │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── TLCBuffer.h │ ├── examples │ │ ├── TLCBuffer_demo │ │ │ └── TLCBuffer_demo.ino │ │ └── TLCBuffer_performance │ │ │ ├── TLCBuffer_performance.ino │ │ │ └── TLCBuffer_performance_0.1.0.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── TM1637_RT │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── TM1637.cpp │ ├── TM1637.h │ ├── examples │ │ ├── TM1637_HEX │ │ │ └── TM1637_HEX.ino │ │ ├── TM1637_alpha │ │ │ └── TM1637_alpha.ino │ │ ├── TM1637_clock_4digits │ │ │ └── TM1637_clock_4digits.ino │ │ ├── TM1637_custom │ │ │ └── TM1637_custom.ino │ │ ├── TM1637_displayCelsius │ │ │ └── TM1637_displayCelsius.ino │ │ ├── TM1637_displayTime │ │ │ └── TM1637_displayTime.ino │ │ ├── TM1637_displayTime2 │ │ │ └── TM1637_displayTime2.ino │ │ ├── TM1637_displayTwoInt │ │ │ └── TM1637_displayTwoInt.ino │ │ ├── TM1637_float │ │ │ └── TM1637_float.ino │ │ ├── TM1637_float_point │ │ │ └── TM1637_float_point.ino │ │ ├── TM1637_hide_segment │ │ │ └── TM1637_hide_segment.ino │ │ ├── TM1637_int │ │ │ └── TM1637_int.ino │ │ ├── TM1637_keyscan_cooked │ │ │ └── TM1637_keyscan_cooked.ino │ │ ├── TM1637_keyscan_raw │ │ │ └── TM1637_keyscan_raw.ino │ │ └── TM1637_pchar │ │ │ └── TM1637_pchar.ino │ ├── images │ │ ├── disp_plus_kbd.jpg │ │ ├── fast_rise.jpg │ │ ├── modified.jpg │ │ ├── slow_rise.jpg │ │ └── unmodified.jpg │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── TOPMAX │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── TOPMAX.cpp │ ├── TOPMAX.h │ ├── examples │ │ ├── TOPMAX_demo │ │ │ └── TOPMAX_demo.ino │ │ ├── TOPMAX_duo │ │ │ └── TOPMAX_duo.ino │ │ ├── TOPMAX_performance │ │ │ ├── TOPMAX_performance.ino │ │ │ └── output_0.2.2.txt │ │ ├── TOPMAXext_count │ │ │ └── TOPMAXext_count.ino │ │ └── TOPMAXext_millis │ │ │ └── TOPMAXext_millis.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── TOPMIN │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── TOPMIN.cpp │ ├── TOPMIN.h │ ├── examples │ │ ├── TOPMIN_demo │ │ │ └── TOPMIN_demo.ino │ │ ├── TOPMIN_duo │ │ │ └── TOPMIN_duo.ino │ │ ├── TOPMIN_performance │ │ │ └── TOPMIN_performance.ino │ │ ├── TOPMINext_count │ │ │ └── TOPMINext_count.ino │ │ └── TOPMINext_millis │ │ │ └── TOPMINext_millis.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── TSL235R │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── TSL235R .cpp │ ├── TSL235R.h │ ├── examples │ │ ├── TSL235R_demo │ │ │ └── TSL235R_demo.ino │ │ ├── TSL235R_multi │ │ │ └── TSL235R_multi.ino │ │ ├── TSL235R_multi_alternate │ │ │ └── TSL235R_multi_alternate.ino │ │ ├── TSL235R_non_interrupt │ │ │ └── TSL235R_non_interrupt.ino │ │ ├── TSL235R_non_interrupt_UNO │ │ │ ├── .arduino-ci.yml │ │ │ └── TSL235R_non_interrupt_UNO.ino │ │ └── TSL235R_pulses │ │ │ └── TSL235R_pulses.ino │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── TSL260R │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── TSL260R.cpp │ ├── TSL260R.h │ ├── examples │ │ ├── TSL260R_demo │ │ │ ├── TSL260R_demo.ino │ │ │ └── output_0.1.0.txt │ │ ├── TSL260R_internal_ADC │ │ │ └── TSL260R_internal_ADC.ino │ │ ├── TSL260R_internal_ADC_average │ │ │ └── TSL260R_internal_ADC_average.ino │ │ ├── TSL260R_plotter │ │ │ └── TSL260R_plotter.ino │ │ └── TSL260R_test │ │ │ └── TSL260R_test.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── Temperature │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── examples │ │ ├── boilingPoint_test │ │ │ └── boilingPoint_test.ino │ │ ├── dewpoint_test │ │ │ └── dewpoint_test.ino │ │ ├── discomfortIndex_test │ │ │ └── discomfortIndex_test.ino │ │ ├── heatindexC_table │ │ │ └── heatindexC_table.ino │ │ ├── heatindexC_test │ │ │ └── heatindexC_test.ino │ │ ├── heatindex_table │ │ │ └── heatindex_table.ino │ │ ├── heatindex_test │ │ │ └── heatindex_test.ino │ │ ├── humidex_table │ │ │ └── humidex_table.ino │ │ ├── humidex_test │ │ │ └── humidex_test.ino │ │ ├── tempConvertor_test │ │ │ └── tempConvertor_test.ino │ │ └── windChill_test │ │ │ └── windChill_test.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── readme.md │ ├── temperature.cpp │ ├── temperature.h │ └── test │ │ └── unit_test_001.cpp ├── TinyKT0803 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── KT0803_minimal │ │ │ └── KT0803_minimal.ino │ │ ├── KT0803_oled │ │ │ └── KT0803_oled.ino │ │ └── KT0803_setFrequency │ │ │ └── KT0803_setFrequency.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── src │ │ ├── TinyKT0803.cpp │ │ └── TinyKT0803.h ├── Troolean │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── Troolean.cpp │ ├── Troolean.h │ ├── examples │ │ ├── testTroolean │ │ │ └── testTroolean.ino │ │ └── testTrooleanArray │ │ │ └── testTrooleanArray.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── UUID │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── UUID.cpp │ ├── UUID.h │ ├── examples │ │ ├── GUID_diff │ │ │ └── GUID_diff.ino │ │ ├── GUID_test │ │ │ └── GUID_test.ino │ │ ├── UUID_for_loop │ │ │ └── UUID_for_loop.ino │ │ ├── UUID_minimum │ │ │ └── UUID_minimum.ino │ │ ├── UUID_performance │ │ │ ├── UUID_performance.ino │ │ │ ├── performance_0.1.4..txt │ │ │ ├── performance_0.1.5.txt │ │ │ └── performance_0.2.0.txt │ │ ├── UUID_random_ESP32 │ │ │ └── UUID_random_ESP32.ino │ │ ├── UUID_random_seed │ │ │ └── UUID_random_seed.ino │ │ └── UUID_test │ │ │ ├── UUID_test.ino │ │ │ ├── output_0.1.1.txt │ │ │ ├── output_0.1.2.txt │ │ │ ├── output_0.1.3.txt │ │ │ ├── output_0.1.4.txt │ │ │ └── output_0.2.0.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── VT100 │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── LICENSE │ ├── README.md │ ├── VT100.h │ ├── examples │ │ └── vt100demo │ │ │ └── vt100demo.ino │ ├── library.json │ ├── library.properties │ └── replaced by ANSI library.txt ├── Vibration │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── Vibration.h │ ├── examples │ │ ├── Vibration_average │ │ │ └── Vibration_average.ino │ │ ├── Vibration_average_no_reset │ │ │ └── Vibration_average_no_reset.ino │ │ ├── Vibration_maxValue │ │ │ └── Vibration_maxValue.ino │ │ ├── Vibration_plot_graph │ │ │ └── Vibration_plot_graph.ino │ │ └── Vibration_zeroCount │ │ │ └── Vibration_zeroCount.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── VolumeConverter │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── VolumeConverter.h │ ├── examples │ │ └── volumeConverter_test │ │ │ ├── output_0.1.2.txt │ │ │ └── volumeConverter_test.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── WaterMix │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── WaterMix.h │ ├── examples │ │ ├── WaterMix_demo │ │ │ └── WaterMix_demo.ino │ │ ├── WaterMix_demo2 │ │ │ └── WaterMix_demo2.ino │ │ └── WaterMix_exact │ │ │ └── WaterMix_exact.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── WaveMix │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── WaveMix.cpp │ ├── WaveMix.h │ ├── examples │ │ ├── waveMix_demo │ │ │ └── waveMix_demo.ino │ │ ├── waveMix_demo_adaptive_weight │ │ │ └── waveMix_demo_adaptive_weight.ino │ │ ├── waveMix_demo_modulator │ │ │ └── waveMix_demo_modulator.ino │ │ ├── waveMix_demo_modulator_2 │ │ │ └── waveMix_demo_modulator_2.ino │ │ ├── waveMix_demo_noise │ │ │ └── waveMix_demo_noise.ino │ │ ├── waveMix_demo_noise_offset │ │ │ └── waveMix_demo_noise_offset.ino │ │ └── waveMix_demo_temperature │ │ │ └── waveMix_demo_temperature.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── X9C10X │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── X9C10X.cpp │ ├── X9C10X.h │ ├── examples │ │ ├── X9C10X_performance │ │ │ ├── X9C10X_performance.ino │ │ │ ├── performance_0.1.0.txt │ │ │ ├── performance_0.1.1.txt │ │ │ ├── performance_0.1.2.txt │ │ │ └── performance_0.2.0.txt │ │ ├── X9C10X_store │ │ │ ├── .arduino-ci.yml │ │ │ └── X9C10X_store.ino │ │ ├── X9C10X_sweeper │ │ │ └── X9C10X_sweeper.ino │ │ ├── X9C10X_test │ │ │ └── X9C10X_test.ino │ │ └── X9C_test │ │ │ └── X9C_test.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── XMLWriter │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── XMLWriter.cpp │ ├── XMLWriter.h │ ├── examples │ │ ├── KMLWriterTest │ │ │ └── KMLWriterTest.ino │ │ ├── XMLWriterDefaultSerial │ │ │ ├── XMLWriterDefaultSerial.ino │ │ │ └── XMLWriterTest_sampleOutput.xml │ │ ├── XMLWriterEthernet │ │ │ ├── .arduino-ci.yml │ │ │ ├── 0.1.0 │ │ │ │ └── XMLWriterEthernet.ino │ │ │ └── XMLWriterEthernet.ino │ │ ├── XMLWriterPrint_1 │ │ │ └── XMLWriterPrint_1.ino │ │ ├── XMLWriterPrint_2 │ │ │ └── XMLWriterPrint_2.ino │ │ ├── XMLWriterPrint_3 │ │ │ └── XMLWriterPrint_3.ino │ │ ├── XMLWriterPrint_4 │ │ │ └── XMLWriterPrint_4.ino │ │ ├── XMLWriterSDcard │ │ │ ├── XMLWriterSDcard.ino │ │ │ ├── note.txt │ │ │ └── readme.md │ │ ├── XMLWriterString │ │ │ ├── .arduino-ci.yml │ │ │ └── XMLWriterString.ino │ │ ├── XMLWriterTest │ │ │ ├── XMLWriterTest.ino │ │ │ └── XMLWriterTest_sampleOutput.xml │ │ ├── XMLWriterTestDebug │ │ │ └── XMLWriterTestDebug.ino │ │ └── XMLWriterdemo01 │ │ │ └── XMLWriterdemo01.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── bitHelpers │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── bitHelpers.cpp │ ├── bitHelpers.h │ ├── examples │ │ ├── bitHelpersPerformance │ │ │ ├── bitHelpersPerformance.ino │ │ │ └── output_0.2.0.txt │ │ ├── bitHelpersPerformance64 │ │ │ └── bitHelpersPerformance64.ino │ │ ├── bitHelpers_bitRotFast_compare │ │ │ ├── bitHelpers_bitRotFast_compare.ino │ │ │ └── output_0.2.0.txt │ │ └── bitHelpers_test │ │ │ └── bitHelpers_test.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── dateTimeHelpers │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── dateTimeHelpers.h │ ├── examples │ │ ├── datetime_angles │ │ │ └── datetime_angles.ino │ │ ├── datetime_clockAMPM │ │ │ └── datetime_clockAMPM.ino │ │ ├── datetime_millis2clock │ │ │ └── datetime_millis2clock.ino │ │ ├── datetime_millis2duration │ │ │ └── datetime_millis2duration.ino │ │ ├── datetime_performance │ │ │ ├── datetime_performance.ino │ │ │ └── output_0.1.1.txt │ │ └── datetime_test │ │ │ └── datetime_test.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── decibel │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── decibel.h │ ├── examples │ │ ├── decibel_compare │ │ │ └── decibel_compare.ino │ │ ├── decibel_inverse │ │ │ └── decibel_inverse.ino │ │ └── decibel_test │ │ │ ├── decibel_test.ino │ │ │ ├── output_ESP32_0.1.0.txt │ │ │ └── output_UNO_0.1.0.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── ellipse │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── ellipse.cpp │ ├── ellipse.h │ ├── examples │ │ ├── ellipse_angle │ │ │ └── ellipse_angle.ino │ │ ├── ellipse_investigate │ │ │ └── ellipse_investigate.ino │ │ ├── ellipse_performance │ │ │ ├── ellipse_performance.ino │ │ │ ├── performance_0.1.0.txt │ │ │ ├── performance_0.1.4.txt │ │ │ └── performance_0.2.0.txt │ │ ├── ellipse_performance2 │ │ │ ├── ellipse_performance2.ino │ │ │ └── performance_0.1.4.txt │ │ ├── ellipse_table │ │ │ ├── ellipse_table.ino │ │ │ └── output_0.2.0.txt │ │ └── ellipse_test │ │ │ └── ellipse_test.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── fast_math │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── bcd_performance │ │ │ ├── bcd_performance.ino │ │ │ └── output_0.2.0.txt │ │ ├── divmod10_performance │ │ │ └── divmod10_performance.ino │ │ ├── divmod12_performance │ │ │ ├── divmod12_0.2.0.txt │ │ │ ├── divmod12_0.2.1.txt │ │ │ └── divmod12_performance.ino │ │ ├── divmod24_performance │ │ │ ├── divmod24_0.2.1.txt │ │ │ └── divmod24_performance.ino │ │ ├── divmod3_performance │ │ │ ├── divmod3_0.2.0.txt │ │ │ ├── divmod3_0.2.1.txt │ │ │ └── divmod3_performance.ino │ │ ├── divmod5_performance │ │ │ ├── divmod5_0.2.0.txt │ │ │ ├── divmod5_0.2.1.txt │ │ │ └── divmod5_performance.ino │ │ ├── divmod60_performance │ │ │ ├── divmod60_0.2.1.txt │ │ │ └── divmod60_performance.ino │ │ ├── log10_performance │ │ │ ├── log10_0.2.4.txt │ │ │ └── log10_performance.ino │ │ ├── ping2_temp_compensated │ │ │ ├── performance_0.2.1.txt │ │ │ └── ping2_temp_compensated.ino │ │ ├── ping2cm │ │ │ ├── performance_0.2.0.txt │ │ │ ├── performance_0.2.1.txt │ │ │ └── ping2cm.ino │ │ ├── ping2inch │ │ │ ├── performance_0.2.0.txt │ │ │ ├── performance_0.2.1.txt │ │ │ └── ping2inch.ino │ │ └── polynome │ │ │ ├── output_0.2.0.txt │ │ │ └── polynome.ino │ ├── fast_math.cpp │ ├── fast_math.h │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── float16 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── float16_sizeof_array │ │ │ └── float16_sizeof_array.ino │ │ ├── float16_test0 │ │ │ └── float16_test0.ino │ │ ├── float16_test1 │ │ │ └── float16_test1.ino │ │ ├── float16_test_all │ │ │ └── float16_test_all.ino │ │ ├── float16_test_all_2 │ │ │ └── float16_test_all_2.ino │ │ ├── float16_test_array │ │ │ ├── float16_test_array.ino │ │ │ └── output_0.3.0.txt │ │ ├── float16_test_negative │ │ │ └── float16_test_negative.ino │ │ ├── float16_test_performance │ │ │ ├── float16_test_performance.ino │ │ │ ├── performance_0.1.4.txt │ │ │ ├── performance_0.1.7.txt │ │ │ ├── performance_0.2.0.txt │ │ │ └── performance_0.3.0.txt │ │ ├── float16_test_powers2 │ │ │ └── float16_test_powers2.ino │ │ └── float16_test_special │ │ │ └── float16_test_special.ino │ ├── float16.cpp │ ├── float16.h │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── float16ext │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── float16ext_plotter │ │ │ ├── .arduino-ci.yml │ │ │ └── float16ext_plotter.ino │ │ ├── float16ext_print_all │ │ │ ├── .arduino-ci.yml │ │ │ └── float16ext_print_all.ino │ │ ├── float16ext_print_all_sci │ │ │ ├── .arduino-ci.yml │ │ │ └── float16ext_print_all_sci.ino │ │ └── float16ext_test_all_2 │ │ │ └── float16ext_test_all_2.ino │ ├── float16ext.cpp │ ├── float16ext.h │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── geomath │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── fastHaverSine │ │ │ ├── fastHaverSine.ino │ │ │ └── output_0.1.2.txt │ │ └── geomath_test01 │ │ │ └── geomath_test01.ino │ ├── geomath.h │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── hmc6352 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── continuousDemo │ │ │ └── continuousDemo.ino │ │ ├── hmc6352Config │ │ │ └── hmc6352Config.ino │ │ ├── queryDemo │ │ │ └── queryDemo.ino │ │ ├── set2continuous │ │ │ └── set2continuous.ino │ │ ├── set2query │ │ │ └── set2query.ino │ │ ├── set2standby │ │ │ └── set2standby.ino │ │ └── standbyDemo │ │ │ └── standbyDemo.ino │ ├── hmc6352.cpp │ ├── hmc6352.h │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── infiniteAverage │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── IA_test │ │ │ └── IA_test.ino │ │ ├── IA_test_mini_steps │ │ │ └── IA_test_mini_steps.ino │ │ ├── IA_test_threshold │ │ │ └── IA_test_threshold.ino │ │ └── IA_verify_ESP │ │ │ └── IA_verify_ESP.ino │ ├── infiniteAverage.h │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── integer24 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── integer24_demo │ │ │ └── integer24_demo.ino │ │ ├── integer24_explore_printing │ │ │ └── integer24_explore_printing.ino │ │ └── integer24_test │ │ │ └── integer24_test.ino │ ├── integer24.h │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── logic │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── logic_neval │ │ │ └── logic_neval.ino │ │ ├── logic_performance │ │ │ ├── logic_performance.ino │ │ │ └── logic_performance_0.1.0.txt │ │ ├── logic_test │ │ │ └── logic_test.ino │ │ └── logic_two_out_four │ │ │ └── logic_two_out_four.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── logic.h │ └── test │ │ └── unit_test_001.cpp ├── logicAnalyzer │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── logicAnalyzer │ │ │ └── logicAnalyzer.ino │ │ ├── logicAnalyzer_1_channel │ │ │ └── logicAnalyzer_1_channel.ino │ │ ├── logicAnalyzer_1_channel_esp32 │ │ │ └── logicAnalyzer_1_channel_esp32.ino │ │ ├── logicAnalyzer_4_channel │ │ │ └── logicAnalyzer_4_channel.ino │ │ ├── logicAnalyzer_4_channel_buffer │ │ │ └── logicAnalyzer_4_channel_buffer.ino │ │ ├── logicAnalyzer_4_channel_esp32 │ │ │ └── logicAnalyzer_4_channel_esp32.ino │ │ ├── logicAnalyzer_4_channel_inject │ │ │ └── logicAnalyzer_4_channel_inject.ino │ │ ├── logicAnalyzer_clock_changed │ │ │ └── logicAnalyzer_clock_changed.ino │ │ ├── logicAnalyzer_clock_falling │ │ │ └── logicAnalyzer_clock_falling.ino │ │ ├── logicAnalyzer_clock_high_low │ │ │ └── logicAnalyzer_clock_high_low.ino │ │ ├── logicAnalyzer_clock_rising │ │ │ └── logicAnalyzer_clock_rising.ino │ │ └── logicAnalyzer_inject │ │ │ ├── logicAnalyzer_inject.ino │ │ │ └── screen_capture.JPG │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── logicAnalyzer.cpp │ ├── logicAnalyzer.h │ └── test │ │ └── unit_test_001.cpp ├── map2bits │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── map2bits_analogRead │ │ │ └── map2bits_analogRead.ino │ │ ├── map2bits_demo │ │ │ └── map2bits_demo.ino │ │ ├── map2bits_performance │ │ │ ├── map2bits_performance.ino │ │ │ ├── performance_0.1.0.txt │ │ │ └── performance_0.1.1.txt │ │ ├── map2bits_plotter │ │ │ └── map2bits_plotter.ino │ │ └── map2bits_random │ │ │ └── map2bits_random.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── map2bits.cpp │ ├── map2bits.h │ └── test │ │ └── unit_test_001.cpp ├── map2colour │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── map2colour_compare_fast │ │ │ └── map2colour_compare_fast.ino │ │ ├── map2colour_demo01 │ │ │ └── map2colour_demo01.ino │ │ ├── map2colour_dynamic │ │ │ └── map2colour_dynamic.ino │ │ ├── map2colour_faucet │ │ │ └── map2colour_faucet.ino │ │ ├── map2colour_gradient_break │ │ │ └── map2colour_gradient_break.ino │ │ ├── map2colour_intensity │ │ │ └── map2colour_intensity.ino │ │ ├── map2colour_map2_565 │ │ │ └── map2colour_map2_565.ino │ │ ├── map2colour_performance │ │ │ ├── map2colour_performance.ino │ │ │ ├── performance_0.1.2.txt │ │ │ ├── performance_0.1.3.txt │ │ │ ├── performance_0.1.4.txt │ │ │ ├── performance_0.1.5.txt │ │ │ ├── performance_0.2.0.txt │ │ │ └── performance_0.2.2.txt │ │ ├── map2colour_pressure │ │ │ └── map2colour_pressure.ino │ │ ├── map2colour_temperature │ │ │ └── map2colour_temperature.ino │ │ ├── map2colour_wavelength │ │ │ └── map2colour_wavelength.ino │ │ └── map2colour_windys_demo │ │ │ └── map2colour_windys_demo.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── m2c_colours.h │ ├── map2colour.cpp │ ├── map2colour.h │ └── test │ │ └── unit_test_001.cpp ├── millis64 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── micros64_demo │ │ │ ├── .arduino-ci.yml │ │ │ └── micros64_demo.ino │ │ ├── millis64_demo │ │ │ └── millis64_demo.ino │ │ └── millis64_performance │ │ │ ├── .arduino-ci.yml │ │ │ ├── millis64_performance.ino │ │ │ └── performance_0.1.0.txt │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── millis64.h │ └── test │ │ └── unit_test_001.cpp ├── moduloMap │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── moduloMap_demo │ │ │ └── moduloMap_demo.ino │ │ ├── moduloMap_performance │ │ │ ├── moduloMap_performance.ino │ │ │ ├── performance_0.1.0.txt │ │ │ └── performance_0.1.3.txt │ │ └── moduloMap_rotations │ │ │ └── moduloMap_rotations.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── moduloMap.h │ └── test │ │ └── unit_test_001.cpp ├── optoma │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ └── optoma_test │ │ │ └── optoma_test.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── optoma.cpp │ ├── optoma.h │ └── test │ │ └── unit_test_001.cpp ├── palindrome │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── examples │ │ ├── demo │ │ │ └── demo.ino │ │ ├── demo_count │ │ │ └── demo_count.ino │ │ ├── demo_isPalindrome │ │ │ └── demo_isPalindrome.ino │ │ └── develop │ │ │ └── develop.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── palindrome.cpp │ ├── palindrome.h │ ├── readme.md │ └── test │ │ └── unit_test_001.cpp ├── pressure │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── pressure_demo │ │ │ └── pressure_demo.ino │ │ ├── pressure_gas_law │ │ │ └── pressure_gas_law.ino │ │ ├── pressure_gas_law_table │ │ │ └── pressure_gas_law_table.ino │ │ └── pressure_specific │ │ │ └── pressure_specific.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── pressure.h │ └── test │ │ └── unit_test_001.cpp ├── printHelpers │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── print64 │ │ │ └── print64.ino │ │ ├── print64_MT │ │ │ └── print64_MT.ino │ │ ├── print_comma_separated_integers │ │ │ └── print_comma_separated_integers.ino │ │ ├── print_comma_separated_integers_MT │ │ │ └── print_comma_separated_integers_MT.ino │ │ ├── print_fractions │ │ │ └── print_fractions.ino │ │ ├── print_fractions_MT │ │ │ └── print_fractions_MT.ino │ │ ├── print_fractions_denum │ │ │ └── print_fractions_denum.ino │ │ ├── print_fractions_denum_MT │ │ │ └── print_fractions_denum_MT.ino │ │ ├── print_hex_bin │ │ │ └── print_hex_bin.ino │ │ ├── print_hex_bin_MT │ │ │ └── print_hex_bin_MT.ino │ │ ├── print_inch_feet │ │ │ └── print_inch_feet.ino │ │ ├── print_inch_feet_MT │ │ │ └── print_inch_feet_MT.ino │ │ ├── print_performance │ │ │ ├── performance_0.3.0.txt │ │ │ ├── performance_0.3.1.txt │ │ │ ├── performance_0.4.0.txt │ │ │ ├── performance_0.4.1.txt │ │ │ ├── performance_0.4.3.txt │ │ │ ├── performance_0.5.0.txt │ │ │ └── print_performance.ino │ │ ├── print_performance_MT │ │ │ ├── performance_0.5.0.txt │ │ │ └── print_performance_MT.ino │ │ ├── print_sci │ │ │ └── print_sci.ino │ │ ├── print_sci_MT │ │ │ └── print_sci_MT.ino │ │ ├── print_toRoman │ │ │ └── print_toRoman.ino │ │ ├── print_toRoman_MT │ │ │ └── print_toRoman_MT.ino │ │ ├── sci_test │ │ │ └── sci_test.ino │ │ ├── sci_test_log_pow │ │ │ ├── readme.md │ │ │ └── sci_test_log_pow.ino │ │ ├── toBytes │ │ │ └── toBytes.ino │ │ └── toBytes_MT │ │ │ └── toBytes_MT.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── printHelpers.cpp │ ├── printHelpers.h │ ├── printHelpersMT.h │ └── test │ │ └── unit_test_001.cpp ├── rain │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── rain_delta │ │ │ └── rain_delta.ino │ │ ├── rain_demo │ │ │ └── rain_demo.ino │ │ ├── rain_demo_powerpin │ │ │ └── rain_demo_powerpin.ino │ │ ├── rain_digital_out │ │ │ └── rain_digital_out.ino │ │ ├── rain_interrupt │ │ │ └── rain_interrupt.ino │ │ ├── rain_setLevel │ │ │ └── rain_setLevel.ino │ │ └── rain_setLevel_guard_low │ │ │ └── rain_setLevel_guard_low.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── rain.cpp │ ├── rain.h │ └── test │ │ └── unit_test_001.cpp ├── randomHelpers │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── getRandomBits_test │ │ │ ├── getRandomBits_test.ino │ │ │ └── output_0.2.8.txt │ │ ├── randomHelpers_test │ │ │ ├── performance_0.2.5.txt │ │ │ ├── performance_0.2.6.txt │ │ │ ├── performance_0.2.8.txt │ │ │ └── randomHelpers_test.ino │ │ ├── randomPrime │ │ │ └── randomPrime.txt │ │ ├── randomSeed_analog │ │ │ └── randomSeed_analog.ino │ │ └── uniform_test │ │ │ ├── output_0.2.5.txt │ │ │ ├── output_0.2.6.txt │ │ │ └── uniform_test.ino │ ├── library.json │ ├── library.properties │ ├── randomHelpers.cpp │ ├── randomHelpers.h │ └── test │ │ └── unit_test_001.cpp ├── relativity │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── gamma_table │ │ │ └── gamma_table.ino │ │ ├── gravity_demo │ │ │ └── gravity_demo.ino │ │ └── relativity_demo │ │ │ └── relativity_demo.ino │ ├── library.json │ ├── library.properties │ ├── relativity.h │ └── test │ │ └── unit_test_001.cpp ├── rotaryDecoder │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── rotaryDecoder_demo_RE_IO │ │ │ └── rotaryDecoder_demo_RE_IO.ino │ │ ├── rotaryDecoder_demo_interrupt │ │ │ └── rotaryDecoder_demo_interrupt.ino │ │ ├── rotaryDecoder_demo_polling │ │ │ └── rotaryDecoder_demo_polling.ino │ │ ├── rotaryDecoder_demo_simple │ │ │ └── rotaryDecoder_demo_simple.ino │ │ ├── rotaryDecoder_demo_single │ │ │ └── rotaryDecoder_demo_single.ino │ │ └── rotaryDecoder_performance │ │ │ └── rotaryDecoder_performance.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── rotaryDecoder.cpp │ ├── rotaryDecoder.h │ └── test │ │ └── unit_test_001.cpp ├── rotaryDecoder8 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── rotaryDecoder8_demo_RE_IO │ │ │ └── rotaryDecoder8_demo_RE_IO.ino │ │ ├── rotaryDecoder8_demo_interrupt │ │ │ └── rotaryDecoder8_demo_interrupt.ino │ │ ├── rotaryDecoder8_demo_polling │ │ │ └── rotaryDecoder8_demo_polling.ino │ │ ├── rotaryDecoder8_demo_simple │ │ │ └── rotaryDecoder8_demo_simple.ino │ │ ├── rotaryDecoder8_demo_single │ │ │ └── rotaryDecoder8_demo_single.ino │ │ └── rotaryDecoder8_performance │ │ │ └── rotaryDecoder8_performance.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── rotaryDecoder8.cpp │ ├── rotaryDecoder8.h │ └── test │ │ └── unit_test_001.cpp ├── rotaryDecoderSwitch │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── rotaryDecoderSwitch_demo_interrupt │ │ │ └── rotaryDecoderSwitch_demo_interrupt.ino │ │ ├── rotaryDecoderSwitch_demo_polling │ │ │ └── rotaryDecoderSwitch_demo_polling.ino │ │ ├── rotaryDecoderSwitch_demo_simple │ │ │ └── rotaryDecoderSwitch_demo_simple.ino │ │ └── rotaryDecoderSwitch_performance │ │ │ └── rotaryDecoderSwitch_performance.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── rotaryDecoderSwitch.cpp │ ├── rotaryDecoderSwitch.h │ └── test │ │ └── unit_test_001.cpp ├── rotaryDecoderSwitch5 │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── rotaryDecoderSwitch5_demo_interrupt │ │ │ └── rotaryDecoderSwitch5_demo_interrupt.ino │ │ ├── rotaryDecoderSwitch5_demo_polling │ │ │ └── rotaryDecoderSwitch5_demo_polling.ino │ │ ├── rotaryDecoderSwitch5_demo_simple │ │ │ └── rotaryDecoderSwitch5_demo_simple.ino │ │ ├── rotaryDecoderSwitch5_performance │ │ │ └── rotaryDecoderSwitch5_performance.ino │ │ └── rotaryDecoderSwitch5_test_PCF8575 │ │ │ └── rotaryDecoderSwitch5_test_PCF8575.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── rotaryDecoderSwitch5.cpp │ ├── rotaryDecoderSwitch5.h │ └── test │ │ └── unit_test_001.cpp ├── runningAngle │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── runningAngle │ │ │ └── runningAngle.ino │ │ ├── runningAngle_0_360 │ │ │ └── runningAngle_0_360.ino │ │ └── time-add │ │ │ ├── .arduino-ci.yml │ │ │ ├── performance_0.1.5.txt │ │ │ ├── performance_0.2.0.txt │ │ │ └── time-add.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── runningAngle.cpp │ ├── runningAngle.h │ └── test │ │ └── unit_test_001.cpp ├── shiftInSlow │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── ShiftInSlow.cpp │ ├── ShiftInSlow.h │ ├── examples │ │ └── shiftInSlow_demo │ │ │ └── shiftInSlow_demo.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── shiftOutSlow │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── ShiftOutSlow.cpp │ ├── ShiftOutSlow.h │ ├── examples │ │ ├── shiftOutSlow_demo │ │ │ └── shiftOutSlow_demo.ino │ │ └── shiftOutSlow_print │ │ │ └── shiftOutSlow_print.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── test │ │ └── unit_test_001.cpp ├── statHelpers │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── bigCombinations │ │ │ └── bigCombinations.ino │ │ ├── bigFactorial │ │ │ └── bigFactorial.ino │ │ ├── bigPermutations │ │ │ └── bigPermutations.ino │ │ ├── combinations │ │ │ └── combinations.ino │ │ ├── factorial │ │ │ └── factorial.ino │ │ ├── factorial_performance │ │ │ └── factorial_performance.ino │ │ ├── nextPermutation │ │ │ └── nextPermutation.ino │ │ ├── perm1 │ │ │ └── perm1.ino │ │ ├── permutations │ │ │ └── permutations.ino │ │ ├── semiFactorial │ │ │ └── semiFactorial.ino │ │ └── skipFactorial │ │ │ └── skipFactorial.ino │ ├── investigation.md │ ├── library.json │ ├── library.properties │ ├── statHelpers.cpp │ ├── statHelpers.h │ └── test │ │ └── unit_test_001.cpp ├── timing │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── microSeconds │ │ │ └── microSeconds.ino │ │ ├── milliSeconds │ │ │ └── milliSeconds.ino │ │ ├── seconds │ │ │ └── seconds.ino │ │ └── seconds_toClock │ │ │ ├── .arduino-ci.yml │ │ │ └── seconds_toClock.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── test │ │ └── unit_test_001.cpp │ └── timing.h ├── tinySHT2x │ ├── .arduino-ci.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── arduino-lint.yml │ │ │ ├── arduino_test_runner.yml │ │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── documents │ │ ├── Download Center - Sensirion.url │ │ ├── Programming ATtiny85 with Arduino Uno - Arduino Project Hub.url │ │ ├── SHT20_datasheet.pdf │ │ ├── SHT21_datasheet.pdf │ │ ├── Sensirion_Humidity_SHT21_Sample_Code_V1.2.pdf │ │ └── Sensirion_Humidity_Sensors_SHT25_Datasheet.pdf │ ├── examples │ │ ├── tinySHT2x_demo │ │ │ ├── .arduino-ci.yml │ │ │ └── tinySHT2x_demo.ino │ │ ├── tinySHT2x_demo_async │ │ │ ├── .arduino-ci.yml │ │ │ └── tinySHT2x_demo_async.ino │ │ └── tinySHT2x_demo_delay │ │ │ ├── .arduino-ci.yml │ │ │ └── tinySHT2x_demo_delay.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── test │ │ └── unit_test_001.cpp │ ├── tinySHT2x.cpp │ └── tinySHT2x.h └── weight │ ├── .arduino-ci.yml │ ├── .github │ ├── FUNDING.yml │ └── workflows │ │ ├── arduino-lint.yml │ │ ├── arduino_test_runner.yml │ │ └── jsoncheck.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ ├── weightConverter_test │ │ └── weightConverter_test.ino │ ├── weightPerformance │ │ └── weightPerformance.ino │ └── weightTest │ │ └── weightTest.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── test │ └── unit_test_001.cpp │ └── weight.h └── sketches ├── 8x7segment_display ├── 8x7segment_display.ino └── readme.md ├── DHT_Simulator ├── .arduino-ci.yml ├── .github │ ├── FUNDING.yml │ └── workflows │ │ ├── arduino-lint.yml │ │ ├── arduino_test_runner.yml │ │ └── jsoncheck.yml ├── DHT_Simulator.ino ├── LICENSE ├── README.md ├── examples │ └── DHT_Simulator │ │ ├── DHT_Simulator.ino │ │ └── readme.txt └── test │ └── unit_test_001.cpp_no_test ├── I2C_PWM_generator ├── .arduino-ci.yml ├── .github │ ├── FUNDING.yml │ └── workflows │ │ ├── arduino-lint.yml │ │ ├── arduino_test_runner.yml │ │ └── jsoncheck.yml ├── CHANGELOG.md ├── I2C_PWM_generator.ino ├── LICENSE ├── README.md ├── examples │ └── I2C_PWM_generator │ │ ├── .arduino-ci.yml │ │ └── I2C_PWM_generator.ino └── test │ └── unit_test_001.cpp_no_test ├── MultiSpeedI2CScanner ├── .arduino-ci.yml ├── .github │ ├── FUNDING.yml │ └── workflows │ │ ├── arduino-lint.yml │ │ ├── arduino_test_runner.yml │ │ └── jsoncheck.yml ├── CHANGELOG.md ├── LICENSE ├── MultiSpeedI2CScanner.ino ├── examples │ ├── I2C_bus_counter │ │ └── I2C_bus_counter.ino │ └── MultiSpeedI2CScanner │ │ ├── MultiSpeedI2CScanner.ino │ │ └── readme.txt ├── readme.md └── test │ └── unit_test_001.cpp_no_test ├── fastHaverSine └── fastHaverSine.ino ├── oneWireSearch └── oneWireSearch.ino └── uv-sensor ├── .arduino-ci.yml ├── .github ├── FUNDING.yml └── workflows │ ├── arduino-lint.yml │ ├── arduino_test_runner.yml │ └── jsoncheck.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── examples └── uv-sensor │ └── uv-sensor.ino ├── test └── unit_test_001.cpp_no_test ├── under_arduino_sketches.txt └── uv-sensor.ino /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/README.md -------------------------------------------------------------------------------- /libraries/74HC138/74HC138.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/74HC138/74HC138.h -------------------------------------------------------------------------------- /libraries/74HC138/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/74HC138/LICENSE -------------------------------------------------------------------------------- /libraries/74HC138/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/74HC138/README.md -------------------------------------------------------------------------------- /libraries/74HC154/74HC154.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/74HC154/74HC154.h -------------------------------------------------------------------------------- /libraries/74HC154/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/74HC154/LICENSE -------------------------------------------------------------------------------- /libraries/74HC154/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/74HC154/README.md -------------------------------------------------------------------------------- /libraries/74HC590/74HC590.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/74HC590/74HC590.h -------------------------------------------------------------------------------- /libraries/74HC590/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/74HC590/LICENSE -------------------------------------------------------------------------------- /libraries/74HC590/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/74HC590/README.md -------------------------------------------------------------------------------- /libraries/A1301/A1301.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/A1301/A1301.cpp -------------------------------------------------------------------------------- /libraries/A1301/A1301.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/A1301/A1301.h -------------------------------------------------------------------------------- /libraries/A1301/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/A1301/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/A1301/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/A1301/LICENSE -------------------------------------------------------------------------------- /libraries/A1301/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/A1301/README.md -------------------------------------------------------------------------------- /libraries/A1301/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/A1301/keywords.txt -------------------------------------------------------------------------------- /libraries/A1301/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/A1301/library.json -------------------------------------------------------------------------------- /libraries/ACD10/ACD10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ACD10/ACD10.cpp -------------------------------------------------------------------------------- /libraries/ACD10/ACD10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ACD10/ACD10.h -------------------------------------------------------------------------------- /libraries/ACD10/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ACD10/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/ACD10/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ACD10/LICENSE -------------------------------------------------------------------------------- /libraries/ACD10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ACD10/README.md -------------------------------------------------------------------------------- /libraries/ACD10/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ACD10/keywords.txt -------------------------------------------------------------------------------- /libraries/ACD10/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ACD10/library.json -------------------------------------------------------------------------------- /libraries/ACD3100/ACD3100.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ACD3100/ACD3100.cpp -------------------------------------------------------------------------------- /libraries/ACD3100/ACD3100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ACD3100/ACD3100.h -------------------------------------------------------------------------------- /libraries/ACD3100/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ACD3100/LICENSE -------------------------------------------------------------------------------- /libraries/ACD3100/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ACD3100/README.md -------------------------------------------------------------------------------- /libraries/ACS712/ACS712.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ACS712/ACS712.cpp -------------------------------------------------------------------------------- /libraries/ACS712/ACS712.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ACS712/ACS712.h -------------------------------------------------------------------------------- /libraries/ACS712/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ACS712/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/ACS712/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ACS712/LICENSE -------------------------------------------------------------------------------- /libraries/ACS712/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ACS712/keywords.txt -------------------------------------------------------------------------------- /libraries/ACS712/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ACS712/library.json -------------------------------------------------------------------------------- /libraries/ACS712/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ACS712/readme.md -------------------------------------------------------------------------------- /libraries/AD5144A/AD5144A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5144A/AD5144A.cpp -------------------------------------------------------------------------------- /libraries/AD5144A/AD5144A.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5144A/AD5144A.h -------------------------------------------------------------------------------- /libraries/AD5144A/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5144A/LICENSE -------------------------------------------------------------------------------- /libraries/AD5144A/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5144A/README.md -------------------------------------------------------------------------------- /libraries/AD520X/AD520X.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD520X/AD520X.cpp -------------------------------------------------------------------------------- /libraries/AD520X/AD520X.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD520X/AD520X.h -------------------------------------------------------------------------------- /libraries/AD520X/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD520X/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/AD520X/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD520X/LICENSE -------------------------------------------------------------------------------- /libraries/AD520X/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD520X/README.md -------------------------------------------------------------------------------- /libraries/AD520X/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD520X/keywords.txt -------------------------------------------------------------------------------- /libraries/AD520X/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD520X/library.json -------------------------------------------------------------------------------- /libraries/AD523X/AD523X.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD523X/AD523X.cpp -------------------------------------------------------------------------------- /libraries/AD523X/AD523X.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD523X/AD523X.h -------------------------------------------------------------------------------- /libraries/AD523X/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD523X/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/AD523X/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD523X/LICENSE -------------------------------------------------------------------------------- /libraries/AD523X/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD523X/README.md -------------------------------------------------------------------------------- /libraries/AD523X/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD523X/keywords.txt -------------------------------------------------------------------------------- /libraries/AD523X/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD523X/library.json -------------------------------------------------------------------------------- /libraries/AD5245/AD5245.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5245/AD5245.cpp -------------------------------------------------------------------------------- /libraries/AD5245/AD5245.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5245/AD5245.h -------------------------------------------------------------------------------- /libraries/AD5245/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5245/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/AD5245/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5245/LICENSE -------------------------------------------------------------------------------- /libraries/AD5245/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5245/README.md -------------------------------------------------------------------------------- /libraries/AD5245/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5245/keywords.txt -------------------------------------------------------------------------------- /libraries/AD5245/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5245/library.json -------------------------------------------------------------------------------- /libraries/AD5246/AD5246.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5246/AD5246.cpp -------------------------------------------------------------------------------- /libraries/AD5246/AD5246.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5246/AD5246.h -------------------------------------------------------------------------------- /libraries/AD5246/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5246/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/AD5246/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5246/LICENSE -------------------------------------------------------------------------------- /libraries/AD5246/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5246/README.md -------------------------------------------------------------------------------- /libraries/AD5246/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5246/keywords.txt -------------------------------------------------------------------------------- /libraries/AD5246/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5246/library.json -------------------------------------------------------------------------------- /libraries/AD5248/AD5248.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5248/AD5248.cpp -------------------------------------------------------------------------------- /libraries/AD5248/AD5248.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5248/AD5248.h -------------------------------------------------------------------------------- /libraries/AD5248/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5248/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/AD5248/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5248/LICENSE -------------------------------------------------------------------------------- /libraries/AD5248/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5248/README.md -------------------------------------------------------------------------------- /libraries/AD5248/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5248/keywords.txt -------------------------------------------------------------------------------- /libraries/AD5248/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5248/library.json -------------------------------------------------------------------------------- /libraries/AD524X/AD524X.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD524X/AD524X.cpp -------------------------------------------------------------------------------- /libraries/AD524X/AD524X.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD524X/AD524X.h -------------------------------------------------------------------------------- /libraries/AD524X/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD524X/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/AD524X/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD524X/LICENSE -------------------------------------------------------------------------------- /libraries/AD524X/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD524X/README.md -------------------------------------------------------------------------------- /libraries/AD524X/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD524X/keywords.txt -------------------------------------------------------------------------------- /libraries/AD524X/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD524X/library.json -------------------------------------------------------------------------------- /libraries/AD5263/AD5263.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5263/AD5263.cpp -------------------------------------------------------------------------------- /libraries/AD5263/AD5263.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5263/AD5263.h -------------------------------------------------------------------------------- /libraries/AD5263/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5263/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/AD5263/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5263/LICENSE -------------------------------------------------------------------------------- /libraries/AD5263/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5263/README.md -------------------------------------------------------------------------------- /libraries/AD5263/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5263/keywords.txt -------------------------------------------------------------------------------- /libraries/AD5263/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5263/library.json -------------------------------------------------------------------------------- /libraries/AD5370/AD5370.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5370/AD5370.cpp -------------------------------------------------------------------------------- /libraries/AD5370/AD5370.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5370/AD5370.h -------------------------------------------------------------------------------- /libraries/AD5370/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5370/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/AD5370/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5370/LICENSE -------------------------------------------------------------------------------- /libraries/AD5370/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5370/README.md -------------------------------------------------------------------------------- /libraries/AD5370/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5370/keywords.txt -------------------------------------------------------------------------------- /libraries/AD5370/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5370/library.json -------------------------------------------------------------------------------- /libraries/AD5593R/AD5593R.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5593R/AD5593R.cpp -------------------------------------------------------------------------------- /libraries/AD5593R/AD5593R.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5593R/AD5593R.h -------------------------------------------------------------------------------- /libraries/AD5593R/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5593R/LICENSE -------------------------------------------------------------------------------- /libraries/AD5593R/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5593R/README.md -------------------------------------------------------------------------------- /libraries/AD5620/AD5620.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5620/AD5620.cpp -------------------------------------------------------------------------------- /libraries/AD5620/AD5620.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5620/AD5620.h -------------------------------------------------------------------------------- /libraries/AD5620/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5620/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/AD5620/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5620/LICENSE -------------------------------------------------------------------------------- /libraries/AD5620/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5620/README.md -------------------------------------------------------------------------------- /libraries/AD5620/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5620/keywords.txt -------------------------------------------------------------------------------- /libraries/AD5620/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5620/library.json -------------------------------------------------------------------------------- /libraries/AD5660/AD5660.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5660/AD5660.cpp -------------------------------------------------------------------------------- /libraries/AD5660/AD5660.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5660/AD5660.h -------------------------------------------------------------------------------- /libraries/AD5660/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5660/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/AD5660/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5660/LICENSE -------------------------------------------------------------------------------- /libraries/AD5660/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5660/README.md -------------------------------------------------------------------------------- /libraries/AD5660/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5660/keywords.txt -------------------------------------------------------------------------------- /libraries/AD5660/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5660/library.json -------------------------------------------------------------------------------- /libraries/AD5680/AD5680.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5680/AD5680.cpp -------------------------------------------------------------------------------- /libraries/AD5680/AD5680.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5680/AD5680.h -------------------------------------------------------------------------------- /libraries/AD5680/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5680/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/AD5680/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5680/LICENSE -------------------------------------------------------------------------------- /libraries/AD5680/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5680/README.md -------------------------------------------------------------------------------- /libraries/AD5680/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5680/keywords.txt -------------------------------------------------------------------------------- /libraries/AD5680/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD5680/library.json -------------------------------------------------------------------------------- /libraries/AD568X/AD568X.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD568X/AD568X.cpp -------------------------------------------------------------------------------- /libraries/AD568X/AD568X.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD568X/AD568X.h -------------------------------------------------------------------------------- /libraries/AD568X/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD568X/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/AD568X/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD568X/LICENSE -------------------------------------------------------------------------------- /libraries/AD568X/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD568X/README.md -------------------------------------------------------------------------------- /libraries/AD568X/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD568X/keywords.txt -------------------------------------------------------------------------------- /libraries/AD568X/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD568X/library.json -------------------------------------------------------------------------------- /libraries/AD56X8/AD56X8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD56X8/AD56X8.cpp -------------------------------------------------------------------------------- /libraries/AD56X8/AD56X8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD56X8/AD56X8.h -------------------------------------------------------------------------------- /libraries/AD56X8/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD56X8/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/AD56X8/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD56X8/LICENSE -------------------------------------------------------------------------------- /libraries/AD56X8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD56X8/README.md -------------------------------------------------------------------------------- /libraries/AD56X8/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD56X8/keywords.txt -------------------------------------------------------------------------------- /libraries/AD56X8/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD56X8/library.json -------------------------------------------------------------------------------- /libraries/AD7367/AD7367.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD7367/AD7367.cpp -------------------------------------------------------------------------------- /libraries/AD7367/AD7367.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD7367/AD7367.h -------------------------------------------------------------------------------- /libraries/AD7367/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD7367/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/AD7367/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD7367/LICENSE -------------------------------------------------------------------------------- /libraries/AD7367/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD7367/README.md -------------------------------------------------------------------------------- /libraries/AD7367/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD7367/keywords.txt -------------------------------------------------------------------------------- /libraries/AD7367/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD7367/library.json -------------------------------------------------------------------------------- /libraries/AD7367_SPI/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD7367_SPI/LICENSE -------------------------------------------------------------------------------- /libraries/AD7390/AD7390.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD7390/AD7390.cpp -------------------------------------------------------------------------------- /libraries/AD7390/AD7390.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD7390/AD7390.h -------------------------------------------------------------------------------- /libraries/AD7390/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD7390/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/AD7390/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD7390/LICENSE -------------------------------------------------------------------------------- /libraries/AD7390/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD7390/README.md -------------------------------------------------------------------------------- /libraries/AD7390/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD7390/keywords.txt -------------------------------------------------------------------------------- /libraries/AD7390/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD7390/library.json -------------------------------------------------------------------------------- /libraries/AD8495/AD8495.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD8495/AD8495.h -------------------------------------------------------------------------------- /libraries/AD8495/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD8495/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/AD8495/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD8495/LICENSE -------------------------------------------------------------------------------- /libraries/AD8495/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD8495/README.md -------------------------------------------------------------------------------- /libraries/AD8495/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD8495/keywords.txt -------------------------------------------------------------------------------- /libraries/AD8495/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD8495/library.json -------------------------------------------------------------------------------- /libraries/AD9833/AD9833.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD9833/AD9833.cpp -------------------------------------------------------------------------------- /libraries/AD9833/AD9833.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD9833/AD9833.h -------------------------------------------------------------------------------- /libraries/AD9833/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD9833/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/AD9833/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD9833/LICENSE -------------------------------------------------------------------------------- /libraries/AD9833/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD9833/README.md -------------------------------------------------------------------------------- /libraries/AD9833/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD9833/keywords.txt -------------------------------------------------------------------------------- /libraries/AD9833/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD9833/library.json -------------------------------------------------------------------------------- /libraries/AD985X/AD985X.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD985X/AD985X.cpp -------------------------------------------------------------------------------- /libraries/AD985X/AD985X.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD985X/AD985X.h -------------------------------------------------------------------------------- /libraries/AD985X/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD985X/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/AD985X/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD985X/LICENSE -------------------------------------------------------------------------------- /libraries/AD985X/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD985X/README.md -------------------------------------------------------------------------------- /libraries/AD985X/examples/AD9851_six_potmeter/does_not_run_on_all.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/AD985X/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD985X/keywords.txt -------------------------------------------------------------------------------- /libraries/AD985X/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AD985X/library.json -------------------------------------------------------------------------------- /libraries/ADC081S/ADC081S.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADC081S/ADC081S.cpp -------------------------------------------------------------------------------- /libraries/ADC081S/ADC081S.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADC081S/ADC081S.h -------------------------------------------------------------------------------- /libraries/ADC081S/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADC081S/LICENSE -------------------------------------------------------------------------------- /libraries/ADC081S/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADC081S/README.md -------------------------------------------------------------------------------- /libraries/ADC08XS/ADC08XS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADC08XS/ADC08XS.cpp -------------------------------------------------------------------------------- /libraries/ADC08XS/ADC08XS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADC08XS/ADC08XS.h -------------------------------------------------------------------------------- /libraries/ADC08XS/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADC08XS/LICENSE -------------------------------------------------------------------------------- /libraries/ADC08XS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADC08XS/README.md -------------------------------------------------------------------------------- /libraries/ADG2128_RT/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG2128_RT/LICENSE -------------------------------------------------------------------------------- /libraries/ADG2188/ADG2188.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG2188/ADG2188.cpp -------------------------------------------------------------------------------- /libraries/ADG2188/ADG2188.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG2188/ADG2188.h -------------------------------------------------------------------------------- /libraries/ADG2188/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG2188/LICENSE -------------------------------------------------------------------------------- /libraries/ADG2188/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG2188/README.md -------------------------------------------------------------------------------- /libraries/ADG725/ADG725.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG725/ADG725.h -------------------------------------------------------------------------------- /libraries/ADG725/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG725/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/ADG725/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG725/LICENSE -------------------------------------------------------------------------------- /libraries/ADG725/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG725/README.md -------------------------------------------------------------------------------- /libraries/ADG725/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG725/keywords.txt -------------------------------------------------------------------------------- /libraries/ADG725/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG725/library.json -------------------------------------------------------------------------------- /libraries/ADG726/ADG726.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG726/ADG726.h -------------------------------------------------------------------------------- /libraries/ADG726/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG726/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/ADG726/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG726/LICENSE -------------------------------------------------------------------------------- /libraries/ADG726/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG726/README.md -------------------------------------------------------------------------------- /libraries/ADG726/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG726/keywords.txt -------------------------------------------------------------------------------- /libraries/ADG726/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG726/library.json -------------------------------------------------------------------------------- /libraries/ADG728/ADG728.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG728/ADG728.cpp -------------------------------------------------------------------------------- /libraries/ADG728/ADG728.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG728/ADG728.h -------------------------------------------------------------------------------- /libraries/ADG728/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG728/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/ADG728/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG728/LICENSE -------------------------------------------------------------------------------- /libraries/ADG728/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG728/README.md -------------------------------------------------------------------------------- /libraries/ADG728/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG728/keywords.txt -------------------------------------------------------------------------------- /libraries/ADG728/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG728/library.json -------------------------------------------------------------------------------- /libraries/ADG729/ADG729.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG729/ADG729.cpp -------------------------------------------------------------------------------- /libraries/ADG729/ADG729.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG729/ADG729.h -------------------------------------------------------------------------------- /libraries/ADG729/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG729/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/ADG729/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG729/LICENSE -------------------------------------------------------------------------------- /libraries/ADG729/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG729/README.md -------------------------------------------------------------------------------- /libraries/ADG729/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG729/keywords.txt -------------------------------------------------------------------------------- /libraries/ADG729/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG729/library.json -------------------------------------------------------------------------------- /libraries/ADG731/ADG731.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG731/ADG731.h -------------------------------------------------------------------------------- /libraries/ADG731/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG731/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/ADG731/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG731/LICENSE -------------------------------------------------------------------------------- /libraries/ADG731/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG731/README.md -------------------------------------------------------------------------------- /libraries/ADG731/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG731/keywords.txt -------------------------------------------------------------------------------- /libraries/ADG731/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG731/library.json -------------------------------------------------------------------------------- /libraries/ADG732/ADG732.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG732/ADG732.h -------------------------------------------------------------------------------- /libraries/ADG732/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG732/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/ADG732/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG732/LICENSE -------------------------------------------------------------------------------- /libraries/ADG732/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG732/README.md -------------------------------------------------------------------------------- /libraries/ADG732/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG732/keywords.txt -------------------------------------------------------------------------------- /libraries/ADG732/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADG732/library.json -------------------------------------------------------------------------------- /libraries/ADS1x15/ADS1X15.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADS1x15/ADS1X15.cpp -------------------------------------------------------------------------------- /libraries/ADS1x15/ADS1X15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADS1x15/ADS1X15.h -------------------------------------------------------------------------------- /libraries/ADS1x15/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADS1x15/LICENSE -------------------------------------------------------------------------------- /libraries/ADS1x15/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADS1x15/README.md -------------------------------------------------------------------------------- /libraries/ADT7470/ADT7470.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADT7470/ADT7470.cpp -------------------------------------------------------------------------------- /libraries/ADT7470/ADT7470.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADT7470/ADT7470.h -------------------------------------------------------------------------------- /libraries/ADT7470/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADT7470/LICENSE -------------------------------------------------------------------------------- /libraries/ADT7470/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ADT7470/README.md -------------------------------------------------------------------------------- /libraries/AGS02MA/AGS02MA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AGS02MA/AGS02MA.cpp -------------------------------------------------------------------------------- /libraries/AGS02MA/AGS02MA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AGS02MA/AGS02MA.h -------------------------------------------------------------------------------- /libraries/AGS02MA/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AGS02MA/LICENSE -------------------------------------------------------------------------------- /libraries/AGS02MA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AGS02MA/README.md -------------------------------------------------------------------------------- /libraries/AGS2616/AGS2616.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AGS2616/AGS2616.cpp -------------------------------------------------------------------------------- /libraries/AGS2616/AGS2616.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AGS2616/AGS2616.h -------------------------------------------------------------------------------- /libraries/AGS2616/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AGS2616/LICENSE -------------------------------------------------------------------------------- /libraries/AGS2616/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AGS2616/README.md -------------------------------------------------------------------------------- /libraries/AGS3870/AGS3870.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AGS3870/AGS3870.cpp -------------------------------------------------------------------------------- /libraries/AGS3870/AGS3870.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AGS3870/AGS3870.h -------------------------------------------------------------------------------- /libraries/AGS3870/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AGS3870/LICENSE -------------------------------------------------------------------------------- /libraries/AGS3870/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AGS3870/README.md -------------------------------------------------------------------------------- /libraries/AGS3871/AGS3871.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AGS3871/AGS3871.cpp -------------------------------------------------------------------------------- /libraries/AGS3871/AGS3871.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AGS3871/AGS3871.h -------------------------------------------------------------------------------- /libraries/AGS3871/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AGS3871/LICENSE -------------------------------------------------------------------------------- /libraries/AGS3871/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AGS3871/README.md -------------------------------------------------------------------------------- /libraries/AM2315/AM2315.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AM2315/AM2315.cpp -------------------------------------------------------------------------------- /libraries/AM2315/AM2315.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AM2315/AM2315.h -------------------------------------------------------------------------------- /libraries/AM2315/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AM2315/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/AM2315/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AM2315/LICENSE -------------------------------------------------------------------------------- /libraries/AM2315/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AM2315/README.md -------------------------------------------------------------------------------- /libraries/AM2315/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AM2315/keywords.txt -------------------------------------------------------------------------------- /libraries/AM2315/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AM2315/library.json -------------------------------------------------------------------------------- /libraries/AM2315C/AM2315C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AM2315C/AM2315C.cpp -------------------------------------------------------------------------------- /libraries/AM2315C/AM2315C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AM2315C/AM2315C.h -------------------------------------------------------------------------------- /libraries/AM2315C/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AM2315C/LICENSE -------------------------------------------------------------------------------- /libraries/AM2315C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AM2315C/README.md -------------------------------------------------------------------------------- /libraries/AM232X/AM232X.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AM232X/AM232X.cpp -------------------------------------------------------------------------------- /libraries/AM232X/AM232X.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AM232X/AM232X.h -------------------------------------------------------------------------------- /libraries/AM232X/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AM232X/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/AM232X/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AM232X/LICENSE -------------------------------------------------------------------------------- /libraries/AM232X/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AM232X/README.md -------------------------------------------------------------------------------- /libraries/AM232X/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AM232X/keywords.txt -------------------------------------------------------------------------------- /libraries/AM232X/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AM232X/library.json -------------------------------------------------------------------------------- /libraries/AMT25/AMT25.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AMT25/AMT25.cpp -------------------------------------------------------------------------------- /libraries/AMT25/AMT25.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AMT25/AMT25.h -------------------------------------------------------------------------------- /libraries/AMT25/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AMT25/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/AMT25/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AMT25/LICENSE -------------------------------------------------------------------------------- /libraries/AMT25/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AMT25/README.md -------------------------------------------------------------------------------- /libraries/AMT25/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AMT25/keywords.txt -------------------------------------------------------------------------------- /libraries/AMT25/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AMT25/library.json -------------------------------------------------------------------------------- /libraries/ANSI/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ANSI/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/ANSI/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ANSI/LICENSE -------------------------------------------------------------------------------- /libraries/ANSI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ANSI/README.md -------------------------------------------------------------------------------- /libraries/ANSI/ansi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ANSI/ansi.cpp -------------------------------------------------------------------------------- /libraries/ANSI/ansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ANSI/ansi.h -------------------------------------------------------------------------------- /libraries/ANSI/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ANSI/keywords.txt -------------------------------------------------------------------------------- /libraries/ANSI/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ANSI/library.json -------------------------------------------------------------------------------- /libraries/APDS9900/APDS9900.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/APDS9900/APDS9900.h -------------------------------------------------------------------------------- /libraries/APDS9900/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/APDS9900/LICENSE -------------------------------------------------------------------------------- /libraries/APDS9900/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/APDS9900/README.md -------------------------------------------------------------------------------- /libraries/AS5600/AS5600.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AS5600/AS5600.cpp -------------------------------------------------------------------------------- /libraries/AS5600/AS5600.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AS5600/AS5600.h -------------------------------------------------------------------------------- /libraries/AS5600/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AS5600/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/AS5600/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AS5600/LICENSE -------------------------------------------------------------------------------- /libraries/AS5600/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AS5600/README.md -------------------------------------------------------------------------------- /libraries/AS5600/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AS5600/keywords.txt -------------------------------------------------------------------------------- /libraries/AS5600/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AS5600/library.json -------------------------------------------------------------------------------- /libraries/AS7331/AS7331.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AS7331/AS7331.cpp -------------------------------------------------------------------------------- /libraries/AS7331/AS7331.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AS7331/AS7331.h -------------------------------------------------------------------------------- /libraries/AS7331/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AS7331/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/AS7331/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AS7331/LICENSE -------------------------------------------------------------------------------- /libraries/AS7331/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AS7331/README.md -------------------------------------------------------------------------------- /libraries/AS7331/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AS7331/keywords.txt -------------------------------------------------------------------------------- /libraries/AS7331/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AS7331/library.json -------------------------------------------------------------------------------- /libraries/Adler/Adler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Adler/Adler.cpp -------------------------------------------------------------------------------- /libraries/Adler/Adler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Adler/Adler.h -------------------------------------------------------------------------------- /libraries/Adler/Adler16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Adler/Adler16.cpp -------------------------------------------------------------------------------- /libraries/Adler/Adler16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Adler/Adler16.h -------------------------------------------------------------------------------- /libraries/Adler/Adler32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Adler/Adler32.cpp -------------------------------------------------------------------------------- /libraries/Adler/Adler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Adler/Adler32.h -------------------------------------------------------------------------------- /libraries/Adler/Adler64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Adler/Adler64.cpp -------------------------------------------------------------------------------- /libraries/Adler/Adler64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Adler/Adler64.h -------------------------------------------------------------------------------- /libraries/Adler/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Adler/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/Adler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Adler/LICENSE -------------------------------------------------------------------------------- /libraries/Adler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Adler/README.md -------------------------------------------------------------------------------- /libraries/Adler/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Adler/keywords.txt -------------------------------------------------------------------------------- /libraries/Adler/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Adler/library.json -------------------------------------------------------------------------------- /libraries/AnalogPin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AnalogPin/LICENSE -------------------------------------------------------------------------------- /libraries/AnalogPin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AnalogPin/README.md -------------------------------------------------------------------------------- /libraries/Angle/Angle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Angle/Angle.cpp -------------------------------------------------------------------------------- /libraries/Angle/Angle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Angle/Angle.h -------------------------------------------------------------------------------- /libraries/Angle/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Angle/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/Angle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Angle/LICENSE -------------------------------------------------------------------------------- /libraries/Angle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Angle/README.md -------------------------------------------------------------------------------- /libraries/Angle/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Angle/keywords.txt -------------------------------------------------------------------------------- /libraries/Angle/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Angle/library.json -------------------------------------------------------------------------------- /libraries/AsyncAnalog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AsyncAnalog/LICENSE -------------------------------------------------------------------------------- /libraries/AvrHeap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AvrHeap/LICENSE -------------------------------------------------------------------------------- /libraries/AvrHeap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AvrHeap/README.md -------------------------------------------------------------------------------- /libraries/AvrHeap/avrheap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AvrHeap/avrheap.cpp -------------------------------------------------------------------------------- /libraries/AvrHeap/avrheap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/AvrHeap/avrheap.h -------------------------------------------------------------------------------- /libraries/BitArray/BitArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/BitArray/BitArray.h -------------------------------------------------------------------------------- /libraries/BitArray/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/BitArray/LICENSE -------------------------------------------------------------------------------- /libraries/BitArray/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/BitArray/README.md -------------------------------------------------------------------------------- /libraries/BoolArray/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/BoolArray/LICENSE -------------------------------------------------------------------------------- /libraries/BoolArray/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/BoolArray/README.md -------------------------------------------------------------------------------- /libraries/CHT8305/CHT8305.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CHT8305/CHT8305.cpp -------------------------------------------------------------------------------- /libraries/CHT8305/CHT8305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CHT8305/CHT8305.h -------------------------------------------------------------------------------- /libraries/CHT8305/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CHT8305/LICENSE -------------------------------------------------------------------------------- /libraries/CHT8305/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CHT8305/README.md -------------------------------------------------------------------------------- /libraries/CHT8310/CHT8310.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CHT8310/CHT8310.cpp -------------------------------------------------------------------------------- /libraries/CHT8310/CHT8310.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CHT8310/CHT8310.h -------------------------------------------------------------------------------- /libraries/CHT8310/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CHT8310/LICENSE -------------------------------------------------------------------------------- /libraries/CHT8310/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CHT8310/README.md -------------------------------------------------------------------------------- /libraries/CHT832X/CHT832X.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CHT832X/CHT832X.cpp -------------------------------------------------------------------------------- /libraries/CHT832X/CHT832X.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CHT832X/CHT832X.h -------------------------------------------------------------------------------- /libraries/CHT832X/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CHT832X/LICENSE -------------------------------------------------------------------------------- /libraries/CHT832X/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CHT832X/README.md -------------------------------------------------------------------------------- /libraries/CRC/.arduino-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CRC/.arduino-ci.yml -------------------------------------------------------------------------------- /libraries/CRC/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CRC/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/CRC/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CRC/LICENSE -------------------------------------------------------------------------------- /libraries/CRC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CRC/README.md -------------------------------------------------------------------------------- /libraries/CRC/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CRC/keywords.txt -------------------------------------------------------------------------------- /libraries/CRC/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CRC/library.json -------------------------------------------------------------------------------- /libraries/CRC/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CRC/platformio.ini -------------------------------------------------------------------------------- /libraries/CRC/src/CRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CRC/src/CRC.cpp -------------------------------------------------------------------------------- /libraries/CRC/src/CRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CRC/src/CRC.h -------------------------------------------------------------------------------- /libraries/CRC/src/CRC12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CRC/src/CRC12.cpp -------------------------------------------------------------------------------- /libraries/CRC/src/CRC12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CRC/src/CRC12.h -------------------------------------------------------------------------------- /libraries/CRC/src/CRC16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CRC/src/CRC16.cpp -------------------------------------------------------------------------------- /libraries/CRC/src/CRC16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CRC/src/CRC16.h -------------------------------------------------------------------------------- /libraries/CRC/src/CRC32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CRC/src/CRC32.cpp -------------------------------------------------------------------------------- /libraries/CRC/src/CRC32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CRC/src/CRC32.h -------------------------------------------------------------------------------- /libraries/CRC/src/CRC64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CRC/src/CRC64.cpp -------------------------------------------------------------------------------- /libraries/CRC/src/CRC64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CRC/src/CRC64.h -------------------------------------------------------------------------------- /libraries/CRC/src/CRC8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CRC/src/CRC8.cpp -------------------------------------------------------------------------------- /libraries/CRC/src/CRC8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CRC/src/CRC8.h -------------------------------------------------------------------------------- /libraries/CRC/src/FastCRC32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CRC/src/FastCRC32.h -------------------------------------------------------------------------------- /libraries/Complex/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Complex/LICENSE -------------------------------------------------------------------------------- /libraries/Complex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Complex/README.md -------------------------------------------------------------------------------- /libraries/Complex/complex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Complex/complex.cpp -------------------------------------------------------------------------------- /libraries/Complex/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Complex/complex.h -------------------------------------------------------------------------------- /libraries/Correlation/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Correlation/LICENSE -------------------------------------------------------------------------------- /libraries/CountDown/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CountDown/LICENSE -------------------------------------------------------------------------------- /libraries/CountDown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/CountDown/README.md -------------------------------------------------------------------------------- /libraries/Cozir/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Cozir/LICENSE -------------------------------------------------------------------------------- /libraries/Cozir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Cozir/README.md -------------------------------------------------------------------------------- /libraries/Cozir/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Cozir/changelog.md -------------------------------------------------------------------------------- /libraries/Cozir/cozir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Cozir/cozir.cpp -------------------------------------------------------------------------------- /libraries/Cozir/cozir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Cozir/cozir.h -------------------------------------------------------------------------------- /libraries/Cozir/examples/Cozir_parse_star/todo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Cozir/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Cozir/keywords.txt -------------------------------------------------------------------------------- /libraries/Cozir/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Cozir/library.json -------------------------------------------------------------------------------- /libraries/Currency/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Currency/LICENSE -------------------------------------------------------------------------------- /libraries/Currency/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Currency/README.md -------------------------------------------------------------------------------- /libraries/Currency/currency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Currency/currency.h -------------------------------------------------------------------------------- /libraries/DAC53001/DAC53001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAC53001/DAC53001.h -------------------------------------------------------------------------------- /libraries/DAC53001/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAC53001/LICENSE -------------------------------------------------------------------------------- /libraries/DAC53001/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAC53001/README.md -------------------------------------------------------------------------------- /libraries/DAC8550/DAC8550.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAC8550/DAC8550.cpp -------------------------------------------------------------------------------- /libraries/DAC8550/DAC8550.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAC8550/DAC8550.h -------------------------------------------------------------------------------- /libraries/DAC8550/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAC8550/LICENSE -------------------------------------------------------------------------------- /libraries/DAC8550/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAC8550/README.md -------------------------------------------------------------------------------- /libraries/DAC8551/DAC8551.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAC8551/DAC8551.cpp -------------------------------------------------------------------------------- /libraries/DAC8551/DAC8551.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAC8551/DAC8551.h -------------------------------------------------------------------------------- /libraries/DAC8551/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAC8551/LICENSE -------------------------------------------------------------------------------- /libraries/DAC8551/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAC8551/README.md -------------------------------------------------------------------------------- /libraries/DAC8552/DAC8552.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAC8552/DAC8552.cpp -------------------------------------------------------------------------------- /libraries/DAC8552/DAC8552.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAC8552/DAC8552.h -------------------------------------------------------------------------------- /libraries/DAC8552/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAC8552/LICENSE -------------------------------------------------------------------------------- /libraries/DAC8552/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAC8552/README.md -------------------------------------------------------------------------------- /libraries/DAC8554/DAC8554.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAC8554/DAC8554.cpp -------------------------------------------------------------------------------- /libraries/DAC8554/DAC8554.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAC8554/DAC8554.h -------------------------------------------------------------------------------- /libraries/DAC8554/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAC8554/LICENSE -------------------------------------------------------------------------------- /libraries/DAC8554/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAC8554/README.md -------------------------------------------------------------------------------- /libraries/DAC8560/DAC8560.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAC8560/DAC8560.cpp -------------------------------------------------------------------------------- /libraries/DAC8560/DAC8560.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAC8560/DAC8560.h -------------------------------------------------------------------------------- /libraries/DAC8560/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAC8560/LICENSE -------------------------------------------------------------------------------- /libraries/DAC8560/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAC8560/README.md -------------------------------------------------------------------------------- /libraries/DAC8571/DAC8571.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAC8571/DAC8571.cpp -------------------------------------------------------------------------------- /libraries/DAC8571/DAC8571.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAC8571/DAC8571.h -------------------------------------------------------------------------------- /libraries/DAC8571/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAC8571/LICENSE -------------------------------------------------------------------------------- /libraries/DAC8571/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAC8571/README.md -------------------------------------------------------------------------------- /libraries/DAC8574/DAC8574.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAC8574/DAC8574.cpp -------------------------------------------------------------------------------- /libraries/DAC8574/DAC8574.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAC8574/DAC8574.h -------------------------------------------------------------------------------- /libraries/DAC8574/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAC8574/LICENSE -------------------------------------------------------------------------------- /libraries/DAC8574/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAC8574/README.md -------------------------------------------------------------------------------- /libraries/DAMM/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAMM/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/DAMM/DAMM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAMM/DAMM.h -------------------------------------------------------------------------------- /libraries/DAMM/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAMM/LICENSE -------------------------------------------------------------------------------- /libraries/DAMM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAMM/README.md -------------------------------------------------------------------------------- /libraries/DAMM/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAMM/keywords.txt -------------------------------------------------------------------------------- /libraries/DAMM/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DAMM/library.json -------------------------------------------------------------------------------- /libraries/DCT532/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DCT532/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/DCT532/DCT532.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DCT532/DCT532.cpp -------------------------------------------------------------------------------- /libraries/DCT532/DCT532.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DCT532/DCT532.h -------------------------------------------------------------------------------- /libraries/DCT532/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DCT532/LICENSE -------------------------------------------------------------------------------- /libraries/DCT532/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DCT532/README.md -------------------------------------------------------------------------------- /libraries/DCT532/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DCT532/keywords.txt -------------------------------------------------------------------------------- /libraries/DCT532/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DCT532/library.json -------------------------------------------------------------------------------- /libraries/DEVFULL/DEVFULL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DEVFULL/DEVFULL.h -------------------------------------------------------------------------------- /libraries/DEVFULL/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DEVFULL/LICENSE -------------------------------------------------------------------------------- /libraries/DEVFULL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DEVFULL/README.md -------------------------------------------------------------------------------- /libraries/DEVNULL/DEVNULL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DEVNULL/DEVNULL.cpp -------------------------------------------------------------------------------- /libraries/DEVNULL/DEVNULL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DEVNULL/DEVNULL.h -------------------------------------------------------------------------------- /libraries/DEVNULL/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DEVNULL/LICENSE -------------------------------------------------------------------------------- /libraries/DEVNULL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DEVNULL/README.md -------------------------------------------------------------------------------- /libraries/DEVRANDOM/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DEVRANDOM/LICENSE -------------------------------------------------------------------------------- /libraries/DEVRANDOM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DEVRANDOM/README.md -------------------------------------------------------------------------------- /libraries/DHT12/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHT12/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/DHT12/DHT12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHT12/DHT12.cpp -------------------------------------------------------------------------------- /libraries/DHT12/DHT12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHT12/DHT12.h -------------------------------------------------------------------------------- /libraries/DHT12/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHT12/LICENSE -------------------------------------------------------------------------------- /libraries/DHT12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHT12/README.md -------------------------------------------------------------------------------- /libraries/DHT12/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHT12/keywords.txt -------------------------------------------------------------------------------- /libraries/DHT12/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHT12/library.json -------------------------------------------------------------------------------- /libraries/DHT20/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHT20/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/DHT20/DHT20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHT20/DHT20.cpp -------------------------------------------------------------------------------- /libraries/DHT20/DHT20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHT20/DHT20.h -------------------------------------------------------------------------------- /libraries/DHT20/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHT20/LICENSE -------------------------------------------------------------------------------- /libraries/DHT20/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHT20/README.md -------------------------------------------------------------------------------- /libraries/DHT20/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHT20/keywords.txt -------------------------------------------------------------------------------- /libraries/DHT20/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHT20/library.json -------------------------------------------------------------------------------- /libraries/DHT2pin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHT2pin/LICENSE -------------------------------------------------------------------------------- /libraries/DHT2pin/dht2pin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHT2pin/dht2pin.cpp -------------------------------------------------------------------------------- /libraries/DHT2pin/dht2pin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHT2pin/dht2pin.h -------------------------------------------------------------------------------- /libraries/DHT2pin/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHT2pin/readme.md -------------------------------------------------------------------------------- /libraries/DHTINT/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHTINT/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/DHTINT/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHTINT/LICENSE -------------------------------------------------------------------------------- /libraries/DHTINT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHTINT/README.md -------------------------------------------------------------------------------- /libraries/DHTINT/dhtint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHTINT/dhtint.cpp -------------------------------------------------------------------------------- /libraries/DHTINT/dhtint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHTINT/dhtint.h -------------------------------------------------------------------------------- /libraries/DHTINT/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHTINT/keywords.txt -------------------------------------------------------------------------------- /libraries/DHTINT/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHTINT/library.json -------------------------------------------------------------------------------- /libraries/DHTNEW/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHTNEW/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/DHTNEW/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHTNEW/LICENSE -------------------------------------------------------------------------------- /libraries/DHTNEW/dhtnew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHTNEW/dhtnew.cpp -------------------------------------------------------------------------------- /libraries/DHTNEW/dhtnew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHTNEW/dhtnew.h -------------------------------------------------------------------------------- /libraries/DHTNEW/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHTNEW/keywords.txt -------------------------------------------------------------------------------- /libraries/DHTNEW/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHTNEW/library.json -------------------------------------------------------------------------------- /libraries/DHTNEW/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHTNEW/readme.md -------------------------------------------------------------------------------- /libraries/DHTlib/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHTlib/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/DHTlib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHTlib/LICENSE -------------------------------------------------------------------------------- /libraries/DHTlib/dht.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHTlib/dht.cpp -------------------------------------------------------------------------------- /libraries/DHTlib/dht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHTlib/dht.h -------------------------------------------------------------------------------- /libraries/DHTlib/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHTlib/keywords.txt -------------------------------------------------------------------------------- /libraries/DHTlib/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHTlib/library.json -------------------------------------------------------------------------------- /libraries/DHTlib/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHTlib/readme.md -------------------------------------------------------------------------------- /libraries/DHTstable/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHTstable/LICENSE -------------------------------------------------------------------------------- /libraries/DHTstable/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DHTstable/readme.md -------------------------------------------------------------------------------- /libraries/DMM/.arduino-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DMM/.arduino-ci.yml -------------------------------------------------------------------------------- /libraries/DMM/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DMM/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/DMM/DMM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DMM/DMM.cpp -------------------------------------------------------------------------------- /libraries/DMM/DMM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DMM/DMM.h -------------------------------------------------------------------------------- /libraries/DMM/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DMM/LICENSE -------------------------------------------------------------------------------- /libraries/DMM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DMM/README.md -------------------------------------------------------------------------------- /libraries/DMM/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DMM/keywords.txt -------------------------------------------------------------------------------- /libraries/DMM/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DMM/library.json -------------------------------------------------------------------------------- /libraries/DRV8825/DRV8825.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DRV8825/DRV8825.cpp -------------------------------------------------------------------------------- /libraries/DRV8825/DRV8825.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DRV8825/DRV8825.h -------------------------------------------------------------------------------- /libraries/DRV8825/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DRV8825/LICENSE -------------------------------------------------------------------------------- /libraries/DRV8825/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DRV8825/README.md -------------------------------------------------------------------------------- /libraries/DS1804/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS1804/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/DS1804/DS1804.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS1804/DS1804.h -------------------------------------------------------------------------------- /libraries/DS1804/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS1804/LICENSE -------------------------------------------------------------------------------- /libraries/DS1804/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS1804/README.md -------------------------------------------------------------------------------- /libraries/DS1804/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS1804/keywords.txt -------------------------------------------------------------------------------- /libraries/DS1804/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS1804/library.json -------------------------------------------------------------------------------- /libraries/DS1821/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS1821/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/DS1821/DS1821.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS1821/DS1821.cpp -------------------------------------------------------------------------------- /libraries/DS1821/DS1821.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS1821/DS1821.h -------------------------------------------------------------------------------- /libraries/DS1821/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS1821/LICENSE -------------------------------------------------------------------------------- /libraries/DS1821/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS1821/README.md -------------------------------------------------------------------------------- /libraries/DS1821/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS1821/keywords.txt -------------------------------------------------------------------------------- /libraries/DS1821/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS1821/library.json -------------------------------------------------------------------------------- /libraries/DS18B20_INT/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS18B20_INT/LICENSE -------------------------------------------------------------------------------- /libraries/DS18B20_RT/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS18B20_RT/LICENSE -------------------------------------------------------------------------------- /libraries/DS2401/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS2401/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/DS2401/DS2401.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS2401/DS2401.h -------------------------------------------------------------------------------- /libraries/DS2401/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS2401/LICENSE -------------------------------------------------------------------------------- /libraries/DS2401/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS2401/README.md -------------------------------------------------------------------------------- /libraries/DS2401/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS2401/keywords.txt -------------------------------------------------------------------------------- /libraries/DS2401/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS2401/library.json -------------------------------------------------------------------------------- /libraries/DS2438/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS2438/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/DS2438/DS2438.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS2438/DS2438.cpp -------------------------------------------------------------------------------- /libraries/DS2438/DS2438.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS2438/DS2438.h -------------------------------------------------------------------------------- /libraries/DS2438/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS2438/LICENSE -------------------------------------------------------------------------------- /libraries/DS2438/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS2438/README.md -------------------------------------------------------------------------------- /libraries/DS2438/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS2438/keywords.txt -------------------------------------------------------------------------------- /libraries/DS2438/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS2438/library.json -------------------------------------------------------------------------------- /libraries/DS28CM00/DS28CM00.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS28CM00/DS28CM00.h -------------------------------------------------------------------------------- /libraries/DS28CM00/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS28CM00/LICENSE -------------------------------------------------------------------------------- /libraries/DS28CM00/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS28CM00/README.md -------------------------------------------------------------------------------- /libraries/DS3232/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS3232/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/DS3232/DS3232.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS3232/DS3232.cpp -------------------------------------------------------------------------------- /libraries/DS3232/DS3232.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS3232/DS3232.h -------------------------------------------------------------------------------- /libraries/DS3232/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS3232/LICENSE -------------------------------------------------------------------------------- /libraries/DS3232/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS3232/README.md -------------------------------------------------------------------------------- /libraries/DS3232/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS3232/keywords.txt -------------------------------------------------------------------------------- /libraries/DS3232/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/DS3232/library.json -------------------------------------------------------------------------------- /libraries/ERCFS/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ERCFS/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/ERCFS/ERCFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ERCFS/ERCFS.cpp -------------------------------------------------------------------------------- /libraries/ERCFS/ERCFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ERCFS/ERCFS.h -------------------------------------------------------------------------------- /libraries/ERCFS/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ERCFS/LICENSE -------------------------------------------------------------------------------- /libraries/ERCFS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ERCFS/README.md -------------------------------------------------------------------------------- /libraries/ERCFS/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ERCFS/keywords.txt -------------------------------------------------------------------------------- /libraries/ERCFS/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ERCFS/library.json -------------------------------------------------------------------------------- /libraries/FLE/.arduino-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/FLE/.arduino-ci.yml -------------------------------------------------------------------------------- /libraries/FLE/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/FLE/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/FLE/FLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/FLE/FLE.cpp -------------------------------------------------------------------------------- /libraries/FLE/FLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/FLE/FLE.h -------------------------------------------------------------------------------- /libraries/FLE/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/FLE/LICENSE -------------------------------------------------------------------------------- /libraries/FLE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/FLE/README.md -------------------------------------------------------------------------------- /libraries/FLE/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/FLE/keywords.txt -------------------------------------------------------------------------------- /libraries/FLE/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/FLE/library.json -------------------------------------------------------------------------------- /libraries/FRAM_I2C/FRAM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/FRAM_I2C/FRAM.cpp -------------------------------------------------------------------------------- /libraries/FRAM_I2C/FRAM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/FRAM_I2C/FRAM.h -------------------------------------------------------------------------------- /libraries/FRAM_I2C/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/FRAM_I2C/LICENSE -------------------------------------------------------------------------------- /libraries/FRAM_I2C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/FRAM_I2C/README.md -------------------------------------------------------------------------------- /libraries/FastMap/FastMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/FastMap/FastMap.cpp -------------------------------------------------------------------------------- /libraries/FastMap/FastMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/FastMap/FastMap.h -------------------------------------------------------------------------------- /libraries/FastMap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/FastMap/LICENSE -------------------------------------------------------------------------------- /libraries/FastMap/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/FastMap/readme.md -------------------------------------------------------------------------------- /libraries/FastShiftIn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/FastShiftIn/LICENSE -------------------------------------------------------------------------------- /libraries/FastTrig/FastTrig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/FastTrig/FastTrig.h -------------------------------------------------------------------------------- /libraries/FastTrig/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/FastTrig/LICENSE -------------------------------------------------------------------------------- /libraries/FastTrig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/FastTrig/README.md -------------------------------------------------------------------------------- /libraries/Fletcher/Fletcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Fletcher/Fletcher.h -------------------------------------------------------------------------------- /libraries/Fletcher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Fletcher/LICENSE -------------------------------------------------------------------------------- /libraries/Fletcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Fletcher/README.md -------------------------------------------------------------------------------- /libraries/Fraction/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Fraction/LICENSE -------------------------------------------------------------------------------- /libraries/Fraction/fraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Fraction/fraction.h -------------------------------------------------------------------------------- /libraries/Fraction/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Fraction/readme.md -------------------------------------------------------------------------------- /libraries/GAMMA/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/GAMMA/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/GAMMA/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/GAMMA/LICENSE -------------------------------------------------------------------------------- /libraries/GAMMA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/GAMMA/README.md -------------------------------------------------------------------------------- /libraries/GAMMA/gamma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/GAMMA/gamma.cpp -------------------------------------------------------------------------------- /libraries/GAMMA/gamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/GAMMA/gamma.h -------------------------------------------------------------------------------- /libraries/GAMMA/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/GAMMA/keywords.txt -------------------------------------------------------------------------------- /libraries/GAMMA/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/GAMMA/library.json -------------------------------------------------------------------------------- /libraries/GST/.arduino-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/GST/.arduino-ci.yml -------------------------------------------------------------------------------- /libraries/GST/GST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/GST/GST.cpp -------------------------------------------------------------------------------- /libraries/GST/GST.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/GST/GST.h -------------------------------------------------------------------------------- /libraries/GST/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/GST/LICENSE -------------------------------------------------------------------------------- /libraries/GST/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/GST/README.md -------------------------------------------------------------------------------- /libraries/GST/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/GST/changelog.md -------------------------------------------------------------------------------- /libraries/GST/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/GST/keywords.txt -------------------------------------------------------------------------------- /libraries/GST/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/GST/library.json -------------------------------------------------------------------------------- /libraries/GY521/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/GY521/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/GY521/GY521.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/GY521/GY521.cpp -------------------------------------------------------------------------------- /libraries/GY521/GY521.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/GY521/GY521.h -------------------------------------------------------------------------------- /libraries/GY521/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/GY521/LICENSE -------------------------------------------------------------------------------- /libraries/GY521/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/GY521/README.md -------------------------------------------------------------------------------- /libraries/GY521/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/GY521/keywords.txt -------------------------------------------------------------------------------- /libraries/GY521/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/GY521/library.json -------------------------------------------------------------------------------- /libraries/Gauss/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Gauss/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/Gauss/Gauss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Gauss/Gauss.h -------------------------------------------------------------------------------- /libraries/Gauss/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Gauss/LICENSE -------------------------------------------------------------------------------- /libraries/Gauss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Gauss/README.md -------------------------------------------------------------------------------- /libraries/Gauss/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Gauss/keywords.txt -------------------------------------------------------------------------------- /libraries/Gauss/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Gauss/library.json -------------------------------------------------------------------------------- /libraries/HC4051/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HC4051/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/HC4051/HC4051.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HC4051/HC4051.h -------------------------------------------------------------------------------- /libraries/HC4051/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HC4051/LICENSE -------------------------------------------------------------------------------- /libraries/HC4051/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HC4051/README.md -------------------------------------------------------------------------------- /libraries/HC4051/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HC4051/keywords.txt -------------------------------------------------------------------------------- /libraries/HC4051/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HC4051/library.json -------------------------------------------------------------------------------- /libraries/HC4052/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HC4052/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/HC4052/HC4052.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HC4052/HC4052.h -------------------------------------------------------------------------------- /libraries/HC4052/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HC4052/LICENSE -------------------------------------------------------------------------------- /libraries/HC4052/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HC4052/README.md -------------------------------------------------------------------------------- /libraries/HC4052/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HC4052/keywords.txt -------------------------------------------------------------------------------- /libraries/HC4052/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HC4052/library.json -------------------------------------------------------------------------------- /libraries/HC4053/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HC4053/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/HC4053/HC4053.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HC4053/HC4053.h -------------------------------------------------------------------------------- /libraries/HC4053/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HC4053/LICENSE -------------------------------------------------------------------------------- /libraries/HC4053/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HC4053/README.md -------------------------------------------------------------------------------- /libraries/HC4053/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HC4053/keywords.txt -------------------------------------------------------------------------------- /libraries/HC4053/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HC4053/library.json -------------------------------------------------------------------------------- /libraries/HC4067/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HC4067/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/HC4067/HC4067.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HC4067/HC4067.h -------------------------------------------------------------------------------- /libraries/HC4067/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HC4067/LICENSE -------------------------------------------------------------------------------- /libraries/HC4067/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HC4067/README.md -------------------------------------------------------------------------------- /libraries/HC4067/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HC4067/keywords.txt -------------------------------------------------------------------------------- /libraries/HC4067/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HC4067/library.json -------------------------------------------------------------------------------- /libraries/HT16K33/HT16K33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HT16K33/HT16K33.cpp -------------------------------------------------------------------------------- /libraries/HT16K33/HT16K33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HT16K33/HT16K33.h -------------------------------------------------------------------------------- /libraries/HT16K33/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HT16K33/LICENSE -------------------------------------------------------------------------------- /libraries/HT16K33/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HT16K33/README.md -------------------------------------------------------------------------------- /libraries/HX710AB/HX710AB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HX710AB/HX710AB.h -------------------------------------------------------------------------------- /libraries/HX710AB/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HX710AB/LICENSE -------------------------------------------------------------------------------- /libraries/HX710AB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HX710AB/README.md -------------------------------------------------------------------------------- /libraries/HX711/CHANGELOG..md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HX711/CHANGELOG..md -------------------------------------------------------------------------------- /libraries/HX711/HX711.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HX711/HX711.cpp -------------------------------------------------------------------------------- /libraries/HX711/HX711.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HX711/HX711.h -------------------------------------------------------------------------------- /libraries/HX711/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HX711/LICENSE -------------------------------------------------------------------------------- /libraries/HX711/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HX711/README.md -------------------------------------------------------------------------------- /libraries/HX711/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HX711/keywords.txt -------------------------------------------------------------------------------- /libraries/HX711/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HX711/library.json -------------------------------------------------------------------------------- /libraries/HX711_MP/HX711_MP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HX711_MP/HX711_MP.h -------------------------------------------------------------------------------- /libraries/HX711_MP/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HX711_MP/LICENSE -------------------------------------------------------------------------------- /libraries/HX711_MP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HX711_MP/README.md -------------------------------------------------------------------------------- /libraries/HeartBeat/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HeartBeat/LICENSE -------------------------------------------------------------------------------- /libraries/HeartBeat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/HeartBeat/README.md -------------------------------------------------------------------------------- /libraries/Histogram/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Histogram/LICENSE -------------------------------------------------------------------------------- /libraries/Histogram/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Histogram/readme.md -------------------------------------------------------------------------------- /libraries/I2CKeyPad/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/I2CKeyPad/LICENSE -------------------------------------------------------------------------------- /libraries/I2CKeyPad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/I2CKeyPad/README.md -------------------------------------------------------------------------------- /libraries/I2C_ASDX/I2C_ASDX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/I2C_ASDX/I2C_ASDX.h -------------------------------------------------------------------------------- /libraries/I2C_ASDX/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/I2C_ASDX/LICENSE -------------------------------------------------------------------------------- /libraries/I2C_ASDX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/I2C_ASDX/README.md -------------------------------------------------------------------------------- /libraries/I2C_EEPROM/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/I2C_EEPROM/LICENSE -------------------------------------------------------------------------------- /libraries/I2C_LCD/I2C_LCD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/I2C_LCD/I2C_LCD.cpp -------------------------------------------------------------------------------- /libraries/I2C_LCD/I2C_LCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/I2C_LCD/I2C_LCD.h -------------------------------------------------------------------------------- /libraries/I2C_LCD/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/I2C_LCD/LICENSE -------------------------------------------------------------------------------- /libraries/I2C_LCD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/I2C_LCD/README.md -------------------------------------------------------------------------------- /libraries/I2C_LCD/examples/I2C_LCD_demo_spectrum_column/AKA_skyline.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/I2C_SCANNER/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/I2C_SCANNER/LICENSE -------------------------------------------------------------------------------- /libraries/INA219/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/INA219/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/INA219/INA219.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/INA219/INA219.h -------------------------------------------------------------------------------- /libraries/INA219/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/INA219/LICENSE -------------------------------------------------------------------------------- /libraries/INA219/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/INA219/README.md -------------------------------------------------------------------------------- /libraries/INA226/INA226.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/INA226/INA226.h -------------------------------------------------------------------------------- /libraries/INA226/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/INA226/LICENSE -------------------------------------------------------------------------------- /libraries/INA226/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/INA226/README.md -------------------------------------------------------------------------------- /libraries/INA228/INA228.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/INA228/INA228.h -------------------------------------------------------------------------------- /libraries/INA228/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/INA228/LICENSE -------------------------------------------------------------------------------- /libraries/INA228/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/INA228/README.md -------------------------------------------------------------------------------- /libraries/INA229/INA229.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/INA229/INA229.h -------------------------------------------------------------------------------- /libraries/INA229/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/INA229/LICENSE -------------------------------------------------------------------------------- /libraries/INA229/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/INA229/README.md -------------------------------------------------------------------------------- /libraries/INA229/examples/INA229_dump_config/dump_config.txt: -------------------------------------------------------------------------------- 1 | 2 | Example output. 3 | 4 | TODO 5 | -------------------------------------------------------------------------------- /libraries/INA236/INA236.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/INA236/INA236.h -------------------------------------------------------------------------------- /libraries/INA236/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/INA236/LICENSE -------------------------------------------------------------------------------- /libraries/INA236/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/INA236/README.md -------------------------------------------------------------------------------- /libraries/INA239/INA239.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/INA239/INA239.h -------------------------------------------------------------------------------- /libraries/INA239/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/INA239/LICENSE -------------------------------------------------------------------------------- /libraries/INA239/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/INA239/README.md -------------------------------------------------------------------------------- /libraries/INA260/INA260.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/INA260/INA260.h -------------------------------------------------------------------------------- /libraries/INA260/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/INA260/LICENSE -------------------------------------------------------------------------------- /libraries/INA260/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/INA260/README.md -------------------------------------------------------------------------------- /libraries/Interval/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Interval/LICENSE -------------------------------------------------------------------------------- /libraries/KT0803/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/KT0803/LICENSE -------------------------------------------------------------------------------- /libraries/KT0803/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/KT0803/README.md -------------------------------------------------------------------------------- /libraries/Kurtosis/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Kurtosis/LICENSE -------------------------------------------------------------------------------- /libraries/L9110/L9110.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/L9110/L9110.h -------------------------------------------------------------------------------- /libraries/L9110/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/L9110/LICENSE -------------------------------------------------------------------------------- /libraries/L9110/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/L9110/README.md -------------------------------------------------------------------------------- /libraries/LTC2485/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/LTC2485/LICENSE -------------------------------------------------------------------------------- /libraries/LTC2991/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/LTC2991/LICENSE -------------------------------------------------------------------------------- /libraries/LUHN/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/LUHN/LICENSE -------------------------------------------------------------------------------- /libraries/LUHN/LUHN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/LUHN/LUHN.cpp -------------------------------------------------------------------------------- /libraries/LUHN/LUHN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/LUHN/LUHN.h -------------------------------------------------------------------------------- /libraries/LUHN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/LUHN/README.md -------------------------------------------------------------------------------- /libraries/Logistic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Logistic/LICENSE -------------------------------------------------------------------------------- /libraries/M5ANGLE8/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/M5ANGLE8/LICENSE -------------------------------------------------------------------------------- /libraries/M62429/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/M62429/LICENSE -------------------------------------------------------------------------------- /libraries/M62429/M62429.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/M62429/M62429.h -------------------------------------------------------------------------------- /libraries/M62429/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/M62429/README.md -------------------------------------------------------------------------------- /libraries/MAX14661/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MAX14661/LICENSE -------------------------------------------------------------------------------- /libraries/MAX14661/examples/MAX14661_performance/performance_0.3.0.txt: -------------------------------------------------------------------------------- 1 | 2 | TODO test with hardware. 3 | -------------------------------------------------------------------------------- /libraries/MAX31850/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MAX31850/LICENSE -------------------------------------------------------------------------------- /libraries/MAX44007/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MAX44007/LICENSE -------------------------------------------------------------------------------- /libraries/MAX520/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MAX520/LICENSE -------------------------------------------------------------------------------- /libraries/MAX520/MAX520.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MAX520/MAX520.h -------------------------------------------------------------------------------- /libraries/MAX520/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MAX520/README.md -------------------------------------------------------------------------------- /libraries/MAX6675/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MAX6675/LICENSE -------------------------------------------------------------------------------- /libraries/MCP23008/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MCP23008/LICENSE -------------------------------------------------------------------------------- /libraries/MCP23S08/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MCP23S08/LICENSE -------------------------------------------------------------------------------- /libraries/MCP23S17/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MCP23S17/LICENSE -------------------------------------------------------------------------------- /libraries/MCP330X/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MCP330X/LICENSE -------------------------------------------------------------------------------- /libraries/MCP3424/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MCP3424/LICENSE -------------------------------------------------------------------------------- /libraries/MCP4261/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MCP4261/LICENSE -------------------------------------------------------------------------------- /libraries/MCP4725/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MCP4725/LICENSE -------------------------------------------------------------------------------- /libraries/MCP_ADC/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MCP_ADC/LICENSE -------------------------------------------------------------------------------- /libraries/MCP_DAC/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MCP_DAC/LICENSE -------------------------------------------------------------------------------- /libraries/MCP_POT/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MCP_POT/LICENSE -------------------------------------------------------------------------------- /libraries/MHZCO2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MHZCO2/LICENSE -------------------------------------------------------------------------------- /libraries/MHZCO2/MHZCO2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MHZCO2/MHZCO2.h -------------------------------------------------------------------------------- /libraries/MHZCO2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MHZCO2/README.md -------------------------------------------------------------------------------- /libraries/MINMAX/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MINMAX/LICENSE -------------------------------------------------------------------------------- /libraries/MINMAX/MINMAX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MINMAX/MINMAX.h -------------------------------------------------------------------------------- /libraries/MINMAX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MINMAX/README.md -------------------------------------------------------------------------------- /libraries/ML8511/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ML8511/LICENSE -------------------------------------------------------------------------------- /libraries/ML8511/ML8511.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ML8511/ML8511.h -------------------------------------------------------------------------------- /libraries/ML8511/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ML8511/readme.md -------------------------------------------------------------------------------- /libraries/MS5611/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MS5611/LICENSE -------------------------------------------------------------------------------- /libraries/MS5611/MS5611.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MS5611/MS5611.h -------------------------------------------------------------------------------- /libraries/MS5611/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MS5611/README.md -------------------------------------------------------------------------------- /libraries/MS5837/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MS5837/LICENSE -------------------------------------------------------------------------------- /libraries/MS5837/MS5837.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MS5837/MS5837.h -------------------------------------------------------------------------------- /libraries/MS5837/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MS5837/README.md -------------------------------------------------------------------------------- /libraries/MSP300/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MSP300/LICENSE -------------------------------------------------------------------------------- /libraries/MSP300/MSP300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MSP300/MSP300.h -------------------------------------------------------------------------------- /libraries/MSP300/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MSP300/README.md -------------------------------------------------------------------------------- /libraries/MT8870/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MT8870/LICENSE -------------------------------------------------------------------------------- /libraries/MT8870/MT8870.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MT8870/MT8870.h -------------------------------------------------------------------------------- /libraries/MT8870/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MT8870/README.md -------------------------------------------------------------------------------- /libraries/MTP40C/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MTP40C/LICENSE -------------------------------------------------------------------------------- /libraries/MTP40C/MTP40C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MTP40C/MTP40C.h -------------------------------------------------------------------------------- /libraries/MTP40C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MTP40C/README.md -------------------------------------------------------------------------------- /libraries/MTP40F/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MTP40F/LICENSE -------------------------------------------------------------------------------- /libraries/MTP40F/MTP40F.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MTP40F/MTP40F.h -------------------------------------------------------------------------------- /libraries/MTP40F/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MTP40F/README.md -------------------------------------------------------------------------------- /libraries/Max44009/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Max44009/LICENSE -------------------------------------------------------------------------------- /libraries/MiniMP3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MiniMP3/LICENSE -------------------------------------------------------------------------------- /libraries/MultiMap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/MultiMap/LICENSE -------------------------------------------------------------------------------- /libraries/OUTPIN/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/OUTPIN/LICENSE -------------------------------------------------------------------------------- /libraries/OUTPIN/OUTPIN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/OUTPIN/OUTPIN.h -------------------------------------------------------------------------------- /libraries/OUTPIN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/OUTPIN/README.md -------------------------------------------------------------------------------- /libraries/PCA9549/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PCA9549/LICENSE -------------------------------------------------------------------------------- /libraries/PCA9551/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PCA9551/LICENSE -------------------------------------------------------------------------------- /libraries/PCA9552/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PCA9552/LICENSE -------------------------------------------------------------------------------- /libraries/PCA9553/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PCA9553/LICENSE -------------------------------------------------------------------------------- /libraries/PCA9632/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PCA9632/LICENSE -------------------------------------------------------------------------------- /libraries/PCA9634/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PCA9634/LICENSE -------------------------------------------------------------------------------- /libraries/PCA9635/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PCA9635/LICENSE -------------------------------------------------------------------------------- /libraries/PCA9671/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PCA9671/LICENSE -------------------------------------------------------------------------------- /libraries/PCF85263/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PCF85263/LICENSE -------------------------------------------------------------------------------- /libraries/PCF8574/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PCF8574/LICENSE -------------------------------------------------------------------------------- /libraries/PCF8575/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PCF8575/LICENSE -------------------------------------------------------------------------------- /libraries/PCF8591/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PCF8591/LICENSE -------------------------------------------------------------------------------- /libraries/PCR/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PCR/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/PCR/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PCR/LICENSE -------------------------------------------------------------------------------- /libraries/PCR/PCR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PCR/PCR.h -------------------------------------------------------------------------------- /libraries/PCR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PCR/README.md -------------------------------------------------------------------------------- /libraries/PCR/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PCR/keywords.txt -------------------------------------------------------------------------------- /libraries/PCR/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PCR/library.json -------------------------------------------------------------------------------- /libraries/PCT2075/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PCT2075/LICENSE -------------------------------------------------------------------------------- /libraries/PERIPUMP/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PERIPUMP/LICENSE -------------------------------------------------------------------------------- /libraries/PID_RT/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PID_RT/LICENSE -------------------------------------------------------------------------------- /libraries/PID_RT/PID_RT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PID_RT/PID_RT.h -------------------------------------------------------------------------------- /libraries/PID_RT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PID_RT/README.md -------------------------------------------------------------------------------- /libraries/PIR/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PIR/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/PIR/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PIR/LICENSE -------------------------------------------------------------------------------- /libraries/PIR/PIR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PIR/PIR.cpp -------------------------------------------------------------------------------- /libraries/PIR/PIR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PIR/PIR.h -------------------------------------------------------------------------------- /libraries/PIR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PIR/README.md -------------------------------------------------------------------------------- /libraries/PIR/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PIR/keywords.txt -------------------------------------------------------------------------------- /libraries/PIR/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PIR/library.json -------------------------------------------------------------------------------- /libraries/PIR8575/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PIR8575/LICENSE -------------------------------------------------------------------------------- /libraries/PPD71/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PPD71/LICENSE -------------------------------------------------------------------------------- /libraries/PPD71/PPD71.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PPD71/PPD71.h -------------------------------------------------------------------------------- /libraries/PPD71/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PPD71/README.md -------------------------------------------------------------------------------- /libraries/PT2314/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PT2314/LICENSE -------------------------------------------------------------------------------- /libraries/PT2314/PT2314.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PT2314/PT2314.h -------------------------------------------------------------------------------- /libraries/PT2314/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/PT2314/README.md -------------------------------------------------------------------------------- /libraries/Par27979/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Par27979/LICENSE -------------------------------------------------------------------------------- /libraries/ParPrinter/replaced by parallelPrinter.txt: -------------------------------------------------------------------------------- 1 | https://github.com/RobTillaart/ParallelPrinter -------------------------------------------------------------------------------- /libraries/Prandom/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Prandom/LICENSE -------------------------------------------------------------------------------- /libraries/RS485/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/RS485/LICENSE -------------------------------------------------------------------------------- /libraries/RS485/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/RS485/README.md -------------------------------------------------------------------------------- /libraries/RS485/RS485.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/RS485/RS485.cpp -------------------------------------------------------------------------------- /libraries/RS485/RS485.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/RS485/RS485.h -------------------------------------------------------------------------------- /libraries/Radar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Radar/LICENSE -------------------------------------------------------------------------------- /libraries/Radar/radar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Radar/radar.cpp -------------------------------------------------------------------------------- /libraries/Radar/radar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Radar/radar.h -------------------------------------------------------------------------------- /libraries/Radar/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Radar/readme.md -------------------------------------------------------------------------------- /libraries/SD2405/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SD2405/LICENSE -------------------------------------------------------------------------------- /libraries/SD2405/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SD2405/README.md -------------------------------------------------------------------------------- /libraries/SD2405/SD2405.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SD2405/SD2405.h -------------------------------------------------------------------------------- /libraries/SGP30/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SGP30/LICENSE -------------------------------------------------------------------------------- /libraries/SGP30/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SGP30/README.md -------------------------------------------------------------------------------- /libraries/SGP30/SGP30.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SGP30/SGP30.cpp -------------------------------------------------------------------------------- /libraries/SGP30/SGP30.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SGP30/SGP30.h -------------------------------------------------------------------------------- /libraries/SHEX/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SHEX/LICENSE -------------------------------------------------------------------------------- /libraries/SHEX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SHEX/README.md -------------------------------------------------------------------------------- /libraries/SHEX/SHEX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SHEX/SHEX.cpp -------------------------------------------------------------------------------- /libraries/SHEX/SHEX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SHEX/SHEX.h -------------------------------------------------------------------------------- /libraries/SHT2x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SHT2x/LICENSE -------------------------------------------------------------------------------- /libraries/SHT2x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SHT2x/README.md -------------------------------------------------------------------------------- /libraries/SHT2x/SHT2x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SHT2x/SHT2x.cpp -------------------------------------------------------------------------------- /libraries/SHT2x/SHT2x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SHT2x/SHT2x.h -------------------------------------------------------------------------------- /libraries/SHT31/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SHT31/LICENSE -------------------------------------------------------------------------------- /libraries/SHT31/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SHT31/README.md -------------------------------------------------------------------------------- /libraries/SHT31/SHT31.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SHT31/SHT31.cpp -------------------------------------------------------------------------------- /libraries/SHT31/SHT31.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SHT31/SHT31.h -------------------------------------------------------------------------------- /libraries/SHT31_SW/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SHT31_SW/LICENSE -------------------------------------------------------------------------------- /libraries/SHT4x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SHT4x/LICENSE -------------------------------------------------------------------------------- /libraries/SHT4x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SHT4x/README.md -------------------------------------------------------------------------------- /libraries/SHT4x/SHT4x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SHT4x/SHT4x.cpp -------------------------------------------------------------------------------- /libraries/SHT4x/SHT4x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SHT4x/SHT4x.h -------------------------------------------------------------------------------- /libraries/SHT85/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SHT85/LICENSE -------------------------------------------------------------------------------- /libraries/SHT85/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SHT85/README.md -------------------------------------------------------------------------------- /libraries/SHT85/SHT85.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SHT85/SHT85.cpp -------------------------------------------------------------------------------- /libraries/SHT85/SHT85.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SHT85/SHT85.h -------------------------------------------------------------------------------- /libraries/SIMON/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SIMON/LICENSE -------------------------------------------------------------------------------- /libraries/SIMON/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SIMON/README.md -------------------------------------------------------------------------------- /libraries/SIMON/simon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SIMON/simon.cpp -------------------------------------------------------------------------------- /libraries/SIMON/simon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SIMON/simon.h -------------------------------------------------------------------------------- /libraries/SMC/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SMC/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/SMC/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SMC/LICENSE -------------------------------------------------------------------------------- /libraries/SMC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SMC/README.md -------------------------------------------------------------------------------- /libraries/SMC/SMC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SMC/SMC.h -------------------------------------------------------------------------------- /libraries/SMC/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SMC/keywords.txt -------------------------------------------------------------------------------- /libraries/SMC/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SMC/library.json -------------------------------------------------------------------------------- /libraries/SRF05/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SRF05/LICENSE -------------------------------------------------------------------------------- /libraries/SRF05/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SRF05/README.md -------------------------------------------------------------------------------- /libraries/SRF05/SRF05.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SRF05/SRF05.cpp -------------------------------------------------------------------------------- /libraries/SRF05/SRF05.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SRF05/SRF05.h -------------------------------------------------------------------------------- /libraries/SWSPI/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SWSPI/LICENSE -------------------------------------------------------------------------------- /libraries/SWSPI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SWSPI/README.md -------------------------------------------------------------------------------- /libraries/SWSPI/SWSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/SWSPI/SWSPI.h -------------------------------------------------------------------------------- /libraries/Set/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Set/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/Set/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Set/LICENSE -------------------------------------------------------------------------------- /libraries/Set/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Set/README.md -------------------------------------------------------------------------------- /libraries/Set/Set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Set/Set.cpp -------------------------------------------------------------------------------- /libraries/Set/Set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Set/Set.h -------------------------------------------------------------------------------- /libraries/Set/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Set/keywords.txt -------------------------------------------------------------------------------- /libraries/Set/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Set/library.json -------------------------------------------------------------------------------- /libraries/Soundex/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Soundex/LICENSE -------------------------------------------------------------------------------- /libraries/Statistic/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Statistic/FAQ.md -------------------------------------------------------------------------------- /libraries/Student/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Student/LICENSE -------------------------------------------------------------------------------- /libraries/TCA9548/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/TCA9548/LICENSE -------------------------------------------------------------------------------- /libraries/TCA9554/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/TCA9554/LICENSE -------------------------------------------------------------------------------- /libraries/TCA9555/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/TCA9555/LICENSE -------------------------------------------------------------------------------- /libraries/TCRT5000/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/TCRT5000/LICENSE -------------------------------------------------------------------------------- /libraries/TCS3210/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/TCS3210/LICENSE -------------------------------------------------------------------------------- /libraries/TEMT6000/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/TEMT6000/LICENSE -------------------------------------------------------------------------------- /libraries/TLC5917/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/TLC5917/LICENSE -------------------------------------------------------------------------------- /libraries/TLC5947/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/TLC5947/LICENSE -------------------------------------------------------------------------------- /libraries/TOPMAX/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/TOPMAX/LICENSE -------------------------------------------------------------------------------- /libraries/TOPMAX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/TOPMAX/README.md -------------------------------------------------------------------------------- /libraries/TOPMAX/TOPMAX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/TOPMAX/TOPMAX.h -------------------------------------------------------------------------------- /libraries/TOPMIN/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/TOPMIN/LICENSE -------------------------------------------------------------------------------- /libraries/TOPMIN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/TOPMIN/README.md -------------------------------------------------------------------------------- /libraries/TOPMIN/TOPMIN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/TOPMIN/TOPMIN.h -------------------------------------------------------------------------------- /libraries/TSL235R/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/TSL235R/LICENSE -------------------------------------------------------------------------------- /libraries/TSL260R/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/TSL260R/LICENSE -------------------------------------------------------------------------------- /libraries/Troolean/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/Troolean/LICENSE -------------------------------------------------------------------------------- /libraries/UUID/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/UUID/LICENSE -------------------------------------------------------------------------------- /libraries/UUID/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/UUID/README.md -------------------------------------------------------------------------------- /libraries/UUID/UUID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/UUID/UUID.cpp -------------------------------------------------------------------------------- /libraries/UUID/UUID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/UUID/UUID.h -------------------------------------------------------------------------------- /libraries/VT100/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/VT100/LICENSE -------------------------------------------------------------------------------- /libraries/VT100/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/VT100/README.md -------------------------------------------------------------------------------- /libraries/VT100/VT100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/VT100/VT100.h -------------------------------------------------------------------------------- /libraries/VT100/replaced by ANSI library.txt: -------------------------------------------------------------------------------- 1 | https://github.com/RobTillaart/ANSI 2 | -------------------------------------------------------------------------------- /libraries/WaterMix/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/WaterMix/LICENSE -------------------------------------------------------------------------------- /libraries/WaveMix/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/WaveMix/LICENSE -------------------------------------------------------------------------------- /libraries/X9C10X/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/X9C10X/LICENSE -------------------------------------------------------------------------------- /libraries/X9C10X/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/X9C10X/README.md -------------------------------------------------------------------------------- /libraries/X9C10X/X9C10X.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/X9C10X/X9C10X.h -------------------------------------------------------------------------------- /libraries/decibel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/decibel/LICENSE -------------------------------------------------------------------------------- /libraries/ellipse/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/ellipse/LICENSE -------------------------------------------------------------------------------- /libraries/float16/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/float16/LICENSE -------------------------------------------------------------------------------- /libraries/geomath/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/geomath/LICENSE -------------------------------------------------------------------------------- /libraries/hmc6352/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/hmc6352/LICENSE -------------------------------------------------------------------------------- /libraries/logic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/logic/LICENSE -------------------------------------------------------------------------------- /libraries/logic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/logic/README.md -------------------------------------------------------------------------------- /libraries/logic/logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/logic/logic.h -------------------------------------------------------------------------------- /libraries/map2bits/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/map2bits/LICENSE -------------------------------------------------------------------------------- /libraries/millis64/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/millis64/LICENSE -------------------------------------------------------------------------------- /libraries/optoma/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/optoma/LICENSE -------------------------------------------------------------------------------- /libraries/optoma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/optoma/README.md -------------------------------------------------------------------------------- /libraries/optoma/optoma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/optoma/optoma.h -------------------------------------------------------------------------------- /libraries/pressure/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/pressure/LICENSE -------------------------------------------------------------------------------- /libraries/rain/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/rain/LICENSE -------------------------------------------------------------------------------- /libraries/rain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/rain/README.md -------------------------------------------------------------------------------- /libraries/rain/rain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/rain/rain.cpp -------------------------------------------------------------------------------- /libraries/rain/rain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/rain/rain.h -------------------------------------------------------------------------------- /libraries/timing/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/timing/LICENSE -------------------------------------------------------------------------------- /libraries/timing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/timing/README.md -------------------------------------------------------------------------------- /libraries/timing/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/timing/timing.h -------------------------------------------------------------------------------- /libraries/weight/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/weight/LICENSE -------------------------------------------------------------------------------- /libraries/weight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/weight/README.md -------------------------------------------------------------------------------- /libraries/weight/weight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/libraries/weight/weight.h -------------------------------------------------------------------------------- /sketches/uv-sensor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobTillaart/Arduino/HEAD/sketches/uv-sensor/LICENSE -------------------------------------------------------------------------------- /sketches/uv-sensor/under_arduino_sketches.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------