Skip to content

Commit 7a539a9

Browse files
authored
Merge pull request #19 from kattni/remove-motor
Removing MotorFeatherWing
2 parents 6a2a131 + 1b92c2d commit 7a539a9

File tree

15 files changed

+5
-251
lines changed

15 files changed

+5
-251
lines changed

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ Dependencies
2222
These drivers depends on:
2323

2424
* `Adafruit CircuitPython <https://github.com/adafruit/circuitpython>`_
25-
* `PCA9685 <https://github.com/adafruit/Adafruit_CircuitPython_PCA9685>`_
26-
* `Motor <https://github.com/adafruit/Adafruit_CircuitPython_Motor>`_
25+
* `INA219 <https://github.com/adafruit/Adafruit_CircuitPython_INA219>`_
26+
* `Seesaw <https://github.com/adafruit/Adafruit_CircuitPython_seesaw>`_
2727

2828
Please ensure all dependencies are available on the CircuitPython filesystem.
2929
This is easily achieved by downloading

adafruit_featherwing/motor_featherwing.py

Lines changed: 0 additions & 216 deletions
This file was deleted.

docs/_static/motor_featherwing/m1.jpg

-655 KB
Binary file not shown.

docs/_static/motor_featherwing/m2.jpg

-655 KB
Binary file not shown.

docs/_static/motor_featherwing/m3.jpg

-656 KB
Binary file not shown.

docs/_static/motor_featherwing/m4.jpg

-656 KB
Binary file not shown.
-657 KB
Binary file not shown.
-656 KB
Binary file not shown.

docs/api.rst

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11

22
.. If you created a package, create one automodule per module in the package.
33
4-
.. automodule:: adafruit_featherwing.motor_featherwing
5-
:members:
6-
74
.. automodule:: adafruit_featherwing.ina219_featherwing
85
:members:
96

docs/conf.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@
2424
'python': ('https://docs.python.org/3.4', None),
2525
'BusDevice': ('https://circuitpython.readthedocs.io/projects/bus_device/en/latest/', None),
2626
'Register': ('https://circuitpython.readthedocs.io/projects/register/en/latest/', None),
27-
'CircuitPython': ('https://circuitpython.readthedocs.io/en/latest/', None),
28-
'motor': ('https://circuitpython.readthedocs.io/projects/motor/en/latest/', None)}
27+
'CircuitPython': ('https://circuitpython.readthedocs.io/en/latest/', None)}
2928

3029
# Add any paths that contain templates here, relative to this directory.
3130
templates_path = ['_templates']

docs/examples.rst

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,3 @@ Ensure your device works with this simple test.
1010
.. literalinclude:: ../examples/joy_featherwing/joy.py
1111
:caption: examples/joy_featherwing/joy.py
1212
:linenos:
13-
14-
.. literalinclude:: ../examples/motor_featherwing/dc_motor.py
15-
:caption: examples/motor_featherwing/dc_motor.py
16-
:linenos:
17-
18-
.. literalinclude:: ../examples/motor_featherwing/stepper_motor.py
19-
:caption: examples/motor_featherwing/stepper_motor.py
20-
:linenos:

examples/motor_featherwing/dc_motor.py

Lines changed: 0 additions & 9 deletions
This file was deleted.

examples/motor_featherwing/stepper_motor.py

Lines changed: 0 additions & 6 deletions
This file was deleted.

requirements.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
Adafruit-Blinka
22
adafruit-circuitpython-busdevice
33
adafruit-circuitpython-register
4-
adafruit-circuitpython-motor
5-
adafruit-circuitpython-pca9685
64
adafruit-circuitpython-ina219
75
adafruit-circuitpython-seesaw

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@
3636
author_email='[email protected]',
3737

3838
install_requires=['Adafruit-Blinka', 'adafruit-circuitpython-busdevice',
39-
'adafruit-circuitpython-register', 'adafruit-circuitpython-pca9685',
40-
'adafruit-circuitpython-motor', 'adafruit-circuitpython-ina219',
39+
'adafruit-circuitpython-register', 'adafruit-circuitpython-ina219',
4140
'adafruit-circuitpython-seesaw'],
4241

4342
# Choose your license
@@ -56,7 +55,7 @@
5655
],
5756

5857
# What does your project relate to?
59-
keywords='adafruit motor ina219 pca9685 featherwing joy i2c '
58+
keywords='adafruit ina219 featherwing joy joywing i2c '
6059
'hardware micropython circuitpython',
6160

6261
# You can just specify the packages manually here if your project is

0 commit comments

Comments
 (0)