Hello how to start arduino uno board?

bertus

Joined Apr 5, 2008
22,940
Hello,

Did you read the specs?

Technical specs
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

This was found on this page:
https://www.arduino.cc/en/Main/ArduinoBoardUno

Bertus
 

ericgibbs

Joined Jan 29, 2010
21,463
what is use of adapter pin and what is rating 5V or 12V?
The DC input adaptor requires a 9V DC supply, which powers the onboard 5V and 3.3V regulators.

When connected to a PC via a USB, the 5V is supplied by the PC/USB, the external 9V DC input is not required.

Read the spec' Bertus has posted to get a complete picture of the Voltage source requirements.
 

absf

Joined Dec 29, 2010
1,968
You can try the codes here

C:
/*
  Blink
  Turns on an LED on for one second, then off for one second, repeatedly.
  This example code is in the public domain.
*/

void setup() {               
  // initialize the digital pin as an output.
  // Pin 13 has an LED connected on most Arduino boards:
  pinMode(13, OUTPUT);    
}

void loop() {
  digitalWrite(13, HIGH);   // set the LED on
  delay(1000);              // wait for a second
  digitalWrite(13, LOW);    // set the LED off
  delay(1000);              // wait for a second
}
Allen
 

bertus

Joined Apr 5, 2008
22,940
Hello,

Did you look at the page I gave you before?
There is an image to follow, wich will give you the example program for blink:



Bertus
 
Top