

The Arch V1.1, manufactured by Seeed Studio (Part ID: Arch V1.1), is a versatile architecture board designed for prototyping and testing various electronic circuits. It features multiple input/output options and is compatible with a wide range of sensors and modules, making it an excellent choice for both beginners and experienced developers. The board is based on the ARM Cortex-M0 microcontroller and supports mbed development, providing a robust platform for rapid prototyping.








The Arch V1.1 is equipped with a powerful microcontroller and a variety of features to support diverse applications. Below are the key technical details:
| Specification | Value |
|---|---|
| Microcontroller | NXP LPC11U35FHI33 (ARM Cortex-M0) |
| Operating Voltage | 3.3V |
| Input Voltage (via USB) | 5V |
| Flash Memory | 64 KB |
| RAM | 10 KB |
| Clock Speed | 48 MHz |
| Communication Interfaces | UART, I2C, SPI, USB |
| GPIO Pins | 17 |
| Analog Input Pins | 6 |
| Digital I/O Pins | 17 |
| Dimensions | 54 mm x 25 mm |
| Weight | 10 g |
The Arch V1.1 features a standard pinout for easy integration with other components. Below is the pin configuration:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | VCC | 3.3V Power Supply |
| 2 | GND | Ground |
| 3 | A0 | Analog Input 0 |
| 4 | A1 | Analog Input 1 |
| 5 | A2 | Analog Input 2 |
| 6 | A3 | Analog Input 3 |
| 7 | A4 | Analog Input 4 |
| 8 | A5 | Analog Input 5 |
| 9 | D0 | Digital I/O 0 (UART RX) |
| 10 | D1 | Digital I/O 1 (UART TX) |
| 11 | D2 | Digital I/O 2 |
| 12 | D3 | Digital I/O 3 (PWM) |
| 13 | D4 | Digital I/O 4 |
| 14 | D5 | Digital I/O 5 (PWM) |
| 15 | D6 | Digital I/O 6 (PWM) |
| 16 | D7 | Digital I/O 7 |
| 17 | USB | USB Interface for Power and Programming |
The Arch V1.1 is designed for ease of use, making it suitable for a wide range of applications. Follow the steps below to get started:
Although the Arch V1.1 is not an Arduino board, it can interface with Arduino-compatible sensors and modules. Below is an example of interfacing an analog sensor:
#include "mbed.h"
// Define the analog input pin
AnalogIn sensor(A0);
// Define the LED output pin
DigitalOut led(D3);
int main() {
while (true) {
float sensorValue = sensor.read(); // Read the analog value (0.0 to 1.0)
// If the sensor value exceeds 0.5, turn on the LED
if (sensorValue > 0.5) {
led = 1; // Turn on the LED
} else {
led = 0; // Turn off the LED
}
wait(0.1); // Wait for 100 ms
}
}
Board Not Recognized by Computer:
Program Not Running:
Incorrect Sensor Readings:
Overheating:
By following this documentation, you can effectively utilize the Arch V1.1 for your prototyping and development needs.