File tree Expand file tree Collapse file tree 4 files changed +28
-20
lines changed Expand file tree Collapse file tree 4 files changed +28
-20
lines changed Original file line number Diff line number Diff line change 1+ # SPDX-FileCopyrightText: 2018 Carter Nelson for Adafruit Industries
2+ # SPDX-FileCopyrightText: 2025 Asadullah Shaikh <github.com/pantheraleo-7>
3+ #
4+ # SPDX-License-Identifier: MIT
5+
6+ """
7+ `adafruit_ads1x15`
8+ ====================================================
9+
10+ Support for the ADS1x15 series of analog-to-digital converters.
11+
12+ * Author(s): Carter Nelson
13+ """
14+ from .ads1015 import ADS1015
15+ from .ads1115 import ADS1115
16+ from .analog_in import AnalogIn
17+
18+ __all__ = ["ADS1015" , "ADS1115" , "AnalogIn" ]
Original file line number Diff line number Diff line change 3333 3300 : 0x00C0 ,
3434}
3535
36- # Pins
37- P0 = 0
38- """Analog Pin 0"""
39- P1 = 1
40- """Analog Pin 1"""
41- P2 = 2
42- """Analog Pin 2"""
43- P3 = 3
44- """Analog Pin 3"""
45-
4636
4737class ADS1015 (ADS1x15 ):
4838 """Class for the ADS1015 12 bit ADC."""
Original file line number Diff line number Diff line change 3434 860 : 0x00E0 ,
3535}
3636
37- # Pins
38- P0 = 0
39- """Analog Pin 0"""
40- P1 = 1
41- """Analog Pin 1"""
42- P2 = 2
43- """Analog Pin 2"""
44- P3 = 3
45- """Analog Pin 3"""
46-
4737
4838class ADS1115 (ADS1x15 ):
4939 """Class for the ADS1115 16 bit ADC."""
Original file line number Diff line number Diff line change 5353 16 : 0x0A00 ,
5454}
5555
56+ # Pins
57+ A0 = 0
58+ """Analog Pin 0"""
59+ A1 = 1
60+ """Analog Pin 1"""
61+ A2 = 2
62+ """Analog Pin 2"""
63+ A3 = 3
64+ """Analog Pin 3"""
65+
5666
5767class Mode :
5868 """An enum-like class representing possible ADC operating modes."""
You can’t perform that action at this time.
0 commit comments