Skip to content

Hardware Driver

Standard Driver

In the event that you choose not to use the Windows image file that we have provided, you may encounter driver issues. We recommend utilizing Windows Update to obtain the most up-to-date drivers. Most drivers can be installed correctly, including WiFi, Ethernet, and graphics drivers.

If you encounter any unknown devices in the device manager, please refer to the following guidelines.

All hardware drivers have been packaged in our Windows operating system, which allows you to download the driver files directly. Although these drivers may not be the latest versions available, they function seamlessly on both Windows 10 and 11.

How to install the driver of the unknown device?

  • Download the driver files from Dropbox Link or Google Drive.

  • Unzip the driver files. You could unzip them in the same folder.

  • Most drivers can be installed by double-clicking the .exe file.
    Some need to be installed manually, the steps are as follows:

  • Open the device manager, then select the unknown device.

    Right Click -> Update driver -> Select "Browse my computer for drivers" and locate the folder where you have unzipped the driver files.

  • Then click "Next" and the driver will automatically install.

Touch Panel Driver

Please note that “install.bat” must be run as administrator to update the driver correctly.

LattePanda Leonardo Driver and IDE Configuration

The LattePanda Leonardo is different from the standard Arduino Leonardo. The IDE configuration files and drivers are not the same.

In Windows OS

The official windows 10/11 system image provided by LattePanda team has integrated drivers and configuration files. So if you installed the Windows system by yourself, please configure the driver and IDE files according to the following steps.

  • Download the Arduino IDE. Then install it on your windows 10/11 system. We use the Arduino IDE 1.8.16.

  • Download the LattePanda Leonardo configuration files from Dropbox Link or Google Drive Link. Then unzip it.

  • Enter into "Windows Driver" folder, and run "dpinst-amd64.exe" to install the driver. After that, you will see the LattePanda Leonardo port in the device manager.

  • Enter into "Arduino IDE Files" folder, copy "avr-0.0.3" folder to "C:\Program Files(x86)\Arduino\hardware".

  • Run Arduino IDE,Open “Tool” menu,Choose “Board:xxx” -> “LattePanda AVR Boards”->“LattePanda Leonardo”. If you see “LattePanda Leonardo” board, the Arduino IDE files are correct.

In Ubuntu OS

We take the ubuntu OS as an example to demonstrate how to install Arduino IDE and configure Lattepanda Leonardo.

  • Download the Arduino IDE. We choose the Linux 64 bits version of Arduino IDE 1.8.16.

  • Unzip the downloaded arduino-1.8.16-linux64.tar.xz file. You can do this in terminal with the following command:

tar -xvf arduino-1.8.16-linux64.tar.xz
This will unzip the Arduino IDE into the current directory.

  • Move the Arduino IDE to the /opt directory. This is where third-party software is typically stored in Linux systems. Run the following command:
sudo mv arduino-1.8.16 /opt
  • Navigate to the Arduino IDE directory:
cd /opt/arduino-1.8.16
  • Run the installation script:

sudo ./install.sh
This will create a desktop shortcut and register the Arduino IDE in the system's application menu.

  • To be able to upload code to the Arduino board without root permissions, add the current user to the dialout group. Run the following command:

sudo usermod -a -G dialout $USER
* You will then need to log out and log back in for the changes to take effect. This completes the installation of the Arduino IDE on your Ubuntu system.

  • Download the LattePanda Leonardo configuration files from Dropbox Link or Google Drive Link. Then unzip it.

  • Enter into "Arduino IDE Files" folder, copy "avr-0.0.3" folder to "/opt/arduino-1.8.16/hardware".

  • Run Arduino IDE,Open “Tool” menu,Choose “Board:xxx” -> “LattePanda AVR Boards”->“LattePanda Leonardo”.

  • Then choose the serial port: “Port: /dev/ttyACM0 xxx” -> “/dev/ttyACM0(LattePanda Leonardo)”.