Skip to content

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

  1. Connect the glasses and computer with the Glass3 data debugging cable.
  2. Confirm that ADB detects the device:
bash
adb devices
  1. 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
scrcpy

References

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.

  1. Confirm the device is online:
bash
adb devices
  1. Enable the ADB TCP port:
bash
adb tcpip 5555
  1. Read the glasses IP address from wlan0:
bash
adb shell ip addr show wlan0
  1. Connect and start mirroring:
bash
adb connect <glasses-ip>:5555
scrcpy -s <glasses-ip>:5555

Troubleshooting

SymptomCheck
adb devices does not show the glassesUse the Glass3 data debugging cable and verify USB debugging.
adb connect failsConfirm that the computer can reach the glasses IP, peer-to-peer access is allowed, and the firewall is not blocking the connection.
Mirroring is laggyUse a more stable Wi-Fi network or return to wired mirroring.
Wireless access is lost after rebootSome environments require running adb tcpip 5555 again over the data cable after reboot.