0% found this document useful (0 votes)
30 views

Instalación de Arduino

The document provides instructions for installing Arduino software and drivers. It describes downloading the Arduino software from the Arduino website, unzipping the file, plugging in an Arduino UNO board, updating the driver software from the Arduino folder, and verifying the installation by uploading a Blink example sketch to make an LED flash on and off.

Uploaded by

Thelma Morales
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
30 views

Instalación de Arduino

The document provides instructions for installing Arduino software and drivers. It describes downloading the Arduino software from the Arduino website, unzipping the file, plugging in an Arduino UNO board, updating the driver software from the Arduino folder, and verifying the installation by uploading a Blink example sketch to make an LED flash on and off.

Uploaded by

Thelma Morales
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 9

9/5/2015

Instalacin de Arduino

https://www.arduino.cc/

9/5/2015

Download
Windows ZIP file for non admin install

Unzip
Ejecutar arduino.exe

9/5/2015

Plug Arduino UNO

Inicio
Equipo
Click derecho
Propiedades

9/5/2015

Administrador de dispositivos >> Dispositivo desconocido


Click derecho >> Actualizar software de controlador

Buscar software de controlador en el equipo

9/5/2015

Examinar
\Desktop\arduino-1.6.5-r4\drivers
Aceptar
Siguiente

Instalar

9/5/2015

Cerrar

Arduino UNO (COM3)

9/5/2015

Herramientas >> Puerto >> COM3

Archivo >> Ejemplos >> 01. Basics


>> Blink

9/5/2015

1. Verificar

2. Subir

El LED enciende por 1 seg., posteriormente


se apaga por 1 seg., repetidamente

9/5/2015

Arduino / Genuino UNO


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

Analog Input Pins

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

Length

68.6 mm

Width

53.4 mm

Weight

25 g

Memory
The ATmega328 has 32 KB (with 0.5 KB occupied by the bootloader). It also has 2 KB
of SRAM and 1 KB of EEPROM (which can be read and written with the EEPROM
library).
Input and Output
Serial: 0 (RX) and 1 (TX). Used to receive (RX) and transmit (TX) TTL serial data.
These pins are connected to the corresponding pins of the ATmega8U2 USB-to-TTL
Serial chip.
External Interrupts: 2 and 3. These pins can be configured to trigger an interrupt
on a low value, a rising or falling edge, or a change in value. See the
attachInterrupt() function for details.
PWM: 3, 5, 6, 9, 10, and 11. Provide 8-bit PWM output with the analogWrite()
function.
SPI: 10 (SS), 11 (MOSI), 12 (MISO), 13 (SCK). These pins support SPI
communication using the SPI library.
TWI: A4 or SDA pin and A5 or SCL pin. Support TWI communication using the Wire
library.

You might also like