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