

The LattePanda 3 Delta is a compact single-board computer that combines the power of an Intel processor with the versatility of an Arduino co-processor. This unique combination makes it an ideal choice for a wide range of applications, including Internet of Things (IoT) projects, robotics, and various DIY electronics projects. With its robust processing capabilities and extensive I/O options, the LattePanda 3 Delta is designed to meet the needs of both hobbyists and professionals.








| Specification | Details | 
|---|---|
| Processor | Intel Celeron N5105 Quad-Core | 
| Co-Processor | ATmega32u4 (Arduino Leonardo compatible) | 
| RAM | 8GB LPDDR4 | 
| Storage | 64GB eMMC | 
| Operating System | Windows 10, Linux | 
| Power Supply | 5V/4A DC | 
| Dimensions | 115mm x 78mm x 14mm | 
| Weight | 92g | 
| Pin Number | Pin Name | Description | 
|---|---|---|
| 1 | 3.3V | 3.3V Power Output | 
| 2 | 5V | 5V Power Output | 
| 3 | GND | Ground | 
| 4 | GPIO0 | General Purpose I/O | 
| 5 | GPIO1 | General Purpose I/O | 
| 6 | TX | UART Transmit | 
| 7 | RX | UART Receive | 
| 8 | I2C_SCL | I2C Clock | 
| 9 | I2C_SDA | I2C Data | 
| 10 | SPI_MOSI | SPI Master Out Slave In | 
| 11 | SPI_MISO | SPI Master In Slave Out | 
| 12 | SPI_SCK | SPI Clock | 
| 13 | SPI_SS | SPI Slave Select | 
| Pin Number | Pin Name | Description | 
|---|---|---|
| 1 | D0 | Digital I/O | 
| 2 | D1 | Digital I/O | 
| 3 | D2 | Digital I/O | 
| 4 | D3 | Digital I/O (PWM) | 
| 5 | D4 | Digital I/O | 
| 6 | D5 | Digital I/O (PWM) | 
| 7 | D6 | Digital I/O (PWM) | 
| 8 | D7 | Digital I/O | 
| 9 | D8 | Digital I/O | 
| 10 | D9 | Digital I/O (PWM) | 
| 11 | D10 | Digital I/O (PWM) | 
| 12 | D11 | Digital I/O (PWM) | 
| 13 | D12 | Digital I/O | 
| 14 | D13 | Digital I/O (LED) | 
| 15 | A0 | Analog Input | 
| 16 | A1 | Analog Input | 
| 17 | A2 | Analog Input | 
| 18 | A3 | Analog Input | 
| 19 | A4 | Analog Input | 
| 20 | A5 | Analog Input | 
Board Not Powering On
Arduino Co-Processor Not Recognized
Overheating
Peripheral Not Working
Here is an example code to blink an LED connected to the Arduino co-processor:
// Blink an LED connected to digital pin 13
void setup() {
  // Initialize digital pin 13 as an output.
  pinMode(13, OUTPUT);
}
void loop() {
  // Turn the LED on (HIGH is the voltage level)
  digitalWrite(13, HIGH);
  delay(1000); // Wait for a second
  // Turn the LED off by making the voltage LOW
  digitalWrite(13, LOW);
  delay(1000); // Wait for a second
}
This code will blink an LED connected to digital pin 13 on the Arduino co-processor every second.
By following this documentation, users can effectively utilize the LattePanda 3 Delta in their projects, ensuring optimal performance and reliability.