

The Arch Pro V1.0, manufactured by Seeed Studio (Part ID: Arch Pro), is a versatile and high-performance development board designed for advanced electronic projects. It is based on the NXP LPC1768 microcontroller, which features a 32-bit ARM Cortex-M3 core. The board is compatible with mbed, an online development platform, making it an excellent choice for both beginners and experienced developers.








The Arch Pro V1.0 offers a wide range of features and capabilities. Below are the key technical details:
| Feature | Specification |
|---|---|
| Microcontroller | NXP LPC1768 (ARM Cortex-M3, 32-bit) |
| Operating Voltage | 3.3V |
| Input Voltage Range | 4.5V to 12V |
| Clock Speed | 96 MHz |
| Flash Memory | 512 KB |
| RAM | 32 KB |
| Digital I/O Pins | 40 |
| Analog Input Pins | 6 |
| PWM Output Pins | 6 |
| Communication Interfaces | UART, SPI, I2C, CAN, USB |
| Debugging Interface | SWD (Serial Wire Debug) |
| Dimensions | 84 mm x 53 mm |
The Arch Pro V1.0 features a 40-pin interface. Below is the pinout description:
| Pin Number | Pin Name | Functionality |
|---|---|---|
| 1 | P0.0 | Digital I/O, UART TXD0 |
| 2 | P0.1 | Digital I/O, UART RXD0 |
| 3 | P0.2 | Digital I/O, PWM1.1 |
| 4 | P0.3 | Digital I/O, PWM1.2 |
| 5 | P0.4 | Analog Input (ADC0.6) |
| 6 | P0.5 | Analog Input (ADC0.7) |
| ... | ... | ... |
| 40 | GND | Ground |
| Pin Number | Pin Name | Description |
|---|---|---|
| 3V3 | 3.3V | Regulated 3.3V output |
| VIN | VIN | Input voltage (4.5V to 12V) |
| GND | GND | Ground connection |
The Arch Pro V1.0 is designed to be user-friendly and compatible with the mbed development platform. Follow the steps below to get started:
.bin file onto the board to program it.The Arch Pro V1.0 supports programming in C/C++ using the mbed online compiler. Below is an example code snippet to blink an LED connected to pin P0.2:
#include "mbed.h"
// Define an LED object connected to pin P0.2
DigitalOut led(P0_2);
int main() {
while (true) {
led = 1; // Turn the LED on
wait(0.5); // Wait for 500 milliseconds
led = 0; // Turn the LED off
wait(0.5); // Wait for 500 milliseconds
}
}
The board is not recognized by the computer.
Code does not execute after uploading.
.bin file is correctly compiled for the Arch Pro V1.0.Peripherals are not working as expected.
Q: Can I use the Arch Pro V1.0 with Arduino IDE?
A: No, the Arch Pro V1.0 is designed for use with the mbed platform and is not compatible with the Arduino IDE.
Q: What is the maximum current output of the 3.3V pin?
A: The 3.3V pin can supply a maximum current of 50 mA.
Q: Does the board support wireless communication?
A: The Arch Pro V1.0 does not have built-in wireless capabilities, but you can connect external Wi-Fi or Bluetooth modules via UART, SPI, or I2C.
By following this documentation, you can effectively utilize the Arch Pro V1.0 for your electronic projects.