Skip to content

Commit 8679931

Browse files
committed
make pylint & CI happy
1 parent a40a311 commit 8679931

File tree

4 files changed

+28
-20
lines changed

4 files changed

+28
-20
lines changed

adafruit_ads1x15/__init__.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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"]

adafruit_ads1x15/ads1015.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,6 @@
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

4737
class ADS1015(ADS1x15):
4838
"""Class for the ADS1015 12 bit ADC."""

adafruit_ads1x15/ads1115.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,6 @@
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

4838
class ADS1115(ADS1x15):
4939
"""Class for the ADS1115 16 bit ADC."""

adafruit_ads1x15/ads1x15.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,16 @@
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

5767
class Mode:
5868
"""An enum-like class representing possible ADC operating modes."""

0 commit comments

Comments
 (0)