Source code for spynnaker.pyNN.external_devices_models.push_bot.ethernet.push_bot_speaker_device

# Copyright (c) 2017 The University of Manchester
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from typing import Iterable, List

from spinn_utilities.overrides import overrides

from spinn_front_end_common.abstract_models import (
    AbstractSendMeMulticastCommandsVertex)
from spinn_front_end_common.utilities.exceptions import ConfigurationException
from spinn_front_end_common.utility_models import MultiCastCommand

from spynnaker.pyNN.external_devices_models.push_bot.parameters import (
    PushBotSpeaker)
from spynnaker.pyNN.protocols import MunichIoSpiNNakerLinkProtocol

from .push_bot_device import PushBotEthernetDevice


class PushBotEthernetSpeakerDevice(
        PushBotEthernetDevice, AbstractSendMeMulticastCommandsVertex):
    """
    The Speaker of a PushBot.
    """

    def __init__(
            self, speaker, protocol: MunichIoSpiNNakerLinkProtocol,
            start_active_time=0, start_total_period=0, start_frequency=0,
            start_melody=None, timesteps_between_send=None):
        """
        :param PushBotSpeaker speaker: The speaker to control
        :param MunichIoSpiNNakerLinkProtocol protocol:
            The protocol instance to get commands from
        :param int start_active_time: The "active time" to set at the start
        :param int start_total_period: The "total period" to set at the start
        :param int start_frequency: The "frequency" to set at the start
        :param int start_melody: The "melody" to set at the start
        :param int timesteps_between_send:
            The number of timesteps between sending commands to the device,
            or `None` to use the default
        """
        # pylint: disable=too-many-arguments
        if not isinstance(speaker, PushBotSpeaker):
            raise ConfigurationException(
                "speaker parameter must be a PushBotSpeaker value")

        super().__init__(protocol, speaker, True, timesteps_between_send)

        # protocol specific data items
        self.__command_protocol = protocol
        self.__start_active_time = start_active_time
        self.__start_total_period = start_total_period
        self.__start_frequency = start_frequency
        self.__start_melody = start_melody

[docs] @overrides(PushBotEthernetDevice.set_command_protocol) def set_command_protocol( self, command_protocol: MunichIoSpiNNakerLinkProtocol): self.__command_protocol = command_protocol
@property @overrides(AbstractSendMeMulticastCommandsVertex.start_resume_commands) def start_resume_commands(self) -> Iterable[MultiCastCommand]: # add mode command if not done already if not self.protocol.sent_mode_command(): yield self.protocol.set_mode() # device specific commands yield self.__command_protocol.push_bot_speaker_config_total_period( total_period=self.__start_total_period) yield self.__command_protocol.push_bot_speaker_config_active_time( active_time=self.__start_active_time) if self.__start_frequency is not None: yield self.__command_protocol.push_bot_speaker_set_tone( frequency=self.__start_frequency) if self.__start_melody is not None: yield self.__command_protocol.push_bot_speaker_set_melody( melody=self.__start_melody) @property @overrides(AbstractSendMeMulticastCommandsVertex.pause_stop_commands) def pause_stop_commands(self) -> Iterable[MultiCastCommand]: yield self.__command_protocol.push_bot_speaker_config_total_period(0) yield self.__command_protocol.push_bot_speaker_config_active_time(0) yield self.__command_protocol.push_bot_speaker_set_tone(0) @property @overrides(AbstractSendMeMulticastCommandsVertex.timed_commands) def timed_commands(self) -> List[MultiCastCommand]: return []