I've created 2 batch files to connect easily my Onyx Note by usb cable and adb.
The first file is:
Code:
@echo off
cd /d C:\adb\platform-tools\
ChangeScreenResolution.exe /w=800 /h=600 /f=60 /b=32 /d=0
adb reverse tcp:5900 tcp:5900
The second one is:
Code:
@echo off
cd /d C:\adb\platform-tools\
ChangeScreenResolution.exe /w=1600 /h=900 /f=60 /b=32 /d=0
The second file just restores the default resolution of my laptop (1600x900). I've download
this small app to change easily the resolution of the screen and I moved it in the adb folder. When I want to use my Onyx Note as external screen I connect the usb cable and I click the first file. In this way on Onyx Note I have just to open bVNC and click "Connect". I just wanted to share what I've learned :-)