

The Lattepanda 3 Delta is a high-performance single-board computer (SBC) manufactured by Lattepanda. It combines the power of an Intel processor with an integrated Arduino Leonardo co-processor, making it a versatile platform for IoT applications, robotics, and embedded systems. With its compact design and robust connectivity options, the Lattepanda 3 Delta is ideal for developers, hobbyists, and engineers looking to build innovative projects.








| Specification | Details |
|---|---|
| Processor | Intel Celeron N5105 (Quad-Core, up to 2.9 GHz) |
| Co-Processor | Arduino Leonardo (ATmega32U4) |
| RAM | 8GB LPDDR4 |
| Storage | 64GB eMMC (expandable via M.2 PCIe SSD or microSD card) |
| Operating System | Windows 10/11, Linux (Ubuntu, Debian, etc.) |
| Connectivity | Wi-Fi 6, Bluetooth 5.2, Gigabit Ethernet |
| Display Output | HDMI 2.0 (4K@60Hz) |
| USB Ports | 3x USB 3.2 Gen 2, 1x USB Type-C (supports power delivery and data transfer) |
| GPIO Pins | 24 GPIO pins (compatible with Arduino IDE) |
| Power Input | 5V/4A via USB Type-C |
| Dimensions | 125mm x 78mm x 16mm |
| Pin | Function | Description |
|---|---|---|
| D0-D13 | Digital I/O | General-purpose digital input/output pins |
| A0-A5 | Analog Input | Analog input pins (10-bit resolution) |
| GND | Ground | Ground connection |
| 5V | Power Output | 5V power output for external components |
| 3.3V | Power Output | 3.3V power output for external components |
| SDA | I2C Data Line | Used for I2C communication |
| SCL | I2C Clock Line | Used for I2C communication |
| TX/RX | UART Communication | Serial communication pins (TX for transmit, RX for receive) |
| Port | Function | Description |
|---|---|---|
| USB Type-C | Power and Data | Provides power input and supports data transfer |
| HDMI | Display Output | Outputs video and audio to external displays |
| Ethernet | Network Connectivity | Gigabit Ethernet port for wired network connections |
| USB 3.2 Gen 2 | Peripheral Connectivity | High-speed USB ports for peripherals like keyboards, mice, and more |
Powering the Board:
Connecting Peripherals:
Using the Arduino Co-Processor:
Installing an Operating System:
Networking:
Below is an example of how to blink an LED connected to pin D13 using the Arduino IDE:
// Blink an LED connected to pin D13 on the Arduino Leonardo co-processor
void setup() {
pinMode(13, OUTPUT); // Set pin D13 as an output
}
void loop() {
digitalWrite(13, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(13, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
The board does not power on:
No display output on the monitor:
Arduino co-processor not detected in the Arduino IDE:
Wi-Fi or Bluetooth not working:
Overheating during operation:
Can I use the Lattepanda 3 Delta with a battery?
What operating systems are supported?
Is the Arduino co-processor programmable independently?
Can I expand the storage?
Does the board support 4K video output?
This concludes the documentation for the Lattepanda 3 Delta. For further assistance, refer to the official Lattepanda website or community forums.