1# Development Board Usage 2 3## How do I take screenshots on a development board? 4 5Applicable to: OpenHarmony SDK 3.2.2.5, stage model of API version 9 6 7- Method 1: Click the screenshot button in the Control Panel from the development board UI. The screenshot is displayed in Gallery. 8 9- Method 2: Run the screenshot script. Connect to the development board to a computer running Windows. Create a text file on the computer, copy the following script content to the file, change the file name extension to **.bat** (the HDC environment variables must be configured in advance), and click **Run**. The screenshot is saved to the same directory as the **.bat** script file. 10 Example: 11 12 13 ``` 14 set filepath=/data/%date:~0,4%%date:~5,2%%date:~8,2%%time:~1,1%%time:~3,2%%time:~6,2%.png 15 echo %filepath% 16 : pause 17 hdc_std shell snapshot_display -f %filepath% 18 : pause 19 hdc_std file recv %filepath% . 20 : pause 21 ``` 22 23## How do I adjust Previewer in DevEco Studio so that the preview looks the same as what's displayed on a real RK3568 development board? 24 25Applicable to: DevEco Studio 3.0.0.991 26 271. Create a profile in Previewer. 28 29  30 312. Set the profile parameters as follows: 32 Device type : default 33 34 Resolution: 720\*1280 35 36 DPI: 240 37 38## What should I do if Device Manager incorrectly identifies a development board as FT232R USB UART even when the development board already has a driver installed? 39 40Possible cause: The USB serial driver of the development version is not installed. 41 42Solution: Search for **FT232R USB UART**, and download and install the driver. 43 44## How do I complete authentication when logging in to the development board? 45 46Applicable to: OpenHarmony SDK 3.2.2.5 47 48When connecting to the network that requires authentication, open any web page in the browser to access the authentication page. 49 50If there is no browser on the development board, you can install the [sample browser application](https://gitee.com/openharmony/app_samples/tree/master/device/Browser). 51