Skip to product information

Nano V3.0 ATMEGA328P Development Board (TYPE C)
R 130.98 ZAR
The Nano V3.0 ATMEGA328P Development Board (TYPE C) offers a compact yet powerful platform for embedded development. Featuring the ATMEGA328P microcontroller and a modern USB Type-C interface, it ensures efficient programming and reliable connectivity. Its small form factor supports versatile prototyping, making it ideal for advanced projects requiring precision control and seamless integration. This board provides professionals with a stable and flexible base to develop and test complex applications effectively.
Pickup currently not available

PRODUCT INFORMATION
Specifications
Spec | Value |
---|---|
MCU | ATMEGA328P |
Digital I/O Pins | 14 (D0–D13) |
Operating Voltage | 5V |
EEPROM | 1KB |
SRAM | 2KB |
LED_BUILTIN | D13 |
Clock Speed | 16 MHz |
Analog Input Pins | 6 (A0–A5) |
DC Current per I/O Pin | 40 mA |
Input Voltage (Recommended) | USB 5V |
PWM Digital I/O Pins | 6 (D3, D5, D6, D9, D10, D11) |
Flash Memory | 32KB (2KB used by bootloader) |
Operating Temperature | 0°C ~ 50°C |
Development Board Size | 18mm × 45mm × 18mm |
Development Board Weight | 6.0g |
int redPin = 12; |
void setup() { |
// initialize Leds |
pinMode(redPin, OUTPUT); |
} |
void loop() { |
digitalWrite(redPin, HIGH); |
delay(1000); |
digitalWrite(redPin, LOW); |
delay(1000); |
} |