# ADS1115_WE An Arduino library for the 16-bit, 4-channel ADS1115 and the 12-Bit, 4-channel ADS1015 ADC with gain and alert functions. I have have tried to optimize the library for convenience to use. If you try the examples I recommend to start with `Single_Shot.ino`. You can find more details here: https://wolles-elektronikkiste.de/ads1115 (German) https://wolles-elektronikkiste.de/en/ads1115-a-d-converter-with-amplifier (English) All features of the ADS1115 and ADS1015 are implemented, including alert functions. The examples are written for the ADS1115 with one exception, which is Continuous_ADS1015.ino. This shows how to "translate" the sketches for the ADS1015. Most enum values like ADS1115_RANGE_6144 and ADS1015_RANGE_6144 are even identical. The exceptions are the enum values for the conversion rate. In version 1.4.1 I have implemented the option to use TinyWireM instead of Wire. Therefore the library can be used, for example, on an ATtiny85. Since version 1.3.0 I have added a feature to the continuous mode, which ensures that you can change channels safely without risking that the first data read is still from the former channel. If you experienced this issue, you might have solved it with a delay. If this applies to you, you can delete the delays. If you like the library it would be cool if you can give it a star. If you find bugs, please inform me.