router.get('/switch/1/off', (req, res) => {
    switchController.tvOff().then(response =>
      res.json(response).status(200));
  });