| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- ****************************
- Mopidy-Touchscreen
- ****************************
- .. image:: https://img.shields.io/pypi/v/Mopidy-Touchscreen.svg?style=flat
- :target: https://pypi.python.org/pypi/Mopidy-Touchscreen/
- :alt: Latest PyPI version
- .. image:: https://img.shields.io/pypi/dm/Mopidy-Touchscreen.svg?style=flat
- :target: https://pypi.python.org/pypi/Mopidy-Touchscreen/
- :alt: Number of PyPI downloads
- .. image:: https://img.shields.io/travis/9and3r/mopidy-touchscreen/master.png?style=flat
- :target: https://travis-ci.org/9and3r/mopidy-touchscreen
- :alt: Travis CI build status
- .. image:: https://img.shields.io/coveralls/9and3r/mopidy-touchscreen/master.svg?style=flat
- :target: https://coveralls.io/r/9and3r/mopidy-touchscreen?branch=master
- :alt: Test coverage
- Extension for displaying track info and controlling Mopidy from a touch screen using `PyGame <http://www.pygame.org/>`_/SDL.
- Cover images are downloaded from `last.fm <http://www.last.fm/api>`_
- Dependencies
- ============
- - ``Mopidy`` >= 0.18
- - ``Pykka`` >= 1.1
- - ``pygame``
- Installation
- ============
- Install by running::
- pip install Mopidy-Touchscreen
- Or, if available, install the Debian/Ubuntu package from `apt.mopidy.com
- <http://apt.mopidy.com/>`_.
- Basic Configuration
- ===================
- Before starting Mopidy, you must add configuration for
- Mopidy-Touchscreen to your Mopidy configuration file::
- [touchscreen]
- enabled = true
- screen_width = 320
- screen_height = 240
- cursor = True
- fullscreen = False
- cache_dir = $XDG_CACHE_DIR/mopidy/touchscreen
- The following configuration values are available:
-
- - ``touchscreen/enabled``: If the Touchscreen extension should be enabled or not.
- - ``touchscreen/screen_width``: The width of the resolution you want to use in pixels.
- - ``touchscreen/screen_height``: The width of the resolution you want to use in pixels.
- - ``touchscreen/cursor``: If the mouse cursor should be shown. (If you use a touchscreen it should be false)
- - ``touchscreen/fullscreen``: If you want to be shown as a window or in fullscreen.
- - ``touchscreen/screen_width``: The folder to be used as cache. Defaults to ``$XDG_CACHE_DIR/mopidy/touchscreen``, which usually means
- ``~/.cache/mopidy/touchscreen``
- How to Setup
- ============
- Use the basic configuration to setup as most standard screens works fine without further configuration.
- Raspberry Pi and LCD Shields
- ----------------------------
- If you are using a LCD Shield in Raspberry Pi you need to config your LCD and run mopidy with root privileges:
- Configure your LCD Shield
- `````````````````````````
- Add to the config the next variables::
- [touchscreen]
- sdl_fbdev = /dev/fb1
- sdl_mousdrv = TSLIB
- sdl_mousedev = event0
-
- This is just an example. It may work but each LCD Shield seems to have its own configuration.
- To find your values find an example of using pygame with your LCD Shield and it should be something like this in the code::
- os.environ["SDL_FBDEV"] = "/dev/fb1"
- os.environ["SDL_MOUSEDRV"] = "TSLIB"
- os.environ["SDL_MOUSEDEV"] = "event0"
-
- Run mopidy with root privileges
- ```````````````````````````````
-
- You can use ``sudo mopidy``.
- In case you are using musicbox edit ``/etc/init.d/mopidy`` file. Change ``DAEMON_USER=mopidy`` to ``DAEMON_USER=root``
- Do not forget that this is a workaround and that mopidy will run with root privileges.
-
-
- Help
- ====
- You can use `mopidy discuss <https://discuss.mopidy.com/>`_
- or send an email to `9and3r@gmail.com <mailto:9and3r@gmail.com>`_
- Features
- ========
- Working
- -------
- * See track info (track name, album, artist, cover image)
- * Seek Track
- * Play/Pause
- * Mute/Unmute
- * Change volume
- * Next/Previous track
- * Library
- * Menu (exit mopidy, restart...)
- * Shuffle on/off
- * Repeat one/on/off
- * Playback list and song selection
- * Playlists
- Planned
- -------
- * Use keyboard or GPIO buttons instead of touchscreen
- Screenshots
- ===========
- .. image:: http://i60.tinypic.com/qqsait.jpg
- Video
- =====
- `Example video running the extension <https://www.youtube.com/watch?v=KuYoIb8Q2LI>`_
- Project resources
- =================
- - `Source code <https://github.com/9and3r/mopidy-touchscreen>`_
- - `Issue tracker <https://github.com/9and3r/mopidy-touchscreen/issues>`_
- - `Download development snapshot <https://github.com/9and3r/mopidy-touchscreen/archive/master.tar.gz#egg=Mopidy-Touchscreen-dev>`_
- Changelog
- =========
- v0.3.2
- ----------------------------------------
- - Bug Fixes
- - UI changes
- - Smoth text scrolling
- - Search albums, artist or songs (Not fully implemented. Basic functionality)
- v0.2.1
- ----------------------------------------
- - Font will be included on installation
- v0.2.0
- ----------------------------------------
- - First working version
- v0.1.0 (UNRELEASED)
- ----------------------------------------
- - Initial release.
|