lunes, 2 de octubre de 2017

Programar arduino pro mini

PROGRAMAR ARDUINO PRO MINI 5V CON USB TO SERIAL CP1202



Este programador usb no tiene pin DTR por lo tanto solo se conecta los siguientes pines
TXO     ->      RXD
RXI     <-       TXD
VCC    <-       5V    
GND    <-       GND

Se debe instalar el driver del programador usb en el siguiente link
https://www.silabs.com/products/development-tools/software/usb-to-uart-bridge-vcp-drivers


En el programa arduino https://www.arduino.cc/en/Main/Software
Se debe configurar la tarjeta y el puerto serial
Arduino pro or pro mini
Com8
Configurar el programador AVR ISP

Se escribe un codigo sencillo y se prueba con el led del pin13 del arduino

int ledPin = 13;                 // LED default pin 13
void setup()                    // run once, when the sketch starts
{
  pinMode(ledPin, OUTPUT);      // sets the digital pin as output
}
void loop()                     // run over and over again
{
  digitalWrite(ledPin, HIGH);   // sets the LED on
  delay(5000);                  // waits for a second
  digitalWrite(ledPin, LOW);    // sets the LED off
  delay(2000);                  // waits for a second
}

Como arduino no podra researt automaticamente por que no esta conectado el pin DTR

Entonces cuando se vaya a cargar el programa se debe tener presionado el botón reset del arduino pro mini

No hay comentarios:

Publicar un comentario