# ADB कमांड्स के साथ उन्नत सेटअप

#### पूर्वापेक्षाएँ

* एक लैपटॉप और आपका Android TV इससे कनेक्टेड हो **समान Wi‑Fi नेटवर्क**
* **डेवलपर विकल्प** आपके टीवी पर सक्षम
* **वायरलेस डिबगिंग** आपके टीवी पर सक्षम

<details>

<summary>डेवलपर विकल्प कैसे सक्षम करें</summary>

पर जाएँ **सेटिंग्स** (गियर आइकन) → **सिस्टम** या **के बारे में** → ढूँढें **Android TV OS build** या **बिल्ड नंबर** → "You are now a developer!" दिखाई देने तक 7 से 8 बार तेज़ी से क्लिक करें

</details>

<figure><img src="/files/80e6ec0022e2093a7518ddd93250583da797ed93" alt=""><figcaption></figcaption></figure>

#### चरण 1: वायरलेस डिबगिंग सक्षम करें

1. पर जाएँ **सेटिंग्स** → **सिस्टम** → **डेवलपर विकल्प**
2. सक्षम करें **वायरलेस डिबगिंग**
3. नोट करें **IP पता, पोर्ट, और पेयरिंग कोड** जो स्क्रीन पर दिखाया गया है

<figure><img src="/files/d16c5658102601dd654f5c2bd6e0b8756db07db6" alt=""><figcaption></figcaption></figure>

#### चरण 2: अपने लैपटॉप को टीवी के साथ पेयर करें

अपने लैपटॉप पर एक टर्मिनल खोलें और यह चलाएँ:

{% code lineNumbers="true" expandable="false" %}

```bash
adb pair IP:PORT
```

{% endcode %}

उदाहरण: `adb pair 192.168.1.130:37081`

प्रॉम्प्ट आने पर पेयरिंग कोड दर्ज करें। पेयरिंग सफल होने के बाद, टीवी एक नया कनेक्शन पोर्ट दिखाएगा (आमतौर पर समाप्त होता है `:5555`).

#### चरण 3: टीवी से कनेक्ट करें

{% code lineNumbers="true" expandable="false" %}

```bash
adb connect IP:5555
```

{% endcode %}

उदाहरण: `adb connect 192.168.1.50:5555`

#### चरण 4: Buzzblender को स्क्रीनसेवर के रूप में सेट करें

स्क्रीनसेवर सक्षम करने और Buzzblender को डिफ़ॉल्ट के रूप में सेट करने के लिए ये कमांड चलाएँ:

{% code lineNumbers="true" expandable="false" %}

```bash
adb shell settings put secure screensaver_enabled 1
adb shell settings put secure screensaver_activate_on_sleep 1
adb shell settings put secure sleep_timeout -1
adb shell settings put secure screensaver_components com.buzzblender.tv/.playback.PlaybackDreamService
adb shell settings put system screen_off_timeout 30000
```

{% endcode %}

प्रत्येक कमांड क्या करता है:

* `screensaver_enabled 1` — स्क्रीनसेवर सक्षम करता है
* `screensaver_activate_on_sleep 1` — डिवाइस के स्लीप होने पर स्क्रीनसेवर सक्रिय करता है
* `sleep_timeout -1` — स्लीप टाइमआउट प्रतिबंधों को अक्षम करता है
* `screensaver_components com.buzzblender.tv/.playback.PlaybackDreamService` — Buzzblender को डिफ़ॉल्ट स्क्रीनसेवर के रूप में सेट करता है (यह वही सेटिंग है जिसे Google ने UI से हटा दिया था)
* `screen_off_timeout 30000` — निष्क्रियता के 30 सेकंड बाद स्क्रीन बंद होने के लिए सेट करता है

#### चरण 5: सेटअप सत्यापित करें

अपने Android TV को 30 सेकंड के लिए निष्क्रिय रहने दें। अब Buzzblender को स्क्रीनसेवर के रूप में आपकी सामग्री दिखानी चाहिए।

ADB सेटअप में मदद चाहिए? ईमेल करें <help@buzzblender.com> सपोर्ट टीम के साथ सेटअप कॉल शेड्यूल करने के लिए।


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://buzzblender.gitbook.io/buzzblender-docs/docs-hi/adb.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
