Wired Mirroring
scrcpy is an open-source Android screen mirroring and control tool. To use it independently, install scrcpy and configure a working adb environment. Connect the glasses and computer with the Glass3 data debugging cable to view the glasses screen in real time.
Wired Steps
- Connect the glasses and computer with the Glass3 data debugging cable.
- Confirm that ADB detects the device:
bash
adb devices- After the device state becomes
device, start mirroring:
bash
scrcpy -s <glasses-serial-number>If only one Android device is connected, you can also run:
bash
scrcpyReferences
- GitHub: https://github.com/Genymobile/scrcpy
- Releases: https://github.com/Genymobile/scrcpy/releases
- Cable notes in Quick Start: Confirm the cable and projection tool
Optional for Developers: Switch to Wireless ADB Manually
For manual wireless ADB troubleshooting, connect the glasses over the data cable first and then run the following commands. Regular users should use RokidMirror wireless mirroring instead.
- Confirm the device is online:
bash
adb devices- Enable the ADB TCP port:
bash
adb tcpip 5555- Read the glasses IP address from
wlan0:
bash
adb shell ip addr show wlan0- Connect and start mirroring:
bash
adb connect <glasses-ip>:5555
scrcpy -s <glasses-ip>:5555Troubleshooting
| Symptom | Check |
|---|---|
adb devices does not show the glasses | Use the Glass3 data debugging cable and verify USB debugging. |
adb connect fails | Confirm that the computer can reach the glasses IP, peer-to-peer access is allowed, and the firewall is not blocking the connection. |
| Mirroring is laggy | Use a more stable Wi-Fi network or return to wired mirroring. |
| Wireless access is lost after reboot | Some environments require running adb tcpip 5555 again over the data cable after reboot. |