diff --git a/README.rst b/README.rst index d876216..b4412ec 100644 --- a/README.rst +++ b/README.rst @@ -14,7 +14,7 @@ Mopidy-NeoPixel :target: https://codecov.io/gh/fmatray/mopidy-neopixel :alt: Test coverage -We always can add leds +We always can add leds to mopidy players. Installation @@ -33,9 +33,19 @@ Configuration Before starting Mopidy, you must add configuration for Mopidy-NeoPixel to your Mopidy configuration file:: - [neopixel] - # TODO: Add example of extension config + [neopixel] + enabled = true + #Led Pin. You can only use pins 10, 12, 18 or 21 + pin = 12 + # Number of leds + nb_leds = 7 +Limitations +=========== + +Mopidy MUST run as root to have access to /dev/mem. +As long as you don't use this plugin to rule a sattelite or a WMD, it should be ok :-) +Keep this for a small personnal project. Project resources ================= diff --git a/setup.py b/setup.py index a92f358..2d13457 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,8 @@ def get_version(filename): packages=find_packages(exclude=['tests', 'tests.*']), zip_safe=False, include_package_data=True, - keywords = ['Mopidy', 'Mopidy-frontend', 'Neopixels'], + download_url='https://github.com/fmatray/mopidy-neopixel/archive/0.1.0.zip', + keywords=['Mopidy', 'Mopidy-frontend', 'Neopixels'], install_requires=[ 'setuptools', 'Mopidy >= 0.14',