Jarod Adolfo Posted July 6, 2023 Posted July 6, 2023 How to adjust the resolution of the armbian so that the display would fit I'm using a 3.2" ILI9341 TFT LCD I also followed this tutorial https://mobile4dev.blogspot.com/2017/09/orange-pi-pc-tft-ili9341.html 0 Quote
Tim Steve Posted July 6, 2023 Posted July 6, 2023 Connect to your Armbian device via SSH or access its command line interface. Open the /boot/armbianEnv.txt file using a text editor. You can use the nano editor by running the following command: sudo nano /boot/armbianEnv.txt Look for the line that starts with disp_mode or extraargs. If you find extraargs, add disp_mode after it. Modify the line to include the appropriate display resolution. For example: extraargs=fbcon=map:10 console=ttyS0,115200 disp_mode=320x240 Save the changes and exit the text editor. In nano, you can press Ctrl + O to save and Ctrl + X to exit. Reboot your Armbian device for the changes to take effect. You can do this by running: sudo reboot After the reboot, the display resolution should be adjusted to fit your TFT LCD. 0 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.