

The Intel Edison Arduino Expansion Board is a development platform designed to extend the functionality of the Intel Edison module. It provides Arduino-compatible headers, making it easy to integrate with a wide range of sensors, actuators, and shields. This board is ideal for rapid prototyping, Internet of Things (IoT) applications, and projects requiring Arduino compatibility.








The Intel Edison Arduino Expansion Board is designed to interface seamlessly with the Intel Edison module, offering a variety of features to support development.
The Arduino-compatible headers on the expansion board follow the standard Arduino Uno pinout. Below is a detailed description of the pins:
| Pin Number | Function | Description |
|---|---|---|
| D0 | RX (UART) | Serial communication receive pin |
| D1 | TX (UART) | Serial communication transmit pin |
| D2–D13 | Digital I/O | General-purpose digital input/output |
| D3, D5, D6, D9, D10, D11 | PWM | Pulse-width modulation capable pins |
| Pin Number | Function | Description |
|---|---|---|
| A0–A5 | Analog Input | 10-bit ADC for reading analog signals |
| Pin Name | Voltage | Description |
|---|---|---|
| VIN | 7V–15V | Input voltage from external power source |
| 5V | 5V | Regulated 5V output |
| 3.3V | 3.3V | Regulated 3.3V output |
| GND | 0V | Ground connection |
| Interface | Pins | Description |
|---|---|---|
| UART | D0 (RX), D1 (TX) | Serial communication |
| I2C | A4 (SDA), A5 (SCL) | Inter-integrated circuit communication |
| SPI | D10 (SS), D11 (MOSI), D12 (MISO), D13 (SCK) | Serial Peripheral Interface |
Below is an example of how to blink an LED connected to pin D13:
// Blink an LED connected to pin D13 on the Intel Edison Arduino Expansion Board
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
}
Q: Can I use standard Arduino shields with this board?
A: Yes, the Intel Edison Arduino Expansion Board is designed to be compatible with most Arduino Uno shields.
Q: Does the board support Wi-Fi or Bluetooth?
A: The Intel Edison module includes built-in Wi-Fi and Bluetooth capabilities. These features can be accessed through the appropriate libraries and tools.
Q: How do I update the Intel Edison firmware?
A: Use the Intel Edison Setup Tool or follow the instructions on Intel's official website to update the firmware.
Q: Can I power the board using only USB?
A: Yes, the board can be powered via the micro-USB port, but ensure the connected USB port can supply sufficient current for your application.
Q: What is the maximum current output of the 5V and 3.3V pins?
A: The maximum current output depends on the power source and the Intel Edison module's power consumption. Refer to the Intel Edison datasheet for detailed power specifications.