File tree Expand file tree Collapse file tree 1 file changed +19
-7
lines changed Expand file tree Collapse file tree 1 file changed +19
-7
lines changed Original file line number Diff line number Diff line change 20
20
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
21
# THE SOFTWARE.
22
22
"""
23
- `Adafruit_MAX9744 `
23
+ `adafruit_max9744 `
24
24
====================================================
25
25
26
26
CircuitPython module for the MAX9744 20W class D amplifier. See
27
27
examples/simpletest.py for a demo of the usage.
28
28
29
29
* Author(s): Tony DiCola
30
+
31
+ Implementation Notes
32
+ --------------------
33
+
34
+ **Hardware:**
35
+
36
+ * Adafruit `MAX9744 Stereo 20W Class D Audio Amplifier
37
+ <https://www.adafruit.com/product/1752>`_ (Product ID: 1752)
38
+
39
+ **Software and Dependencies:**
40
+
41
+ * Adafruit CircuitPython firmware for the ESP8622 and M0-based boards:
42
+ https://github.com/adafruit/circuitpython/releases
30
43
"""
31
44
from micropython import const
32
45
46
59
47
60
48
61
class MAX9744 :
49
- """MAX9744 20 watt class D amplifier. Construct this by passing the
50
- following parameters:
51
- - i2c: The I2C bus for the device.
62
+ """MAX9744 20 watt class D amplifier.
63
+
64
+ :param i2c: The I2C bus for the device.
52
65
53
- Optionally specify:
54
- - address: The address of the device if it has been overridden from the
55
- default with the AD1, AD2 pins.
66
+ :param address: (Optional) The address of the device if it has been overridden from the
67
+ default with the AD1, AD2 pins.
56
68
"""
57
69
58
70
# Global buffer for writing data. This saves memory use and prevents
You can’t perform that action at this time.
0 commit comments