public IEnumerator check()
    {
        HTTP.Request checkDevice = new HTTP.Request("get", ServerInfo.serverURL + "/"
                                                    + ServerInfo.API + "/"
                                                    + ServerInfo.deviceApi + "/"
                                                    + ServerInfo.device.getUniqueId());
        checkDevice.Send();

        while (!checkDevice.isDone)
        {
            yield return(new WaitForSeconds(0.1f));
        }

        deviceObject = new JSONObject(checkDevice.response.Text);

        if (deviceObject[2].ToString().Contains("EVET"))
        {
            Debug.Log("Ozel ayarlar VAR");
            DateTime baslangicSaati = DateTime.Parse(deviceObject[3].ToString().Trim('"'));
            DateTime bitisSaati     = DateTime.Parse(deviceObject[4].ToString().Trim('"'));
            Debug.Log("****************************************************************");
            Debug.Log("Başlangıc: " + baslangicSaati + "  | Bitis: " + bitisSaati);
            Debug.Log("****************************************************************");
            controller.saatleriAyarla(baslangicSaati, bitisSaati);
        }
        else
        {
            Debug.Log("Ozel ayarlar YOK");
            getGeneralTimeSettings();
        }
    }