diff --git a/homeassistant/components/switch/transmission.py b/homeassistant/components/switch/transmission.py index 43d3adf1eee5931ceb2f08b8238fdd2828d0d553..1431ae34c8b4fc4a8ace9644ae4891d6fb1f1ca9 100644 --- a/homeassistant/components/switch/transmission.py +++ b/homeassistant/components/switch/transmission.py @@ -117,14 +117,16 @@ class TransmissionSwitch(ToggleEntity): def turn_on(self, **kwargs): """ Turn the device on. """ - _LOGGING.info("Turning on Turtle Mode") - self.toggle_turtle_mode() + if self._state == STATE_OFF: + _LOGGING.info("Turning on Turtle Mode") + self.toggle_turtle_mode() def turn_off(self, **kwargs): """ Turn the device off. """ - _LOGGING.info("Turning off Turtle Mode ") - self.toggle_turtle_mode() + if self._state == STATE_ON: + _LOGGING.info("Turning off Turtle Mode ") + self.toggle_turtle_mode() def toggle_turtle_mode(self): """ Toggle turtle mode. """