Arduino UNO R3 DIP is the 3rd generation Arduino series just like the previous versions to help users easily access programming to create the hardware with the desired features quickly with reasonable fee.
With Arduino UNO R3 DIP you can apply to simple circuits such as light sensor switches on and off lights, motor control circuits, application sensors, ... or higher you can make products. such as 3D printers, robots, hot air balloons, drones, and other large applications.
SPECIFICATIONS:
Code test for Arrduino Uno r3: LED BUILTIN
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
}
update
...