Skip to product information

UNO R3 Mega328P CH340 Development Board (TYPE C)
R 131.98 ZAR
The UNO R3 Mega328P CH340 Development Board (TYPE C) is a versatile microcontroller platform designed for professional prototyping and embedded system projects. Featuring the robust ATmega328P chipset, it offers efficient processing and reliable performance. The integrated CH340 USB-to-serial converter ensures seamless communication via a modern TYPE C interface, enhancing connectivity and ease of programming. This board supports extensive development flexibility with multiple digital and analog I/O pins, making it ideal for precise control, sensor integration, and embedded applications requiring expert-level reliability and functionality.
Pickup currently not available

PRODUCT INFORMATION
Specifications
Spec | Value |
---|---|
Microcontroller | ATmega328P |
Operating Voltage | 5V |
Input Voltage (recommended) | 7–12V |
Input Voltage (limit) | 6–20V |
Digital I/O Pins | 14 (of which 6 provide PWM output) |
PWM Digital I/O Pins | 6 |
Analog Input Pins | 6 |
DC Current per I/O Pin | 20 mA |
DC Current for 3.3V Pin | 50 mA |
Flash Memory | 32 KB (ATmega328P), of which 0.5 KB used by bootloader |
SRAM | 2 KB (ATmega328P) |
EEPROM | 1 KB (ATmega328P) |
Clock Speed | 16 MHz |
LED_BUILTIN | 13 |
Length | 68.6 mm |
Width | 53.4 mm |
Weight | 25 g |
Adapter | Type C |
// Blink - Arduino Official Example |
// Toggles the built-in LED on and off every second. |
// the setup function runs once when you press power or reset |
void setup() { |
// initialize digital pin LED_BUILTIN as an output. |
pinMode(LED_BUILTIN, OUTPUT); |
} |
// the loop function runs over and over again forever |
void loop() { |
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level) |
delay(1000); // wait for a second |
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW |
delay(1000); // wait for a second |
} |