From cb6a2b18495c9731b47d14a983b4f42ddbd07bad Mon Sep 17 00:00:00 2001 From: Kristian Date: Wed, 10 Mar 2010 23:32:13 +0100 Subject: [PATCH] Convert DenonMixer module doc to docstring --- mopidy/mixers/denon.py | 34 ++++++++++++++++++---------------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/mopidy/mixers/denon.py b/mopidy/mixers/denon.py index 374875b9..426b2db3 100644 --- a/mopidy/mixers/denon.py +++ b/mopidy/mixers/denon.py @@ -8,22 +8,24 @@ from mopidy.settings import MIXER_PORT logger = logging.getLogger(u'mopidy.mixers.denon') -#: Mixer for controlling Denon recivers and amplifiers using the RS-232 protocol. -#: -#: Connects using the serial specifications from -#: Denon's RS-232 Protocol specification. -#: -#: Communication speed : 9600bps -#: Character length : 8 bits -#: Parity control : None -#: Start bit : 1 bit -#: Stop bit : 1 bit -#: Communication procedure : Non procedural -#: Communication data length : 135 bytes (maximum) -#: -#: The external mixer is the authoritative source for the current volume. -#: This allows the user to use his remote control the volume without -#: mopidy cancelling the volume setting. +""" + Mixer for controlling Denon recivers and amplifiers using the RS-232 protocol. + + Connects using the serial specifications from + Denon's RS-232 Protocol specification. + + Communication speed : 9600bps + Character length : 8 bits + Parity control : None + Start bit : 1 bit + Stop bit : 1 bit + Communication procedure : Non procedural + Communication data length : 135 bytes (maximum) + + The external mixer is the authoritative source for the current volume. + This allows the user to use his remote control the volume without + mopidy cancelling the volume setting. +""" class DenonMixer(BaseMixer): def __init__(self):